From 969811602f8c59158d73da36bcfb3732e8965db3 Mon Sep 17 00:00:00 2001 From: Afrocodeur Date: Tue, 2 Sep 2025 18:48:52 +0000 Subject: [PATCH 01/39] upgrade native document to 1.0.32 --- frameworks/keyed/native-document/index.html | 2 +- .../keyed/native-document/package-lock.json | 8 ++-- frameworks/keyed/native-document/package.json | 2 +- .../src/components/RemoveIcon.js | 10 ++-- frameworks/keyed/native-document/src/main.js | 47 ++++++++++--------- .../keyed/native-document/src/service.js | 1 + 6 files changed, 36 insertions(+), 34 deletions(-) diff --git a/frameworks/keyed/native-document/index.html b/frameworks/keyed/native-document/index.html index b227dc57b..47218faa2 100644 --- a/frameworks/keyed/native-document/index.html +++ b/frameworks/keyed/native-document/index.html @@ -5,7 +5,7 @@ -
+
\ No newline at end of file diff --git a/frameworks/keyed/native-document/package-lock.json b/frameworks/keyed/native-document/package-lock.json index 73611f08e..78014606f 100644 --- a/frameworks/keyed/native-document/package-lock.json +++ b/frameworks/keyed/native-document/package-lock.json @@ -8,7 +8,7 @@ "name": "native-document", "version": "1.0.13", "dependencies": { - "native-document": "1.0.26", + "native-document": "1.0.32", "vite": "^7.0.4" } }, @@ -782,9 +782,9 @@ } }, "node_modules/native-document": { - "version": "1.0.26", - "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.26.tgz", - "integrity": "sha512-FUoMN8k9Ekwu+wLKZYwAjMhmNK/QIjE+gFH8hXc2AFbPsRCMJS/TGkF6cGT5DsDSUdj+6K7788KTytiJ1ynYaw==", + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.32.tgz", + "integrity": "sha512-n/mrFR8G/m54EEX4UtyOCi+6N99NHQCtZHtC75EqqqrhEF8bPfRou9IMVwdfdUbm5YiS8GIg/fy2K/n3MuJh3A==", "license": "ISC" }, "node_modules/picocolors": { diff --git a/frameworks/keyed/native-document/package.json b/frameworks/keyed/native-document/package.json index abeefba5e..d278dff11 100644 --- a/frameworks/keyed/native-document/package.json +++ b/frameworks/keyed/native-document/package.json @@ -11,7 +11,7 @@ "dev": "vite" }, "dependencies": { - "native-document": "1.0.26", + "native-document": "1.0.32", "vite": "^7.0.4" } } \ No newline at end of file diff --git a/frameworks/keyed/native-document/src/components/RemoveIcon.js b/frameworks/keyed/native-document/src/components/RemoveIcon.js index e9fd97734..e35ce18c0 100644 --- a/frameworks/keyed/native-document/src/components/RemoveIcon.js +++ b/frameworks/keyed/native-document/src/components/RemoveIcon.js @@ -1,8 +1,6 @@ import { Link, Span } from "native-document/elements"; -import AppService from "../service"; -export default function RemoveIcon(itemId){ - return Link( - Span({ class: 'glyphicon glyphicon-remove', 'aria-hidden': true }) - ).nd.onClick(() => AppService.remove(itemId)); -}; \ No newline at end of file + +export default (function RemoveIcon(attributes) { + return Link(Span(attributes)); +}).cached({ class: 'glyphicon glyphicon-remove', 'aria-hidden': true }); \ No newline at end of file diff --git a/frameworks/keyed/native-document/src/main.js b/frameworks/keyed/native-document/src/main.js index 6add2674a..12c38821d 100644 --- a/frameworks/keyed/native-document/src/main.js +++ b/frameworks/keyed/native-document/src/main.js @@ -1,32 +1,35 @@ import { Tr, Td, ForEachArray, Link, Span, Div, Table, TBody } from "native-document/elements"; -import { Observable } from "native-document"; import Jumbotron from "./components/Jumbotron"; import RemoveIcon from "./components/RemoveIcon"; import AppService from "./service"; -const App = () => { - return Div({ class: 'container' }, [ - Jumbotron(), - Table({ class: 'table table-hover table-striped test-data' }, [ - TBody( - ForEachArray(AppService.data, (item) => { - return Tr( { class: { 'danger': AppService.selected.when(item.id) } }, [ - Td({ class: 'col-md-1' }, item.id), - Td({ class: 'col-md-4' }, - Link(item.label) - ).nd.onClick(() => AppService.select(item.id)), - Td({ class: 'col-md-1' }, RemoveIcon(item.id)), - Td({ class: 'col-md-6'}) - ]); - }, - 'id') - ), - Span({ class: 'preloadicon glyphicon glyphicon-remove', 'aria-hidden': true }) - ]) +const Attributes = { + table: { class: 'table table-hover table-striped test-data' }, + cell_md_1: { class: 'col-md-1' }, + cell_md_4: { class: 'col-md-4' }, +}; + +const emptyCell = Td.cached({ class: 'col-md-6'}); +const TableRowBuilder = (item) => { + return Tr( { class: { 'danger': AppService.selected.when(item.id) } }, [ + Td(Attributes.cell_md_1, item.id), + Td(Attributes.cell_md_4, Link(item.label)).nd.onClick(() => AppService.select(item.id)), + Td(Attributes.cell_md_1, + RemoveIcon(item.id).nd.onClick(() => AppService.remove(item.id)) + ), + emptyCell ]); -} +}; + +const App = Div({ class: 'container' }, [ + Jumbotron(), + Table(Attributes.table, + TBody(ForEachArray(AppService.data, TableRowBuilder, 'id', { isParentUniqueChild: true})) + ), + Span({ class: 'preloadicon glyphicon glyphicon-remove', 'aria-hidden': true }) +]); -document.querySelector('#main').append(App()); \ No newline at end of file +document.getElementById('root').appendChild(App); \ No newline at end of file diff --git a/frameworks/keyed/native-document/src/service.js b/frameworks/keyed/native-document/src/service.js index d643642eb..a2be32913 100644 --- a/frameworks/keyed/native-document/src/service.js +++ b/frameworks/keyed/native-document/src/service.js @@ -8,6 +8,7 @@ const selected = Observable(0); const AppService = { data, selected, + clean: Observable(false), resetSelected() { selected.disconnectAll(); selected.set(0); From 67cd5b690e0e27253a66ad6a5c8d8e066549fde5 Mon Sep 17 00:00:00 2001 From: Afrocodeur Date: Thu, 4 Sep 2025 07:13:50 +0000 Subject: [PATCH 02/39] Introduction of TemplateCloner with nd 1.0.33 --- .../keyed/native-document/package-lock.json | 8 +++--- frameworks/keyed/native-document/package.json | 2 +- frameworks/keyed/native-document/src/main.js | 28 +++++++++++-------- 3 files changed, 22 insertions(+), 16 deletions(-) diff --git a/frameworks/keyed/native-document/package-lock.json b/frameworks/keyed/native-document/package-lock.json index 78014606f..331c2be37 100644 --- a/frameworks/keyed/native-document/package-lock.json +++ b/frameworks/keyed/native-document/package-lock.json @@ -8,7 +8,7 @@ "name": "native-document", "version": "1.0.13", "dependencies": { - "native-document": "1.0.32", + "native-document": "1.0.33", "vite": "^7.0.4" } }, @@ -782,9 +782,9 @@ } }, "node_modules/native-document": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.32.tgz", - "integrity": "sha512-n/mrFR8G/m54EEX4UtyOCi+6N99NHQCtZHtC75EqqqrhEF8bPfRou9IMVwdfdUbm5YiS8GIg/fy2K/n3MuJh3A==", + "version": "1.0.33", + "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.33.tgz", + "integrity": "sha512-rPZp3V6Mi1jk6bVS9Alpp8EVkLrlS15IJToV/MzKmmd1HWKsgzx5XsaZWv2i7Zi6b5WjK1niedYX5u2kKrBHmw==", "license": "ISC" }, "node_modules/picocolors": { diff --git a/frameworks/keyed/native-document/package.json b/frameworks/keyed/native-document/package.json index d278dff11..2c952c663 100644 --- a/frameworks/keyed/native-document/package.json +++ b/frameworks/keyed/native-document/package.json @@ -11,7 +11,7 @@ "dev": "vite" }, "dependencies": { - "native-document": "1.0.32", + "native-document": "1.0.33", "vite": "^7.0.4" } } \ No newline at end of file diff --git a/frameworks/keyed/native-document/src/main.js b/frameworks/keyed/native-document/src/main.js index 12c38821d..9dbd9d97b 100644 --- a/frameworks/keyed/native-document/src/main.js +++ b/frameworks/keyed/native-document/src/main.js @@ -1,4 +1,5 @@ import { Tr, Td, ForEachArray, Link, Span, Div, Table, TBody } from "native-document/elements"; +import { useCache } from 'native-document'; import Jumbotron from "./components/Jumbotron"; import RemoveIcon from "./components/RemoveIcon"; @@ -8,21 +9,26 @@ import AppService from "./service"; const Attributes = { table: { class: 'table table-hover table-striped test-data' }, - cell_md_1: { class: 'col-md-1' }, - cell_md_4: { class: 'col-md-4' }, }; -const emptyCell = Td.cached({ class: 'col-md-6'}); -const TableRowBuilder = (item) => { - return Tr( { class: { 'danger': AppService.selected.when(item.id) } }, [ - Td(Attributes.cell_md_1, item.id), - Td(Attributes.cell_md_4, Link(item.label)).nd.onClick(() => AppService.select(item.id)), - Td(Attributes.cell_md_1, - RemoveIcon(item.id).nd.onClick(() => AppService.remove(item.id)) +const TableRowBuilder = useCache(($binder) => { + + const isSelected = $binder.class((item) => AppService.selected.when(item.id)); + const id = $binder.value((item) => item.id); + const label = $binder.value((item) => item.label); + + const rowClick = $binder.attach((_, item) => AppService.select(item.id)); + const removeClick = $binder.attach((_, item) => AppService.remove(item.id)); + + return Tr( { class: { 'danger': isSelected } }, [ + Td({ class: 'col-md-1' }, id), + Td({ class: 'col-md-4' }, Link(label)).nd.attach('onClick', rowClick), + Td({ class: 'col-md-1' }, + RemoveIcon().nd.attach('onClick', removeClick) ), - emptyCell + Td({ class: 'col-md-6'}) ]); -}; +}); const App = Div({ class: 'container' }, [ Jumbotron(), From cf465185ad5b5fe61cfc03c418b0c6b7750d1160 Mon Sep 17 00:00:00 2001 From: Afrocodeur Date: Thu, 4 Sep 2025 07:46:13 +0000 Subject: [PATCH 03/39] Upgrade to 1.0.34 --- frameworks/keyed/native-document/package-lock.json | 8 ++++---- frameworks/keyed/native-document/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frameworks/keyed/native-document/package-lock.json b/frameworks/keyed/native-document/package-lock.json index 331c2be37..c58aa775e 100644 --- a/frameworks/keyed/native-document/package-lock.json +++ b/frameworks/keyed/native-document/package-lock.json @@ -8,7 +8,7 @@ "name": "native-document", "version": "1.0.13", "dependencies": { - "native-document": "1.0.33", + "native-document": "1.0.34", "vite": "^7.0.4" } }, @@ -782,9 +782,9 @@ } }, "node_modules/native-document": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.33.tgz", - "integrity": "sha512-rPZp3V6Mi1jk6bVS9Alpp8EVkLrlS15IJToV/MzKmmd1HWKsgzx5XsaZWv2i7Zi6b5WjK1niedYX5u2kKrBHmw==", + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/native-document/-/native-document-1.0.34.tgz", + "integrity": "sha512-pYDDhJ+huVs0ZURma29Blm6UGSDU3oHbvfKORqSQDgohVJ4m3fxk/8zESI6QGIIaEYIcvxzRGyaVrIpZske6jg==", "license": "ISC" }, "node_modules/picocolors": { diff --git a/frameworks/keyed/native-document/package.json b/frameworks/keyed/native-document/package.json index 2c952c663..f020d153c 100644 --- a/frameworks/keyed/native-document/package.json +++ b/frameworks/keyed/native-document/package.json @@ -11,7 +11,7 @@ "dev": "vite" }, "dependencies": { - "native-document": "1.0.33", + "native-document": "1.0.34", "vite": "^7.0.4" } } \ No newline at end of file From e0a4beba1b251045cca22f6c7907795c1f3b2a77 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sat, 6 Sep 2025 20:24:02 +0100 Subject: [PATCH 04/39] add ripple --- frameworks/keyed/ripple/index.html | 12 + frameworks/keyed/ripple/package-lock.json | 856 ++++++++++++++++++++++ frameworks/keyed/ripple/package.json | 31 + frameworks/keyed/ripple/rollup.config.js | 24 + frameworks/keyed/ripple/src/Main.ripple | 177 +++++ frameworks/keyed/ripple/src/main.js | 6 + 6 files changed, 1106 insertions(+) create mode 100644 frameworks/keyed/ripple/index.html create mode 100644 frameworks/keyed/ripple/package-lock.json create mode 100644 frameworks/keyed/ripple/package.json create mode 100644 frameworks/keyed/ripple/rollup.config.js create mode 100644 frameworks/keyed/ripple/src/Main.ripple create mode 100644 frameworks/keyed/ripple/src/main.js diff --git a/frameworks/keyed/ripple/index.html b/frameworks/keyed/ripple/index.html new file mode 100644 index 000000000..b03489e44 --- /dev/null +++ b/frameworks/keyed/ripple/index.html @@ -0,0 +1,12 @@ + + + + Ripple + + + +
+
+ + + diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json new file mode 100644 index 000000000..dc1a24a47 --- /dev/null +++ b/frameworks/keyed/ripple/package-lock.json @@ -0,0 +1,856 @@ +{ + "name": "js-framework-benchmark-ripple", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "js-framework-benchmark-ripple", + "version": "1.0.0", + "license": "Apache-2.0", + "devDependencies": { + "@rollup/plugin-node-resolve": "^15.3.0", + "@rollup/plugin-terser": "^0.4.4", + "ripple": "^0.2.24", + "rollup": "^4.50.0", + "rollup-plugin-ripple": "^0.2.24" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.0.tgz", + "integrity": "sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/plugin-terser": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "serialize-javascript": "^6.0.1", + "smob": "^1.0.0", + "terser": "^5.17.4" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.3.tgz", + "integrity": "sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.50.0.tgz", + "integrity": "sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.50.0.tgz", + "integrity": "sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.50.0.tgz", + "integrity": "sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.50.0.tgz", + "integrity": "sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.50.0.tgz", + "integrity": "sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.50.0.tgz", + "integrity": "sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.50.0.tgz", + "integrity": "sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.50.0.tgz", + "integrity": "sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.50.0.tgz", + "integrity": "sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.50.0.tgz", + "integrity": "sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.50.0.tgz", + "integrity": "sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.50.0.tgz", + "integrity": "sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.50.0.tgz", + "integrity": "sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.50.0.tgz", + "integrity": "sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.50.0.tgz", + "integrity": "sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.50.0.tgz", + "integrity": "sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.50.0.tgz", + "integrity": "sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.50.0.tgz", + "integrity": "sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.50.0.tgz", + "integrity": "sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.50.0.tgz", + "integrity": "sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.50.0.tgz", + "integrity": "sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-typescript": { + "version": "1.4.13", + "resolved": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz", + "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": ">=8.9.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-core-module": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz", + "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-reference": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.6" + } + }, + "node_modules/magic-string": { + "version": "0.30.18", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.18.tgz", + "integrity": "sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/muggle-string": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz", + "integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/resolve": { + "version": "1.22.9", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz", + "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ripple": { + "version": "0.2.24", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.24.tgz", + "integrity": "sha512-P+Hb6eO3l/f5vbffp8itL+vryRIbKeYezyzVXqLF24bYr/evXz0cJDXijQ7UDBkJ+7gdyzrRI69vm7KrArvhkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5", + "acorn": "^8.15.0", + "acorn-typescript": "^1.4.13", + "esrap": "^2.1.0", + "is-reference": "^3.0.3", + "magic-string": "^0.30.18", + "muggle-string": "^0.4.1", + "zimmerframe": "^1.1.2" + } + }, + "node_modules/ripple/node_modules/esrap": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz", + "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/rollup": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.50.0.tgz", + "integrity": "sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.50.0", + "@rollup/rollup-android-arm64": "4.50.0", + "@rollup/rollup-darwin-arm64": "4.50.0", + "@rollup/rollup-darwin-x64": "4.50.0", + "@rollup/rollup-freebsd-arm64": "4.50.0", + "@rollup/rollup-freebsd-x64": "4.50.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.50.0", + "@rollup/rollup-linux-arm-musleabihf": "4.50.0", + "@rollup/rollup-linux-arm64-gnu": "4.50.0", + "@rollup/rollup-linux-arm64-musl": "4.50.0", + "@rollup/rollup-linux-loongarch64-gnu": "4.50.0", + "@rollup/rollup-linux-ppc64-gnu": "4.50.0", + "@rollup/rollup-linux-riscv64-gnu": "4.50.0", + "@rollup/rollup-linux-riscv64-musl": "4.50.0", + "@rollup/rollup-linux-s390x-gnu": "4.50.0", + "@rollup/rollup-linux-x64-gnu": "4.50.0", + "@rollup/rollup-linux-x64-musl": "4.50.0", + "@rollup/rollup-openharmony-arm64": "4.50.0", + "@rollup/rollup-win32-arm64-msvc": "4.50.0", + "@rollup/rollup-win32-ia32-msvc": "4.50.0", + "@rollup/rollup-win32-x64-msvc": "4.50.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-ripple": { + "version": "0.2.24", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.24.tgz", + "integrity": "sha512-YoCuzpOVbWYtQxgxVbcBt/Xl0+mCFHIHV0OwcSRl++gHeUeiBiXOEfT0QKq4Tv7EDFHqIWr4d7lZXQjyUwrSIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^4.1.0" + } + }, + "node_modules/rollup-plugin-ripple/node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/rollup-plugin-ripple/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/smob": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", + "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==", + "dev": true, + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/terser": { + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", + "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/zimmerframe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.2.tgz", + "integrity": "sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json new file mode 100644 index 000000000..5b6c724c3 --- /dev/null +++ b/frameworks/keyed/ripple/package.json @@ -0,0 +1,31 @@ +{ + "name": "js-framework-benchmark-ripple", + "version": "1.0.0", + "type": "module", + "description": "Boilerplate for Ripple", + "js-framework-benchmark": { + "frameworkVersionFromPackage": "ripple", + "frameworkHomeURL": "https://ripplejs.com/" + }, + "scripts": { + "dev": "rollup -c -w", + "build-prod": "rollup -c --environment production" + }, + "keywords": [ + "ripple" + ], + "author": "Stefan Krause", + "license": "Apache-2.0", + "homepage": "https://github.com/krausest/js-framework-benchmark", + "repository": { + "type": "git", + "url": "https://github.com/krausest/js-framework-benchmark.git" + }, + "devDependencies": { + "@rollup/plugin-node-resolve": "^15.3.0", + "@rollup/plugin-terser": "^0.4.4", + "ripple": "^0.2.24", + "rollup": "^4.50.0", + "rollup-plugin-ripple": "^0.2.24" + } +} diff --git a/frameworks/keyed/ripple/rollup.config.js b/frameworks/keyed/ripple/rollup.config.js new file mode 100644 index 000000000..e03d5abd3 --- /dev/null +++ b/frameworks/keyed/ripple/rollup.config.js @@ -0,0 +1,24 @@ +import ripple from 'rollup-plugin-ripple'; +import resolve from '@rollup/plugin-node-resolve'; +import terser from '@rollup/plugin-terser'; + +const plugins = [ + resolve({ browser: true }), + ripple({ + emitCss: false, + }), +]; + +if (process.env.production) { + plugins.push(terser()); +} + +export default { + input: 'src/main.js', + output: { + file: 'dist/main.js', + format: 'iife', + name: 'main' + }, + plugins +}; diff --git a/frameworks/keyed/ripple/src/Main.ripple b/frameworks/keyed/ripple/src/Main.ripple new file mode 100644 index 000000000..895a0cf60 --- /dev/null +++ b/frameworks/keyed/ripple/src/Main.ripple @@ -0,0 +1,177 @@ +const adjectives = [ + 'pretty', + 'large', + 'big', + 'small', + 'tall', + 'short', + 'long', + 'handsome', + 'plain', + 'quaint', + 'clean', + 'elegant', + 'easy', + 'angry', + 'crazy', + 'helpful', + 'mushy', + 'odd', + 'unsightly', + 'adorable', + 'important', + 'inexpensive', + 'cheap', + 'expensive', + 'fancy' +]; +const colours = [ + 'red', + 'yellow', + 'blue', + 'green', + 'pink', + 'brown', + 'purple', + 'brown', + 'white', + 'black', + 'orange' +]; +const nouns = [ + 'table', + 'chair', + 'house', + 'bbq', + 'desk', + 'car', + 'pony', + 'cookie', + 'sandwich', + 'burger', + 'pizza', + 'mouse', + 'keyboard' +]; + +function _random(max) { + return Math.round(Math.random() * 1000) % max; +} + +export default component App() { + let rowId = 1; + let $items = []; + let $selected; + + const add = () => ($items = [...$items, ...buildData(1000)]); + const clear = () => { + $items = []; + } + + const partialUpdate = () => { + for (let i = 0; i < $items.length; i += 10) { + const row = $items[i]; + row.$label = row.$label + ' !!!'; + } + }; + + const remove = (row) => { + const clone = $items.slice(); + clone.splice(clone.indexOf(row), 1); + $items = clone; + } + + const run = () => { + $items = buildData(1000); + }; + + const runLots = () => { + $items = buildData(10000); + }; + + const swapRows = () => { + if ($items.length > 998) { + const clone = $items.slice(); + const tmp = clone[1]; + clone[1] = clone[998]; + clone[998] = tmp; + $items = clone; + } + }; + + function buildData(count = 1000) { + const data = new Array(count); + for (let i = 0; i < count; i++) { + const label = `${adjectives[_random(adjectives.length)]} ${colours[_random(colours.length)]} ${nouns[_random(nouns.length)]}`; + + data[i] = { + id: rowId++, + $label: label, + } + } + return data; + } + +
+
+
+
+

{'Ripple'}

+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+ + + for (const row of $items) { + + + + + + } + +
{row.id} + { $selected = row.id; }}>{row.$label} + + remove(row)}> + + +
+ +
+} diff --git a/frameworks/keyed/ripple/src/main.js b/frameworks/keyed/ripple/src/main.js new file mode 100644 index 000000000..1e3286db1 --- /dev/null +++ b/frameworks/keyed/ripple/src/main.js @@ -0,0 +1,6 @@ +import { mount } from "ripple"; +import Main from "./Main.ripple"; + +mount(Main, { + target: document.querySelector("#main"), +}); From fae29723be44f4aca8554c9f0eaaf576a14d8091 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Tue, 9 Sep 2025 01:41:02 +0100 Subject: [PATCH 05/39] update version --- frameworks/keyed/ripple/package-lock.json | 16 ++++++++-------- frameworks/keyed/ripple/package.json | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index dc1a24a47..ba374722f 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.24", + "ripple": "^0.2.31", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.24" + "rollup-plugin-ripple": "^0.2.31" } }, "node_modules/@jridgewell/gen-mapping": { @@ -650,9 +650,9 @@ } }, "node_modules/ripple": { - "version": "0.2.24", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.24.tgz", - "integrity": "sha512-P+Hb6eO3l/f5vbffp8itL+vryRIbKeYezyzVXqLF24bYr/evXz0cJDXijQ7UDBkJ+7gdyzrRI69vm7KrArvhkw==", + "version": "0.2.31", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.31.tgz", + "integrity": "sha512-cfYY5KGnUeRWJqfGs8kRvB5Fv3urFutN3Ljv9ve2DSv3gE7XbVugahnnUKihucG4sh0zqNcWN8OEg/fWCwxNFA==", "dev": true, "license": "MIT", "dependencies": { @@ -718,9 +718,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.24", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.24.tgz", - "integrity": "sha512-YoCuzpOVbWYtQxgxVbcBt/Xl0+mCFHIHV0OwcSRl++gHeUeiBiXOEfT0QKq4Tv7EDFHqIWr4d7lZXQjyUwrSIA==", + "version": "0.2.31", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.31.tgz", + "integrity": "sha512-NMkVcrzEgmL39G10jJ/Pc7uRBvua3mQngVUdd1Wovd8hmcukWV7EY6osvTkg3BTv9Wi4tfhNrbMsHGz0tQpVog==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index 5b6c724c3..ccf1bf47e 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.24", + "ripple": "^0.2.31", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.24" + "rollup-plugin-ripple": "^0.2.31" } } From d05b04c4bc8334f04338718034bfef285d660e96 Mon Sep 17 00:00:00 2001 From: syduki Date: Tue, 9 Sep 2025 13:36:49 +0300 Subject: [PATCH 06/39] `karyon` update --- frameworks/keyed/karyon/package-lock.json | 234 ++++++++++++---------- frameworks/keyed/karyon/package.json | 4 +- 2 files changed, 128 insertions(+), 110 deletions(-) diff --git a/frameworks/keyed/karyon/package-lock.json b/frameworks/keyed/karyon/package-lock.json index 3650011a6..353735e9f 100644 --- a/frameworks/keyed/karyon/package-lock.json +++ b/frameworks/keyed/karyon/package-lock.json @@ -8,16 +8,16 @@ "name": "js-framework-benchmark-karyon", "version": "1.0.0", "dependencies": { - "karyon": "^4.0.0" + "karyon": "latest" }, "devDependencies": { - "esbuild": "^0.24.0" + "esbuild": "latest" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", - "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz", + "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==", "cpu": [ "ppc64" ], @@ -32,9 +32,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", - "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz", + "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==", "cpu": [ "arm" ], @@ -49,9 +49,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", - "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz", + "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==", "cpu": [ "arm64" ], @@ -66,9 +66,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", - "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz", + "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==", "cpu": [ "x64" ], @@ -83,9 +83,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", - "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz", + "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==", "cpu": [ "arm64" ], @@ -100,9 +100,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", - "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz", + "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==", "cpu": [ "x64" ], @@ -117,9 +117,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", - "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz", + "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==", "cpu": [ "arm64" ], @@ -134,9 +134,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", - "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz", + "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==", "cpu": [ "x64" ], @@ -151,9 +151,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", - "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz", + "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==", "cpu": [ "arm" ], @@ -168,9 +168,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", - "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz", + "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==", "cpu": [ "arm64" ], @@ -185,9 +185,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", - "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz", + "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==", "cpu": [ "ia32" ], @@ -202,9 +202,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", - "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz", + "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==", "cpu": [ "loong64" ], @@ -219,9 +219,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", - "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz", + "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==", "cpu": [ "mips64el" ], @@ -236,9 +236,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", - "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz", + "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==", "cpu": [ "ppc64" ], @@ -253,9 +253,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", - "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz", + "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==", "cpu": [ "riscv64" ], @@ -270,9 +270,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", - "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz", + "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==", "cpu": [ "s390x" ], @@ -287,9 +287,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", - "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz", + "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==", "cpu": [ "x64" ], @@ -304,9 +304,9 @@ } }, "node_modules/@esbuild/netbsd-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", - "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz", + "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==", "cpu": [ "arm64" ], @@ -321,9 +321,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", - "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz", + "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==", "cpu": [ "x64" ], @@ -338,9 +338,9 @@ } }, "node_modules/@esbuild/openbsd-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", - "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz", + "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==", "cpu": [ "arm64" ], @@ -355,9 +355,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", - "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz", + "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==", "cpu": [ "x64" ], @@ -371,10 +371,27 @@ "node": ">=18" } }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz", + "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, "node_modules/@esbuild/sunos-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", - "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz", + "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==", "cpu": [ "x64" ], @@ -389,9 +406,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", - "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz", + "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==", "cpu": [ "arm64" ], @@ -406,9 +423,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", - "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz", + "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==", "cpu": [ "ia32" ], @@ -423,9 +440,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", - "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz", + "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==", "cpu": [ "x64" ], @@ -440,9 +457,9 @@ } }, "node_modules/esbuild": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", - "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", + "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -453,37 +470,38 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.24.2", - "@esbuild/android-arm": "0.24.2", - "@esbuild/android-arm64": "0.24.2", - "@esbuild/android-x64": "0.24.2", - "@esbuild/darwin-arm64": "0.24.2", - "@esbuild/darwin-x64": "0.24.2", - "@esbuild/freebsd-arm64": "0.24.2", - "@esbuild/freebsd-x64": "0.24.2", - "@esbuild/linux-arm": "0.24.2", - "@esbuild/linux-arm64": "0.24.2", - "@esbuild/linux-ia32": "0.24.2", - "@esbuild/linux-loong64": "0.24.2", - "@esbuild/linux-mips64el": "0.24.2", - "@esbuild/linux-ppc64": "0.24.2", - "@esbuild/linux-riscv64": "0.24.2", - "@esbuild/linux-s390x": "0.24.2", - "@esbuild/linux-x64": "0.24.2", - "@esbuild/netbsd-arm64": "0.24.2", - "@esbuild/netbsd-x64": "0.24.2", - "@esbuild/openbsd-arm64": "0.24.2", - "@esbuild/openbsd-x64": "0.24.2", - "@esbuild/sunos-x64": "0.24.2", - "@esbuild/win32-arm64": "0.24.2", - "@esbuild/win32-ia32": "0.24.2", - "@esbuild/win32-x64": "0.24.2" + "@esbuild/aix-ppc64": "0.25.9", + "@esbuild/android-arm": "0.25.9", + "@esbuild/android-arm64": "0.25.9", + "@esbuild/android-x64": "0.25.9", + "@esbuild/darwin-arm64": "0.25.9", + "@esbuild/darwin-x64": "0.25.9", + "@esbuild/freebsd-arm64": "0.25.9", + "@esbuild/freebsd-x64": "0.25.9", + "@esbuild/linux-arm": "0.25.9", + "@esbuild/linux-arm64": "0.25.9", + "@esbuild/linux-ia32": "0.25.9", + "@esbuild/linux-loong64": "0.25.9", + "@esbuild/linux-mips64el": "0.25.9", + "@esbuild/linux-ppc64": "0.25.9", + "@esbuild/linux-riscv64": "0.25.9", + "@esbuild/linux-s390x": "0.25.9", + "@esbuild/linux-x64": "0.25.9", + "@esbuild/netbsd-arm64": "0.25.9", + "@esbuild/netbsd-x64": "0.25.9", + "@esbuild/openbsd-arm64": "0.25.9", + "@esbuild/openbsd-x64": "0.25.9", + "@esbuild/openharmony-arm64": "0.25.9", + "@esbuild/sunos-x64": "0.25.9", + "@esbuild/win32-arm64": "0.25.9", + "@esbuild/win32-ia32": "0.25.9", + "@esbuild/win32-x64": "0.25.9" } }, "node_modules/karyon": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/karyon/-/karyon-4.0.0.tgz", - "integrity": "sha512-94m4SvN5gmxlWpZrbkmPwuCmfql9oKWCSfUSfWqwWZv9e5IHWUUZnPfN1H0h5zQB7kiSMKy1z2HP6/86z40MJQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/karyon/-/karyon-4.0.1.tgz", + "integrity": "sha512-oHNULXrv9IoMGSY4R6CypE6CkOX1ycXHGcxcS+cqmP5cBjpU6K5gZFW7N7ve/KLqkGdofT0fx4671g1pC3I2bw==", "license": "MIT" } } diff --git a/frameworks/keyed/karyon/package.json b/frameworks/keyed/karyon/package.json index f43fed468..51aac39b2 100644 --- a/frameworks/keyed/karyon/package.json +++ b/frameworks/keyed/karyon/package.json @@ -7,10 +7,10 @@ "issues": [801] }, "dependencies": { - "karyon": "^4.0.0" + "karyon": "latest" }, "devDependencies": { - "esbuild": "^0.24.0" + "esbuild": "latest" }, "scripts": { "dev":"esbuild src/app.js --outfile=dist/app.js --bundle --watch", From 932797f5574b344834dc2968fed16383853777db Mon Sep 17 00:00:00 2001 From: Michael Scherbakow Date: Tue, 9 Sep 2025 22:33:40 +0200 Subject: [PATCH 07/39] update non-keyed/vode - fix version read-out - memo rows --- frameworks/non-keyed/vode/main.mjs | 2 +- frameworks/non-keyed/vode/package-lock.json | 12 ++++++------ frameworks/non-keyed/vode/package.json | 6 +++--- frameworks/non-keyed/vode/src/main.ts | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/frameworks/non-keyed/vode/main.mjs b/frameworks/non-keyed/vode/main.mjs index ec87aaefc..6d4862e4d 100644 --- a/frameworks/non-keyed/vode/main.mjs +++ b/frameworks/non-keyed/vode/main.mjs @@ -1 +1 @@ -(()=>{function V(e,o,r,...s){if(!e)throw new Error("container must be a valid HTMLElement");if(!o||typeof o!="object")throw new Error("initialState must be an object");if(typeof r!="function")throw new Error("dom must be a function that returns a vode");let t={};t.stats={lastRenderTime:0,renderCount:0,liveEffectCount:0,patchCount:0,renderPatchCount:0},Object.defineProperty(o,"patch",{enumerable:!1,configurable:!0,writable:!1,value:async c=>{if(!(!c||typeof c!="function"&&typeof c!="object"))if(t.stats.patchCount++,c?.next){let T=c;t.stats.liveEffectCount++;try{let i=await T.next();for(;i.done===!1;){t.stats.liveEffectCount++;try{t.patch(i.value),i=await T.next()}finally{t.stats.liveEffectCount--}}t.patch(i.value)}finally{t.stats.liveEffectCount--}}else if(c.then){t.stats.liveEffectCount++;try{let T=await c;t.patch(T)}finally{t.stats.liveEffectCount--}}else Array.isArray(c)?typeof c[0]=="function"?c.length>1?t.patch(c[0](t.state,...c.slice(1))):t.patch(c[0](t.state)):t.stats.patchCount--:typeof c=="function"?t.patch(c(t.state)):(t.stats.renderPatchCount++,t.q=m(t.q||{},c,!1),t.isRendering||t.render())}}),Object.defineProperty(t,"render",{enumerable:!1,configurable:!0,writable:!1,value:()=>requestAnimationFrame(()=>{if(t.isRendering||!t.q)return;t.isRendering=!0;let c=Date.now();try{t.state=m(t.state,t.q,!0),t.q=null,t.vode=C(t.state,t.patch,e,0,t.vode,r(t.state))}finally{t.isRendering=!1,t.stats.renderCount++,t.stats.lastRenderTime=Date.now()-c,t.q&&t.render()}})}),t.patch=o.patch,t.state=o,t.q=null;let n=e;n._vode=t;let a=r(o);t.vode=a,t.vode=C(o,t.patch,e,0,void 0,a);for(let c of s)t.patch(c);return t.patch}function y(e){if(Array.isArray(e)&&e.length>1&&e[1]&&!Array.isArray(e[1])&&typeof e[1]=="object"&&e[1].nodeType!==Node.TEXT_NODE)return e[1]}function O(e){let o=Y(e);return o>0?e.slice(o):null}function Y(e){return y(e)?2:1}function m(e,o,r){if(!o)return e;for(let s in o){let t=o[s];if(t&&typeof t=="object"){let n=e[s];n?Array.isArray(t)?e[s]=[...t]:t instanceof Date&&n!==t?e[s]=new Date(t):Array.isArray(n)?e[s]=m({},t,r):typeof n=="object"?m(e[s],t,r):e[s]=m({},t,r):Array.isArray(t)?e[s]=[...t]:t instanceof Date?e[s]=new Date(t):e[s]=m({},t,r)}else t===void 0&&r?delete e[s]:e[s]=t}return e}function C(e,o,r,s,t,n,a){n=R(e,n,t);let c=!n||typeof n=="number"||typeof n=="boolean";if(n===t||!t&&c)return t;let T=t?.nodeType===Node.TEXT_NODE,i=T?t:t?.node;if(c){i?.onUnmount&&o(i.onUnmount(i)),i?.remove();return}let A=!c&&W(n),b=!c&&w(n),N=!!n&&typeof n!="string"&&!!(n?.node||n?.nodeType===Node.TEXT_NODE);if(!A&&!b&&!N&&!t)throw new Error("Invalid vode: "+typeof n+" "+JSON.stringify(n));if(N&&A?n=n.wholeText:N&&b&&(n=[...n]),T&&A)return i.nodeValue!==n&&(i.nodeValue=n),t;if(A&&(!i||!T)){let l=document.createTextNode(n);return i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[s]?r.insertBefore(l,r.childNodes[s]):r.appendChild(l),l}if(b&&(!i||T||t[0]!==n[0])){a=a||n[0]==="svg";let l=a?document.createElementNS("http://www.w3.org/2000/svg",n[0]):document.createElement(n[0]);n.node=l;let E=n;1 in E&&(E[1]=R(e,E[1],void 0));let S=y(n);D(o,l,void 0,S,a),i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[s]?r.insertBefore(l,r.childNodes[s]):r.appendChild(l);let u=O(n);if(u)for(let d=0;d0&&typeof e[0]=="string"}function W(e){return typeof e=="string"||e?.nodeType===Node.TEXT_NODE}function R(e,o,r){if(typeof o!="function")return o;let s=o?.__memo,t=r?.__memo;if(Array.isArray(s)&&Array.isArray(t)&&s.length===t.length){let a=!0;for(let c=0;ce([c,T])}else if(Array.isArray(t)){let c=t,T=t[0];c.length>1?a=()=>e([T,...c.slice(1)]):a=i=>e([T,i])}else typeof t=="object"&&(a=()=>e(t));o[r]=a}else o[r]=null;else t!=null&&t!==!1?o.setAttribute(r,t):o.removeAttribute(r);return t}function L(e){return typeof e=="string"?e:Array.isArray(e)?e.map(L).join(" "):typeof e=="object"?Object.keys(e).filter(o=>e[o]).join(" "):""}var v="a";var g="button";var f="div";var H="h1";var I="span";var U="table",j="tbody",h="td";var B="tr";var J=1,_=["pretty","large","big","small","tall","short","long","handsome","plain","quaint","clean","elegant","easy","angry","crazy","helpful","mushy","odd","unsightly","adorable","important","inexpensive","cheap","expensive","fancy"],K=["red","yellow","blue","green","pink","brown","purple","brown","white","black","orange"],X=["table","chair","house","bbq","desk","car","pony","cookie","sandwich","burger","pizza","mouse","keyboard"];function k(e){return Math.round(Math.random()*1e3)%e}function M(e){let o=new Array(e);for(let r=0;r[f,{class:"container",id:"main"},[f,{class:"jumbotron"},[f,{class:"row"},[f,{class:"col-md-6"},[H,`[V,{},d,e] ${q.dependencies["@ryupold/vode"]} (non-keyed)`]],[f,{class:"col-md-6"},[f,{class:"row"},[f,{class:"col-sm-6 smallpad"},[g,{id:"run",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e3),selected:null})},"Create 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[g,{id:"runlots",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e4),selected:null})},"Create 10,000 rows"]],[f,{class:"col-sm-6 smallpad"},[g,{id:"add",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.concat(M(1e3))})},"Append 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[g,{id:"update",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.map((o,r)=>r%10===0?{id:o.id,label:o.label+" !!!"}:o)})},"Update every 10th row"]],[f,{class:"col-sm-6 smallpad"},[g,{id:"clear",type:"button",class:"btn btn-primary btn-block",onclick:{data:[],selected:null}},"Clear"]],[f,{class:"col-sm-6 smallpad"},[g,{id:"swaprows",type:"button",class:"btn btn-primary btn-block",onclick:()=>{if(e.data.length>998){let o=e.data[998];e.data[998]=e.data[1],e.data[1]=o}return{}}},"Swap Rows"]]]]]],[U,{class:"table table-hover table-striped test-data"},[j,...e.data.map(o=>[B,{class:{danger:e.selected===o.id}},[h,{class:"col-md-1"},o.id],[h,{class:"col-md-4"},[v,{onclick:{selected:o.id}},o.label]],[h,{class:"col-md-1"},[v,{onclick:()=>({data:e.data.filter(r=>r.id!==o.id),selected:e.selected===o.id?null:e.selected})},[I,{class:"glyphicon glyphicon-remove","aria-hidden":"true"}]]],[h,{class:"col-md-6"}]])]],[I,{class:"preloadicon glyphicon glyphicon-remove","aria-hidden":"true"}]]);})(); +(()=>{function V(e,o,r,...a){if(!e)throw new Error("container must be a valid HTMLElement");if(!o||typeof o!="object")throw new Error("given state must be an object");if(typeof r!="function")throw new Error("dom must be a function that returns a vode");let t={};t.stats={lastRenderTime:0,renderCount:0,liveEffectCount:0,patchCount:0,renderPatchCount:0},Object.defineProperty(o,"patch",{enumerable:!1,configurable:!0,writable:!1,value:async c=>{if(!(!c||typeof c!="function"&&typeof c!="object"))if(t.stats.patchCount++,c?.next){let d=c;t.stats.liveEffectCount++;try{let i=await d.next();for(;i.done===!1;){t.stats.liveEffectCount++;try{t.patch(i.value),i=await d.next()}finally{t.stats.liveEffectCount--}}t.patch(i.value)}finally{t.stats.liveEffectCount--}}else if(c.then){t.stats.liveEffectCount++;try{let d=await c;t.patch(d)}finally{t.stats.liveEffectCount--}}else Array.isArray(c)?typeof c[0]=="function"?c.length>1?t.patch(c[0](t.state,...c.slice(1))):t.patch(c[0](t.state)):t.stats.patchCount--:typeof c=="function"?t.patch(c(t.state)):(t.stats.renderPatchCount++,t.q=m(t.q||{},c,!1),t.isRendering||t.render())}}),Object.defineProperty(t,"render",{enumerable:!1,configurable:!0,writable:!1,value:()=>requestAnimationFrame(()=>{if(t.isRendering||!t.q)return;t.isRendering=!0;let c=Date.now();try{t.state=m(t.state,t.q,!0),t.q=null,t.vode=C(t.state,t.patch,e,0,t.vode,r(t.state))}finally{t.isRendering=!1,t.stats.renderCount++,t.stats.lastRenderTime=Date.now()-c,t.q&&t.render()}})}),t.patch=o.patch,t.state=o,t.q=null;let n=e;n._vode=t;let s=r(o);t.vode=s,t.vode=C(o,t.patch,e,0,void 0,s);for(let c of a)t.patch(c);return t.patch}function G(e,o){return o.__memo=e,o}function y(e){if(Array.isArray(e)&&e.length>1&&e[1]&&!Array.isArray(e[1])&&typeof e[1]=="object"&&e[1].nodeType!==Node.TEXT_NODE)return e[1]}function O(e){let o=w(e);return o>0?e.slice(o):null}function w(e){return y(e)?2:1}function m(e,o,r){if(!o)return e;for(let a in o){let t=o[a];if(t&&typeof t=="object"){let n=e[a];n?Array.isArray(t)?e[a]=[...t]:t instanceof Date&&n!==t?e[a]=new Date(t):Array.isArray(n)?e[a]=m({},t,r):typeof n=="object"?m(e[a],t,r):e[a]=m({},t,r):Array.isArray(t)?e[a]=[...t]:t instanceof Date?e[a]=new Date(t):e[a]=m({},t,r)}else t===void 0&&r?delete e[a]:e[a]=t}return e}function C(e,o,r,a,t,n,s){n=R(e,n,t);let c=!n||typeof n=="number"||typeof n=="boolean";if(n===t||!t&&c)return t;let d=t?.nodeType===Node.TEXT_NODE,i=d?t:t?.node;if(c){i?.onUnmount&&o(i.onUnmount(i)),i?.remove();return}let A=!c&&J(n),b=!c&&W(n),N=!!n&&typeof n!="string"&&!!(n?.node||n?.nodeType===Node.TEXT_NODE);if(!A&&!b&&!N&&!t)throw new Error("Invalid vode: "+typeof n+" "+JSON.stringify(n));if(N&&A?n=n.wholeText:N&&b&&(n=[...n]),d&&A)return i.nodeValue!==n&&(i.nodeValue=n),t;if(A&&(!i||!d)){let l=document.createTextNode(n);return i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[a]?r.insertBefore(l,r.childNodes[a]):r.appendChild(l),l}if(b&&(!i||d||t[0]!==n[0])){s=s||n[0]==="svg";let l=s?document.createElementNS("http://www.w3.org/2000/svg",n[0]):document.createElement(n[0]);n.node=l;let E=n;1 in E&&(E[1]=R(e,E[1],void 0));let g=y(n);D(o,l,void 0,g,s),i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[a]?r.insertBefore(l,r.childNodes[a]):r.appendChild(l);let u=O(n);if(u)for(let T=0;T0&&typeof e[0]=="string"}function J(e){return typeof e=="string"||e?.nodeType===Node.TEXT_NODE}function R(e,o,r){if(typeof o!="function")return o;let a=o?.__memo,t=r?.__memo;if(Array.isArray(a)&&Array.isArray(t)&&a.length===t.length){let s=!0;for(let c=0;ce([c,d])}else if(Array.isArray(t)){let c=t,d=t[0];c.length>1?s=()=>e([d,...c.slice(1)]):s=i=>e([d,i])}else typeof t=="object"&&(s=()=>e(t));o[r]=s}else o[r]=null;else t!=null&&t!==!1?o.setAttribute(r,t):o.removeAttribute(r);return t}function L(e){return typeof e=="string"?e:Array.isArray(e)?e.map(L).join(" "):typeof e=="object"?Object.keys(e).filter(o=>e[o]).join(" "):""}var v="a";var S="button";var f="div";var U="h1";var I="span";var j="table",B="tbody",h="td";var _="tr";var z=1,K=["pretty","large","big","small","tall","short","long","handsome","plain","quaint","clean","elegant","easy","angry","crazy","helpful","mushy","odd","unsightly","adorable","important","inexpensive","cheap","expensive","fancy"],X=["red","yellow","blue","green","pink","brown","purple","brown","white","black","orange"],q=["table","chair","house","bbq","desk","car","pony","cookie","sandwich","burger","pizza","mouse","keyboard"];function k(e){return Math.round(Math.random()*1e3)%e}function M(e){let o=new Array(e);for(let r=0;r[f,{class:"container",id:"main"},[f,{class:"jumbotron"},[f,{class:"row"},[f,{class:"col-md-6"},[U,`[V,{},d,e] ${$.dependencies["@ryupold/vode"]} (non-keyed)`]],[f,{class:"col-md-6"},[f,{class:"row"},[f,{class:"col-sm-6 smallpad"},[S,{id:"run",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e3),selected:null})},"Create 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"runlots",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e4),selected:null})},"Create 10,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"add",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.concat(M(1e3))})},"Append 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"update",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.map((o,r)=>r%10===0?{id:o.id,label:o.label+" !!!"}:o)})},"Update every 10th row"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"clear",type:"button",class:"btn btn-primary btn-block",onclick:{data:[],selected:null}},"Clear"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"swaprows",type:"button",class:"btn btn-primary btn-block",onclick:()=>{if(e.data.length>998){let o=e.data[998];e.data[998]=e.data[1],e.data[1]=o}return{}}},"Swap Rows"]]]]]],[j,{class:"table table-hover table-striped test-data"},[B,...e.data.map(o=>G([o.id,o.label,e.selected===o.id],r=>[_,{class:{danger:r.selected===o.id}},[h,{class:"col-md-1"},o.id],[h,{class:"col-md-4"},[v,{onclick:{selected:o.id}},o.label]],[h,{class:"col-md-1"},[v,{onclick:()=>({data:r.data.filter(a=>a.id!==o.id),selected:r.selected===o.id?null:r.selected})},[I,{class:"glyphicon glyphicon-remove","aria-hidden":"true"}]]],[h,{class:"col-md-6"}]]))]],[I,{class:"preloadicon glyphicon glyphicon-remove","aria-hidden":"true"}]]);})(); diff --git a/frameworks/non-keyed/vode/package-lock.json b/frameworks/non-keyed/vode/package-lock.json index fa101ef4f..141c20a04 100644 --- a/frameworks/non-keyed/vode/package-lock.json +++ b/frameworks/non-keyed/vode/package-lock.json @@ -1,15 +1,15 @@ { "name": "js-framework-benchmark-vode", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "js-framework-benchmark-vode", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { - "@ryupold/vode": "1.0.1" + "@ryupold/vode": "1.0.2" }, "devDependencies": { "esbuild": "0.25.9" @@ -458,9 +458,9 @@ } }, "node_modules/@ryupold/vode": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@ryupold/vode/-/vode-1.0.1.tgz", - "integrity": "sha512-yCy2FheWvK6LUDaRwQVp8WGQ+BEwunPnROgoDD8cx5fTuotuEjC/vfT8eVTM5R7ueqCFvgcjRZ4rjCmHQvSiXw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@ryupold/vode/-/vode-1.0.2.tgz", + "integrity": "sha512-2P005pPnfHNSsMh+W1Wp6DLRDFBVJE1Iaco3duMdF5Ncu52BC41equlULk+zGkhgrjxVPzP8xqotQA6rpmsE0w==", "license": "MIT" }, "node_modules/esbuild": { diff --git a/frameworks/non-keyed/vode/package.json b/frameworks/non-keyed/vode/package.json index 838aae9cf..5453fcc78 100644 --- a/frameworks/non-keyed/vode/package.json +++ b/frameworks/non-keyed/vode/package.json @@ -1,14 +1,14 @@ { "name": "js-framework-benchmark-vode", - "version": "1.0.0", + "version": "1.0.1", "description": "vode framework benchmark", "main": "main.mjs", "js-framework-benchmark": { - "frameworkVersionFromPackage": "vode", + "frameworkVersionFromPackage": "@ryupold/vode", "frameworkHomeURL": "https://github.com/ryupold/vode" }, "dependencies": { - "@ryupold/vode": "1.0.1" + "@ryupold/vode": "1.0.2" }, "devDependencies": { "esbuild": "0.25.9" diff --git a/frameworks/non-keyed/vode/src/main.ts b/frameworks/non-keyed/vode/src/main.ts index 5494fe617..50f5c9227 100644 --- a/frameworks/non-keyed/vode/src/main.ts +++ b/frameworks/non-keyed/vode/src/main.ts @@ -1,4 +1,4 @@ -import { app, createState, BUTTON, DIV, H1, TABLE, TBODY, TR, Vode, TD, A, SPAN } from "@ryupold/vode"; +import { app, createState, memo, A, BUTTON, DIV, H1, SPAN, TABLE, TBODY, TR, TD } from "@ryupold/vode"; import { buildData, DataEntry } from "./data"; import packageJson from "../package.json"; @@ -9,7 +9,7 @@ const s = createState({ type State = typeof s; -app(document.body, s, (s: State) => >[DIV, { class: "container", id: 'main' }, +app(document.body, s, (s: State) => [DIV, { class: "container", id: 'main' }, [DIV, { class: "jumbotron" }, [DIV, { class: "row" }, [DIV, { class: "col-md-6" }, @@ -89,7 +89,7 @@ app(document.body, s, (s: State) => >[DIV, { class: "container", id: [TABLE, { class: 'table table-hover table-striped test-data' }, [TBODY, - ...s.data.map(d => >[TR, + ...s.data.map(d => memo([d.id, d.label, s.selected === d.id], (s: State) => [TR, { class: { danger: s.selected === d.id } }, [TD, { class: "col-md-1" }, d.id], [TD, { class: "col-md-4" }, @@ -106,7 +106,7 @@ app(document.body, s, (s: State) => >[DIV, { class: "container", id: ], ], [TD, { class: "col-md-6" }] - ]) + ])) ], ], From 1be4636cefd38cb1956ca63768d4892fe13020d9 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Sat, 13 Sep 2025 21:43:28 +0200 Subject: [PATCH 08/39] update ripple, native-document, karyon, vode --- webdriver-ts-results/src/results.ts | 223 ++++++++++++++-------------- webdriver-ts/results.json | 2 +- 2 files changed, 113 insertions(+), 112 deletions(-) diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index b44728b36..2bc1da4aa 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -46,8 +46,8 @@ export const results: RawResult[]=[ {"f":42,"b":[{"b":0,"v":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"b":1,"v":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"b":2,"v":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"b":3,"v":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"b":4,"v":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"b":5,"v":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"b":6,"v":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"b":7,"v":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"b":8,"v":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[27.01]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[78.9]}}]}, {"f":43,"b":[{"b":0,"v":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"b":1,"v":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"b":2,"v":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"b":3,"v":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"b":4,"v":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"b":5,"v":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"b":6,"v":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"b":7,"v":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"b":8,"v":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.3]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, {"f":44,"b":[{"b":0,"v":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"b":1,"v":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"b":2,"v":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"b":3,"v":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"b":4,"v":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"b":5,"v":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"b":6,"v":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"b":7,"v":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"b":8,"v":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[62.3]}}]}, -{"f":45,"b":[{"b":0,"v":{"total":[23.3,23.6,23.6,24.2,24,23.2,23.4,23.6,23.7,23.4,23.4,23.7,23.5,23.4,23.5],"script":[1.8,1.9,1.9,1.8,2.1,1.9,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.9,1.9],"paint":[21.1,21.3,21.3,22,21.6,21,21.2,21.4,21.4,21.1,21.2,21.4,21.3,21.2,21.2]}},{"b":1,"v":{"total":[26.3,26.5,26.7,27.1,26.9,27.1,26.5,26.7,26.6,26.9,26.7,26.6,27,26.7,26.3],"script":[4,4.1,4.1,4.1,4.1,4,4,4,4,4,4,4,4.2,4.2,4],"paint":[21.9,22,22.2,22.5,22.4,22.6,22.1,22.3,22.1,22.5,22.3,22.2,22.5,22.1,21.9]}},{"b":2,"v":{"total":[11.3,10.3,10.5,10.4,10.9,11.3,11,11,11,11,10.3,11,12.2,10.9,10.9],"script":[1.4,0.9,1.1,0.9,1.3,1.7,1.6,1.2,1.3,1.1,1.2,1.4,1.5,1.1,1.3],"paint":[8.7,7.9,8.8,8.5,8.4,7.8,8.5,8.3,7.4,8.5,7.5,8.9,9.8,7.5,9]}},{"b":3,"v":{"total":[3,2.4,2.8,3.1,2.7,2.6,2.2,2.9,2.9,2.5,2.9,3,3.2,2.6,3,2.5,2.5,2.7,3.1,3.3,3.6,2.8,3.1,3,3],"script":[0.2,0.8,0.7,0.6,0.8,0.2,0.2,0.6,0.6,0.2,0.8,1.2,1,0.7,0.2,0.8,1,0.6,0.2,1,1.5,0.8,0.9,0.2,0.2],"paint":[2.4,0.9,2,2.2,1.3,1.9,1.9,1.8,1.6,1.3,2,1.7,1.5,1.7,2.6,1.6,1.4,1.4,2.8,2,1.4,1.4,1.5,2.6,1.5]}},{"b":4,"v":{"total":[13.5,13.1,13.8,13.2,13.6,14,13.4,13.4,13.9,13.8,13.4,13.7,13.4,13.6,13.6],"script":[1.2,0.9,0.9,0.8,0.6,1.2,1.2,0.9,1.2,1,0.7,0.7,0.6,1.2,0.7],"paint":[11.1,11,11.6,10.9,11.3,11.8,10.6,11.4,11.7,12.2,11.7,12,11.1,10.3,11.9]}},{"b":5,"v":{"total":[10.9,10.4,10.7,10.9,10.3,10.3,10.4,10.6,10.7,10.4,11.1,10.7,10.7,10.7,10.2],"script":[0.5,0.5,0.4,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5],"paint":[9.7,9.3,9.9,9.8,9.2,9.3,9.4,9.6,9.6,9,9.6,9.5,9.7,9.4,8.8]}},{"b":6,"v":{"total":[259.2,258.9,259.8,261.1,259.5,260.7,260.3,257.3,263.2,260.2,260.4,258.6,259,259.6,262.2],"script":[27,26.6,27.1,26.9,26.7,27.2,27,26.6,26.9,26.8,27.7,26.6,27.2,26.8,27.5],"paint":[225.1,224.9,224.8,226.7,225.3,226.2,225.8,223.2,229.1,226,225.3,224.6,223.6,225.5,227.3]}},{"b":7,"v":{"total":[28.2,28.5,28.5,28.1,28.3,28.4,28.3,28.1,27.8,28.7,28.3,28.5,29.1,28.2,28],"script":[2.1,2,2.1,2.1,2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2],"paint":[25.3,25.7,25.6,25.4,25.5,25.5,25.4,25.3,24.9,25.8,25.5,25.6,26.1,25.4,25.3]}},{"b":8,"v":{"total":[10.4,10.4,10.1,10.4,10.4,10.6,10.2,10.1,9.8,10.3,10.7,11,10.4,10.3,10.6],"script":[8.7,8.2,8.6,8.8,8.2,8.5,8,8.4,8,7.9,8.8,9.1,8.5,8.5,8.4],"paint":[1.1,1.4,0.6,0.7,1.2,1.4,1.5,1.5,0.2,1.8,0.3,0.7,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.31]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[34.5]}}]}, -{"f":46,"b":[{"b":0,"v":{"total":[31.1,32.3,31.8,32.2,31.8,31.3,31.5,31.8,31.9,32.1,31.7,31.7,32.4,32.4,31.8],"script":[9.6,10.3,9.8,10.5,10.1,9.7,9.7,10.3,10.2,10.1,9.6,10.1,10.4,10.5,9.7],"paint":[21,21.4,21.5,21.2,21.2,21.1,21.3,21,21.2,21.5,21.5,21,21.5,21.3,21.7]}},{"b":1,"v":{"total":[39.5,39.5,39.4,39.1,39.4,39.1,39.4,39.1,39.6,39.1,39.6,39.3,39.8,39.9,39.3],"script":[15.7,15.8,15.8,15.4,15.7,15.6,15.8,15.4,15.8,15.5,16,15.4,16,15.9,15.4],"paint":[23.2,23.1,23,23.1,23.2,23,23.1,23.2,23.3,23,23,23.4,23.3,23.5,23.3]}},{"b":2,"v":{"total":[11.3,10.7,11.5,10.3,11.2,10.9,11.3,11,13.9,11.3,11.2,10.9,13.3,11.4,10.3],"script":[0.2,0.8,1.4,0.8,1.3,1.1,0.9,0.8,1.3,0.9,0.6,0.6,1.5,1,0.6],"paint":[9.6,8.8,9.1,8.4,8.7,8.8,9,8.5,11.9,9.8,9.9,9.1,11.3,9.1,8.7]}},{"b":3,"v":{"total":[3.9,2.1,2.4,2.2,2.4,2.6,2.4,1.9,2.5,2.7,2.3,2.7,2.8,2.5,2.7,2.7,2,2.6,2.2,2.4,1.8,3.4,2.2,2.1,2.7],"script":[1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,1,0.1,0.1,0.4,0.1,0.1,0.4,0.3,0.1,0.3,0.9,0.1,0.1,0.1],"paint":[1.6,1.9,1.3,1.1,1.5,2.4,2.2,1.7,1.6,2.5,1.4,1.5,2.6,2.3,1.4,2.2,1.1,2.1,1.7,2.2,1.4,1.8,2.1,1.9,1.6]}},{"b":4,"v":{"total":[16.1,15,15.4,15.3,16.1,16.3,14.9,14.5,16.1,15.9,15.9,15.2,16.1,15.6,14.7],"script":[2.4,2.4,1.9,1.6,2.4,2.6,2,1.5,2,2.4,2.7,1.7,2.5,2.4,2.1],"paint":[12.5,11.4,12,12.7,12.4,12.8,10.5,11.1,12.3,12.4,12.2,12.2,12.1,11.6,11.3]}},{"b":5,"v":{"total":[12.9,11.6,11.6,11.9,11.8,11.5,12.1,11.6,11.6,11.6,11.6,11.8,11.5,11.5,11.3],"script":[1.3,1.3,1.5,1.4,1.5,1.2,1.3,1.2,1.3,1.4,1.3,1.4,1.2,1.2,1.3],"paint":[10.7,9.5,9.4,9.5,9.6,9.2,10.5,9.6,9.6,9.6,9.4,9.4,9.4,9.4,9.5]}},{"b":6,"v":{"total":[334.6,337.4,335.4,334.3,337.2,336.1,337,337.6,338.2,336.2,340.5,334.4,341.2,336.2,337.6],"script":[109.5,107,110.1,109.1,110.6,110.6,110.9,110.9,112.7,111.2,112.4,110.5,113,110.1,111.9],"paint":[218.2,223.1,218.4,218.2,219.6,218.6,218.9,219.4,218.7,218,221,217.2,220.5,219,218.8]}},{"b":7,"v":{"total":[42.2,42.8,41.5,41.8,42.4,42.2,42.2,42.9,42.3,43.6,42.6,42.5,41.9,42.7,42.7],"script":[14.8,15.4,14.6,14.6,15.2,15.2,14.9,15.6,15.1,15.7,15,15.2,14.6,15.5,15.1],"paint":[26.5,26.5,26,26.2,26.3,26.1,26.4,26.3,26.4,27,26.6,26.3,26.4,26.3,26.7]}},{"b":8,"v":{"total":[19.7,20.9,20.3,20.3,20.8,20.4,19.6,19.5,19.4,20.6,22.1,21.2,22.1,19.9,23.4],"script":[18.2,18.9,18.9,18.5,19.2,18.7,17.7,18.1,17.9,18.7,20.4,18.9,20,18.1,21.2],"paint":[0.7,1.4,0.2,1.6,0.7,0.7,1,1.3,0.7,0.9,0.7,0.7,0.9,1,1.9]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[7.9]}},{"b":16,"v":{"DEFAULT":[48.8]}}]}, +{"f":45,"b":[{"b":0,"v":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"b":1,"v":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"b":2,"v":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"b":3,"v":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"b":5,"v":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"b":6,"v":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"b":7,"v":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"b":8,"v":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.29]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[41.4]}}]}, +{"f":46,"b":[{"b":0,"v":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"b":1,"v":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"b":2,"v":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"b":3,"v":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"b":4,"v":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"b":5,"v":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"b":6,"v":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"b":7,"v":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"b":8,"v":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, {"f":47,"b":[{"b":0,"v":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"b":1,"v":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"b":2,"v":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"b":3,"v":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"b":4,"v":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"b":5,"v":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"b":6,"v":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"b":7,"v":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"b":8,"v":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[12.64]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[75.28]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[80.6]}}]}, {"f":48,"b":[{"b":0,"v":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"b":1,"v":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"b":2,"v":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"b":3,"v":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"b":4,"v":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"b":5,"v":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"b":6,"v":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"b":7,"v":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"b":8,"v":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[87.4]}}]}, {"f":49,"b":[{"b":0,"v":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"b":1,"v":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"b":2,"v":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"b":3,"v":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"b":4,"v":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"b":5,"v":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"b":6,"v":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"b":7,"v":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"b":8,"v":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.22]}},{"b":11,"v":{"DEFAULT":[15.33]}},{"b":12,"v":{"DEFAULT":[4.09]}},{"b":13,"v":{"DEFAULT":[114.92]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[629.5]}}]}, @@ -70,7 +70,7 @@ export const results: RawResult[]=[ {"f":66,"b":[{"b":0,"v":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"b":1,"v":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"b":2,"v":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"b":3,"v":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"b":4,"v":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"b":5,"v":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"b":6,"v":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"b":7,"v":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"b":8,"v":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[74.2]}}]}, {"f":67,"b":[{"b":0,"v":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"b":1,"v":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"b":2,"v":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"b":3,"v":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"b":4,"v":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"b":5,"v":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"b":6,"v":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"b":7,"v":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"b":8,"v":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"b":9,"v":{"DEFAULT":[2.85]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[290.1]}}]}, {"f":68,"b":[{"b":0,"v":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"b":1,"v":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"b":2,"v":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"b":3,"v":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"b":4,"v":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"b":5,"v":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"b":6,"v":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"b":7,"v":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"b":8,"v":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[4.01]}},{"b":11,"v":{"DEFAULT":[4.03]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.84]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.7]}}]}, -{"f":69,"b":[{"b":0,"v":{"total":[37.9,37.5,34.8,35,38.1,36,33.8,29.4,29,35.2,36.8,34.7,35.5,35.4,36.6],"script":[6,6.9,7.2,6.8,6.3,6.5,6.9,6.9,6.5,6.9,6.4,7,6.8,6.7,6.7],"paint":[21.1,21.4,21.8,21.7,21.2,21.5,21.6,21.9,22.1,21.8,22.1,22.2,21.9,22.3,21.6]}},{"b":1,"v":{"total":[33.1,32.8,33.9,33.4,33.5,33.7,33.7,33.3,33.9,32.9,33.7,34.6,33.9,32.5,33.7],"script":[8.4,8,8.6,9,8.4,8.9,8.7,8.5,9.1,8.4,9.1,9.2,8.7,9.1,8.7],"paint":[22.8,22.9,23.3,22.7,22.8,22.9,22.9,22.7,23.2,22.6,22.8,23.5,23.3,22.5,23.2]}},{"b":2,"v":{"total":[10.4,10.6,10.4,10.5,11.2,10.2,10.7,10.8,11.1,10.3,10.1,11,11.2,10.2,9.9],"script":[0.7,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.1,0.1,0.1,0.9,0.1,0.1,0.1],"paint":[8.7,9.1,8.8,9.5,9.1,8.7,9.4,8.1,9.4,9.1,9.1,8.4,9.5,9.3,9.2]}},{"b":3,"v":{"total":[1.9,2.8,2.1,1.9,1.5,2.3,2.6,2.5,2.3,1.8,1.8,2.7,2.2,1.8,1.9,2.4,2.7,2.7,2.4,2.7,2.3,2.6,2.5,2.7,2.1],"script":[0,0,0,0,0,0,0.5,0.4,0.2,0,0.5,0,0,0.2,0,0.8,0,0,0.2,0,0,0,0,0,0],"paint":[1.1,2.6,1.6,1.8,1.3,2.2,1.6,1.9,1.6,1.5,0.7,2.5,1.6,1.1,1,1.1,2.4,1.5,1.7,2.6,1.3,2.5,1.7,1.6,1.3]}},{"b":4,"v":{"total":[13.5,13.3,13.3,12.7,12,13,13.2,13.6,13,12.9,13.3,13.4,13.7,13.8,13],"script":[0.1,0.1,0.8,0.8,0.1,0.1,0.7,0.1,0.3,0.1,0.1,0.5,0.8,0.1,0.1],"paint":[11.9,12.3,11,11,10.7,11.7,12.2,12.3,11.2,11.4,12.3,11.1,11.6,12.8,11.7]}},{"b":5,"v":{"total":[10.8,10,10.9,10.3,10.4,10.3,10.5,10.4,10.3,10.3,10.2,10.1,10.2,10.2,10.5],"script":[0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.9,8.9,9.3,9.6,9.2,9.6,9.7,9.9,9.4,9.5,9.6,9.5,9.4,9.5,9.8]}},{"b":6,"v":{"total":[293.3,290.9,686.2,670.7,716,293.5,292.7,292.2,731.5,295.1,292.8,679.9,717.8,292.5,294.7],"script":[63.2,67,69,68.6,69.9,68.3,69.6,68.9,69.4,69.3,70.1,70.6,68.5,68.7,70.5],"paint":[226.5,220.3,233,226.7,233.1,221.8,219.7,219.9,239.7,221.7,219.3,227,236.8,220.3,220.2]}},{"b":7,"v":{"total":[79.3,80.3,78.9,63.7,63.2,62.2,78.4,79.2,81,81,80.6,80.1,62.4,62.2,63.4],"script":[13.6,14,13.9,15,14.6,14.8,13.8,14.3,14.4,14.5,14.5,14.5,14.3,14.8,15.2],"paint":[47,47.2,47.4,48.1,48,46.9,47.2,47.5,47.1,47.3,47.2,47,47.6,46.9,47.6]}},{"b":8,"v":{"total":[10.5,12.1,9.4,10.8,10.8,11.6,11,10.9,9.9,10.6,10.5,11,10.2,12.1,11],"script":[8.4,10.1,7.4,8.8,8.4,9.5,9.3,8.7,7.6,8.7,8.4,8.4,8.4,10.2,8.9],"paint":[0.9,1,0.3,0.7,1,1.4,0.2,1.1,2.1,0.9,1,1.7,1,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[18.07]}},{"b":14,"v":{"DEFAULT":[24.1]}},{"b":15,"v":{"DEFAULT":[7.6]}},{"b":16,"v":{"DEFAULT":[54.3]}}]}, +{"f":69,"b":[{"b":0,"v":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"b":1,"v":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"b":2,"v":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"b":3,"v":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"b":4,"v":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"b":5,"v":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"b":6,"v":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"b":7,"v":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"b":8,"v":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[57.1]}}]}, {"f":70,"b":[{"b":0,"v":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"b":1,"v":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"b":2,"v":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"b":3,"v":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"b":4,"v":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"b":5,"v":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"b":6,"v":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"b":7,"v":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"b":8,"v":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"b":9,"v":{"DEFAULT":[3.38]}},{"b":10,"v":{"DEFAULT":[4.91]}},{"b":11,"v":{"DEFAULT":[5.01]}},{"b":12,"v":{"DEFAULT":[3.66]}},{"b":13,"v":{"DEFAULT":[16.28]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[107.8]}}]}, {"f":71,"b":[{"b":0,"v":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"b":1,"v":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"b":3,"v":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"b":4,"v":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"b":5,"v":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"b":6,"v":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"b":7,"v":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"b":8,"v":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.33]}},{"b":13,"v":{"DEFAULT":[23.83]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, {"f":72,"b":[{"b":0,"v":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"b":1,"v":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"b":2,"v":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"b":3,"v":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"b":4,"v":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"b":5,"v":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"b":6,"v":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"b":7,"v":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"b":8,"v":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[45.5]}}]}, @@ -104,112 +104,113 @@ export const results: RawResult[]=[ {"f":100,"b":[{"b":0,"v":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"b":1,"v":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"b":2,"v":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"b":3,"v":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"b":4,"v":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"b":5,"v":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"b":6,"v":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"b":7,"v":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"b":8,"v":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.52]}},{"b":11,"v":{"DEFAULT":[3.63]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[29.01]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[34.8]}}]}, {"f":101,"b":[{"b":0,"v":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"b":1,"v":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"b":2,"v":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"b":3,"v":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"b":4,"v":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"b":5,"v":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"b":6,"v":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"b":7,"v":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"b":8,"v":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, {"f":102,"b":[{"b":0,"v":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"b":1,"v":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"b":2,"v":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"b":3,"v":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"b":4,"v":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"b":5,"v":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"b":6,"v":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"b":7,"v":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"b":8,"v":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[51.1]}}]}, -{"f":103,"b":[{"b":0,"v":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"b":1,"v":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"b":2,"v":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"b":3,"v":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"b":4,"v":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"b":5,"v":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"b":6,"v":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"b":7,"v":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"b":8,"v":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[31.41]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, -{"f":104,"b":[{"b":0,"v":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"b":1,"v":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"b":2,"v":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"b":3,"v":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"b":4,"v":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"b":5,"v":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"b":6,"v":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"b":7,"v":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"b":8,"v":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.38]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.09]}},{"b":13,"v":{"DEFAULT":[25.84]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[88.4]}}]}, -{"f":105,"b":[{"b":0,"v":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"b":1,"v":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"b":2,"v":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"b":3,"v":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"b":4,"v":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"b":5,"v":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"b":6,"v":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"b":7,"v":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"b":8,"v":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[1.14]}},{"b":13,"v":{"DEFAULT":[39.63]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93]}}]}, -{"f":106,"b":[{"b":0,"v":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"b":1,"v":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"b":2,"v":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"b":3,"v":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"b":4,"v":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"b":5,"v":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"b":6,"v":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"b":7,"v":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"b":8,"v":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"b":9,"v":{"DEFAULT":[0.98]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[98.2]}}]}, -{"f":107,"b":[{"b":0,"v":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"b":1,"v":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"b":2,"v":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"b":3,"v":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"b":4,"v":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"b":5,"v":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"b":6,"v":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"b":7,"v":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"b":8,"v":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.51]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.35]}},{"b":13,"v":{"DEFAULT":[68.56]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[383]}}]}, -{"f":108,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"b":1,"v":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"b":2,"v":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"b":3,"v":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"b":4,"v":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"b":5,"v":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"b":6,"v":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"b":7,"v":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"b":8,"v":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.82]}},{"b":12,"v":{"DEFAULT":[2.53]}},{"b":13,"v":{"DEFAULT":[22.33]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, -{"f":109,"b":[{"b":0,"v":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"b":1,"v":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"b":2,"v":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"b":3,"v":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"b":4,"v":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"b":5,"v":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"b":6,"v":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"b":7,"v":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"b":8,"v":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.75]}},{"b":11,"v":{"DEFAULT":[2.76]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.46]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":110,"b":[{"b":0,"v":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"b":1,"v":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"b":2,"v":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"b":3,"v":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"b":4,"v":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"b":5,"v":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"b":6,"v":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"b":7,"v":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"b":8,"v":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.52]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.98]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, -{"f":111,"b":[{"b":0,"v":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"b":2,"v":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"b":3,"v":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"b":4,"v":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"b":5,"v":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"b":6,"v":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"b":7,"v":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"b":8,"v":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[39.6]}}]}, -{"f":112,"b":[{"b":0,"v":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"b":1,"v":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"b":2,"v":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"b":3,"v":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"b":4,"v":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"b":6,"v":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"b":7,"v":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"b":8,"v":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":113,"b":[{"b":0,"v":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"b":1,"v":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"b":2,"v":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"b":3,"v":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"b":4,"v":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"b":5,"v":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"b":6,"v":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"b":7,"v":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"b":8,"v":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[1.83]}},{"b":11,"v":{"DEFAULT":[1.84]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[12.63]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, -{"f":114,"b":[{"b":0,"v":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"b":1,"v":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"b":2,"v":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"b":3,"v":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"b":4,"v":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"b":5,"v":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"b":6,"v":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"b":7,"v":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.96]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129]}}]}, -{"f":115,"b":[{"b":0,"v":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"b":1,"v":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"b":2,"v":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"b":3,"v":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"b":5,"v":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"b":6,"v":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"b":7,"v":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"b":8,"v":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.58]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[3.08]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[112.1]}}]}, -{"f":116,"b":[{"b":0,"v":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"b":1,"v":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"b":2,"v":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"b":3,"v":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"b":4,"v":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"b":6,"v":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"b":7,"v":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"b":8,"v":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.76]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":117,"b":[{"b":0,"v":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"b":1,"v":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"b":2,"v":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"b":3,"v":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"b":4,"v":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"b":5,"v":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"b":6,"v":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"b":7,"v":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"b":8,"v":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.34]}},{"b":13,"v":{"DEFAULT":[16.49]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[62.2]}}]}, -{"f":118,"b":[{"b":0,"v":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"b":1,"v":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"b":3,"v":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"b":4,"v":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"b":5,"v":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"b":6,"v":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"b":7,"v":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"b":8,"v":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.64]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[29.53]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, -{"f":119,"b":[{"b":0,"v":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"b":1,"v":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"b":2,"v":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"b":3,"v":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"b":4,"v":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"b":5,"v":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"b":6,"v":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"b":7,"v":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"b":8,"v":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.35]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, -{"f":120,"b":[{"b":0,"v":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"b":1,"v":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"b":2,"v":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"b":3,"v":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"b":4,"v":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"b":5,"v":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"b":6,"v":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"b":7,"v":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"b":8,"v":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.5]}}]}, -{"f":121,"b":[{"b":0,"v":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"b":1,"v":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"b":2,"v":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"b":3,"v":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"b":4,"v":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"b":5,"v":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"b":6,"v":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"b":7,"v":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"b":8,"v":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[4.87]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.59]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[203]}}]}, -{"f":122,"b":[{"b":0,"v":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"b":1,"v":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"b":2,"v":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"b":3,"v":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"b":4,"v":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"b":5,"v":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"b":6,"v":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"b":7,"v":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"b":8,"v":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[17.54]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[175.8]}}]}, -{"f":123,"b":[{"b":0,"v":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"b":1,"v":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"b":2,"v":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"b":3,"v":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"b":5,"v":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"b":6,"v":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"b":7,"v":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"b":8,"v":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.19]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":124,"b":[{"b":0,"v":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"b":1,"v":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"b":2,"v":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"b":3,"v":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"b":4,"v":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"b":5,"v":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"b":6,"v":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"b":7,"v":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"b":8,"v":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.79]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, -{"f":125,"b":[{"b":0,"v":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"b":1,"v":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"b":2,"v":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"b":3,"v":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"b":4,"v":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"b":5,"v":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"b":6,"v":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"b":7,"v":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"b":8,"v":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[21.66]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[62.4]}}]}, -{"f":126,"b":[{"b":0,"v":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"b":2,"v":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"b":3,"v":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"b":4,"v":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"b":5,"v":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"b":6,"v":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"b":7,"v":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"b":8,"v":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.16]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[44.5]}}]}, -{"f":127,"b":[{"b":0,"v":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"b":1,"v":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"b":2,"v":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"b":3,"v":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"b":4,"v":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"b":5,"v":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"b":6,"v":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"b":7,"v":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"b":8,"v":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.18]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.76]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, -{"f":128,"b":[{"b":0,"v":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"b":1,"v":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"b":2,"v":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"b":3,"v":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"b":4,"v":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"b":5,"v":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"b":6,"v":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"b":7,"v":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"b":8,"v":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.07]}},{"b":11,"v":{"DEFAULT":[6.74]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.86]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[164.4]}}]}, -{"f":129,"b":[{"b":0,"v":{"total":[23.2,23,22.9,23.1,23.2,22.8,22.6,22.5,23.2,22.9,23,22.8,23,22.7,22.9],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.3,21.1,21.4,21.4,21,20.9,20.7,21.4,21.2,21.2,21.1,21.3,20.9,21.2]}},{"b":1,"v":{"total":[25.7,25.6,25.4,26,25.9,25.9,25.7,26.2,25.7,25.4,25.9,25.8,25.6,26.1,25.7],"script":[3.3,3.2,3.3,3.4,3.4,3.3,3.4,3.5,3.4,3.2,3.2,3.5,3.4,3.3,3.4],"paint":[22,22,21.7,22.2,22.1,22.2,21.8,22.3,21.9,21.7,22.2,21.9,21.9,22.4,21.9]}},{"b":2,"v":{"total":[9.8,8.9,10.5,10.2,10.2,10.3,10.3,11,10.8,10.5,9.6,10.5,10.9,10.1,9.9],"script":[0.1,0.1,0.7,0.5,0.6,0.4,0.1,0.1,0.8,0.6,0.4,0.1,0.8,0.6,0.1],"paint":[8.7,7.6,8.5,8.8,7.9,8.1,9.9,9.8,9,8.6,8.2,9.4,8.8,8.1,8.8]}},{"b":3,"v":{"total":[2.4,2.6,2.6,2.7,2.1,2.7,2.4,2.4,2.9,2.7,1.8,2.5,2.7,2.2,3,2.2,2.4,2.1,3.2,2.1,3.1,2.5,3.1,2.5,2.4],"script":[0.8,0.1,0.5,0.1,0.1,0.1,0.5,0.7,1,0.8,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,1,0.6,1.1,0.1,0.9,0.1,0.1],"paint":[1.1,1.9,1.1,2.4,1.5,2.4,1.1,1.6,1.8,1.8,1.6,1.4,2,2,2.2,1.2,1.2,1.9,2,1.3,1.9,1.6,2.1,1.8,1.5]}},{"b":4,"v":{"total":[12,12.2,12.5,12.4,11.6,12.5,12.9,12.5,12.5,12.3,12.5,12.3,12.8,11.7,12.3],"script":[0.1,0,0,0.2,0.1,0.4,0.1,0.1,0,0.1,0.1,0,0.1,0,0],"paint":[11.3,10.9,10.9,11,11,11.1,11.8,10.9,11.3,10.6,11,10.4,11.8,9.9,10.8]}},{"b":5,"v":{"total":[10.5,10.4,10.6,10.3,9.9,10.2,10.2,10.5,10.4,10.4,10.1,10.1,10.3,10.2,10.1],"script":[0.5,0.1,0.3,0.4,0.1,0.3,0.1,0.3,0.3,0.5,0.3,0.3,0.3,0.1,0.3],"paint":[9.5,9.8,9.5,9.3,9.4,9.2,9.6,9.6,9.4,9.5,9.1,9.4,9.5,9.5,9.4]}},{"b":6,"v":{"total":[239.1,239.6,238.2,237.2,236.8,239.5,239,237.7,237.6,236.6,238.3,238.8,237.7,240.4,239.1],"script":[15,15.3,15.3,15.3,15.3,15.2,15.1,15.2,15.1,14.9,15.1,15.2,15.1,15.2,15.1],"paint":[216.6,216.7,215.7,214.4,214.2,217.1,216.5,215.2,215.2,214.3,215.9,216.2,215.2,218,216.6]}},{"b":7,"v":{"total":[27,26.9,26.4,26.6,26.7,26.6,26.6,27.1,27,27.1,26.7,26.9,26.8,26.9,27.1],"script":[1.4,1.4,1.4,1.3,1.4,1.3,1.3,1.4,1.4,1.5,1.4,1.3,1.4,1.5,1.3],"paint":[24.9,24.7,24.3,24.5,24.6,24.5,24.5,24.9,24.9,24.9,24.6,24.8,24.6,24.7,25]}},{"b":8,"v":{"total":[9.6,10.6,9,9,9.6,9.4,9.2,9.4,9.2,8.9,9,9.5,9.6,8.7,9.3],"script":[7.5,8.5,6.9,6.8,8,7.3,7.6,7.8,7.9,7,7.3,7.4,7.7,7.2,7.7],"paint":[1.9,1.1,2,1.3,0.6,1.5,0.8,0.6,1.1,1.7,0.2,1.9,0.6,0.2,0.6]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, -{"f":130,"b":[{"b":0,"v":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"b":1,"v":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"b":2,"v":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"b":3,"v":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"b":4,"v":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"b":5,"v":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"b":6,"v":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"b":7,"v":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"b":8,"v":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.48]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.57]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":131,"b":[{"b":0,"v":{"total":[22.8,23.2,22.7,23.1,23.2,23.3,23,23,23.2,22.6,22.8,22.8,23,22.8,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.4,1.3],"paint":[21.1,21.5,21,21.3,21.5,21.6,21.2,21.1,21.4,20.9,21.1,21.1,21.3,21.1,21]}},{"b":1,"v":{"total":[26.2,25.7,25.6,25.8,25.9,25.7,25.7,25.9,26,25.8,25.8,25.6,25.8,26,25.7],"script":[3.4,3.4,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.2,3.3,3.2,3.3,3.4,3.4],"paint":[22.3,21.9,22,22.1,22,21.8,22.1,22,22.3,22.1,22,22,22.1,22.2,21.9]}},{"b":2,"v":{"total":[10.4,9.1,10.2,10.8,10,9.7,10.7,9.7,10.4,10.1,9.4,10.4,10,9.2,9.5],"script":[0.6,0.1,1,0.9,0.1,0.4,0.1,0.4,0.1,0.1,0.8,0.5,0.1,0.1,0.1],"paint":[8.4,7.7,7.7,8.8,8.9,8.3,8.5,7.1,9.3,8.8,7.5,8.8,8.3,8.1,8]}},{"b":3,"v":{"total":[2.7,2.5,1.9,2.1,2.3,2.1,2.4,2.2,2.3,2.3,2.2,2.7,2.3,2.5,1.8,2,2.5,1.8,2.6,2.5,1.4,2.4,2.6,1.8,2.1],"script":[0.6,0.6,0,0.7,0,0,0,0,0.3,0.4,0,0.9,0,0,0,0.1,0,0,0.7,0,0,0.5,0,0,0],"paint":[1.4,1.4,1.1,1.4,1.4,1.5,1.6,0.9,1.9,1.7,1.1,1.6,1.9,2.1,1.1,1.8,1.7,1,1.7,1.4,1.3,1.4,1.7,1.2,1.6]}},{"b":4,"v":{"total":[12.6,12.7,12.7,12.4,13.2,13.3,12.3,12.5,13.1,13,13.3,12.9,12.2,12.8,12.5],"script":[1,0.1,0.1,0.1,0.8,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.5],"paint":[10.5,11.5,11.5,11.4,10.9,10.2,10.3,11.6,12,12,11.8,11.2,10.9,11.8,11.1]}},{"b":5,"v":{"total":[10.3,10.3,10.1,9.7,10.2,9.9,10.1,10.1,10.2,10,10.6,9.8,10.2,10.1,10.2],"script":[0.2,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0,0.3,0.1],"paint":[9.3,9.6,9.4,9.1,9.3,9.2,9.4,9.6,9.3,9.2,9.7,8.8,9.6,9.2,9.5]}},{"b":6,"v":{"total":[236.8,235.2,236,236.5,237.5,236.2,237.4,237.2,236.4,235.6,236,237.1,235.8,239.5,238],"script":[13.6,13.7,13.8,13.9,14,13.5,14,13.6,13.8,13.6,13.8,13.9,13.6,13.9,13.8],"paint":[215.7,214.2,214.8,215.3,216.2,215.1,216,216.3,215.1,214.7,214.9,215.2,214.8,218.3,216.3]}},{"b":7,"v":{"total":[26.7,26.6,26.9,26.5,27,26.6,26.7,26.7,26.5,26.7,26.2,27.2,26.8,27.4,26.6],"script":[1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.2,1.2,1.3,1.2,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.9,24.5,25,24.6,24.7,24.7,24.5,24.7,24.2,25.2,24.8,25.4,24.6]}},{"b":8,"v":{"total":[9.5,9.4,9.1,8.8,8.6,8.8,10,9.9,9.5,9.2,10,8.7,8.8,9.9,9],"script":[7.3,7,7.3,7.3,6.5,7.3,8.5,7.6,7.4,6.9,7.6,7,7.2,7.8,7],"paint":[2,1.4,1.3,0.7,1.2,0.2,0.2,1.7,0.8,1.2,1.3,1.1,1.1,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.76]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.11]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, -{"f":132,"b":[{"b":0,"v":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"b":1,"v":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"b":2,"v":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"b":3,"v":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"b":4,"v":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"b":5,"v":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"b":6,"v":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"b":7,"v":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.36]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, -{"f":133,"b":[{"b":0,"v":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"b":1,"v":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"b":2,"v":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"b":3,"v":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"b":4,"v":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"b":5,"v":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"b":6,"v":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"b":7,"v":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"b":8,"v":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.08]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[36.7]}}]}, -{"f":134,"b":[{"b":0,"v":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"b":1,"v":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"b":2,"v":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"b":3,"v":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"b":4,"v":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"b":5,"v":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"b":6,"v":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"b":7,"v":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"b":8,"v":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.41]}},{"b":11,"v":{"DEFAULT":[2.42]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.46]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, -{"f":135,"b":[{"b":0,"v":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"b":1,"v":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"b":2,"v":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"b":3,"v":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"b":4,"v":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"b":5,"v":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"b":6,"v":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"b":7,"v":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"b":8,"v":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.43]}},{"b":12,"v":{"DEFAULT":[0.93]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[70.5]}}]}, -{"f":136,"b":[{"b":0,"v":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"b":1,"v":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"b":2,"v":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"b":3,"v":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"b":4,"v":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"b":5,"v":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"b":6,"v":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"b":7,"v":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"b":8,"v":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.86]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[28.65]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[86.6]}}]}, -{"f":137,"b":[{"b":0,"v":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"b":1,"v":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"b":2,"v":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"b":3,"v":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"b":4,"v":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"b":5,"v":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"b":6,"v":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"b":7,"v":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"b":8,"v":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.29]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, -{"f":138,"b":[{"b":0,"v":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"b":1,"v":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"b":2,"v":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"b":3,"v":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"b":4,"v":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"b":5,"v":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"b":6,"v":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"b":7,"v":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"b":8,"v":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.13]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[22.26]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[67.3]}}]}, -{"f":139,"b":[{"b":0,"v":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"b":1,"v":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"b":2,"v":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"b":3,"v":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"b":4,"v":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"b":5,"v":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"b":6,"v":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"b":7,"v":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"b":8,"v":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.21]}},{"b":11,"v":{"DEFAULT":[4.31]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[31.72]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[89.6]}}]}, -{"f":140,"b":[{"b":0,"v":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"b":1,"v":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"b":2,"v":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"b":3,"v":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"b":4,"v":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"b":5,"v":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"b":6,"v":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"b":7,"v":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"b":8,"v":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.04]}},{"b":11,"v":{"DEFAULT":[3.05]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[21.61]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[71.8]}}]}, -{"f":141,"b":[{"b":0,"v":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"b":1,"v":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"b":2,"v":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"b":3,"v":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"b":4,"v":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"b":5,"v":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"b":6,"v":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"b":7,"v":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"b":8,"v":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.16]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.33]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, -{"f":142,"b":[{"b":0,"v":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"b":2,"v":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"b":3,"v":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"b":4,"v":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"b":5,"v":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"b":6,"v":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"b":7,"v":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"b":8,"v":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.93]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, -{"f":143,"b":[{"b":0,"v":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"b":1,"v":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"b":2,"v":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"b":3,"v":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"b":4,"v":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"b":5,"v":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"b":6,"v":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"b":7,"v":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"b":8,"v":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.79]}},{"b":10,"v":{"DEFAULT":[6.45]}},{"b":11,"v":{"DEFAULT":[6.52]}},{"b":12,"v":{"DEFAULT":[4.93]}},{"b":13,"v":{"DEFAULT":[47.07]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[254.1]}}]}, -{"f":144,"b":[{"b":0,"v":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"b":1,"v":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"b":2,"v":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"b":3,"v":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"b":4,"v":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"b":5,"v":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"b":6,"v":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"b":7,"v":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"b":8,"v":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[6.57]}},{"b":11,"v":{"DEFAULT":[6.82]}},{"b":12,"v":{"DEFAULT":[5.12]}},{"b":13,"v":{"DEFAULT":[48.29]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[263]}}]}, -{"f":145,"b":[{"b":0,"v":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"b":1,"v":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"b":2,"v":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"b":3,"v":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"b":4,"v":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"b":5,"v":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"b":6,"v":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"b":7,"v":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"b":8,"v":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[30.7]}}]}, -{"f":146,"b":[{"b":0,"v":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"b":1,"v":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"b":2,"v":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"b":3,"v":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"b":4,"v":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"b":5,"v":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"b":6,"v":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"b":7,"v":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"b":8,"v":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.31]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.47]}},{"b":13,"v":{"DEFAULT":[25.88]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, -{"f":147,"b":[{"b":0,"v":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"b":1,"v":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"b":2,"v":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"b":3,"v":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"b":4,"v":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"b":5,"v":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"b":6,"v":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"b":7,"v":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"b":8,"v":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[5.38]}},{"b":11,"v":{"DEFAULT":[5.41]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[46.22]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, -{"f":148,"b":[{"b":0,"v":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"b":1,"v":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"b":2,"v":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"b":3,"v":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"b":4,"v":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"b":5,"v":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"b":6,"v":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"b":7,"v":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[17.91]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, -{"f":149,"b":[{"b":0,"v":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"b":1,"v":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"b":2,"v":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"b":3,"v":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"b":4,"v":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"b":5,"v":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"b":6,"v":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"b":7,"v":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"b":8,"v":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[9.84]}},{"b":11,"v":{"DEFAULT":[15.59]}},{"b":12,"v":{"DEFAULT":[44.78]}},{"b":13,"v":{"DEFAULT":[89.78]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, -{"f":150,"b":[{"b":0,"v":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"b":1,"v":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"b":2,"v":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"b":3,"v":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"b":4,"v":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"b":5,"v":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"b":6,"v":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"b":7,"v":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"b":8,"v":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.78]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":151,"b":[{"b":0,"v":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"b":1,"v":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"b":2,"v":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"b":3,"v":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"b":4,"v":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"b":5,"v":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"b":6,"v":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"b":7,"v":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"b":8,"v":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[2.33]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.42]}},{"b":12,"v":{"DEFAULT":[2.73]}},{"b":13,"v":{"DEFAULT":[40.57]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[286.8]}}]}, -{"f":152,"b":[{"b":0,"v":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"b":1,"v":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"b":2,"v":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"b":3,"v":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"b":4,"v":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"b":5,"v":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"b":6,"v":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"b":7,"v":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.95]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, -{"f":153,"b":[{"b":0,"v":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"b":1,"v":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"b":2,"v":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"b":3,"v":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"b":4,"v":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"b":5,"v":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"b":6,"v":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"b":7,"v":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"b":8,"v":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.86]}},{"b":11,"v":{"DEFAULT":[9.93]}},{"b":12,"v":{"DEFAULT":[2.45]}},{"b":13,"v":{"DEFAULT":[75.72]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[281.6]}}]}, -{"f":154,"b":[{"b":0,"v":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"b":1,"v":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"b":2,"v":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"b":3,"v":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"b":4,"v":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"b":5,"v":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"b":6,"v":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"b":7,"v":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"b":8,"v":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.98]}},{"b":13,"v":{"DEFAULT":[21.36]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[405.5]}}]}, -{"f":155,"b":[{"b":0,"v":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"b":1,"v":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"b":2,"v":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"b":3,"v":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"b":4,"v":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"b":5,"v":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"b":6,"v":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"b":7,"v":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"b":8,"v":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.42]}},{"b":11,"v":{"DEFAULT":[3.44]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[25.65]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[87.8]}}]}, -{"f":156,"b":[{"b":0,"v":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"b":1,"v":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"b":2,"v":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"b":3,"v":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"b":4,"v":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"b":5,"v":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"b":6,"v":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"b":7,"v":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"b":8,"v":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[16.36]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]}, -{"f":157,"b":[{"b":0,"v":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"b":1,"v":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"b":2,"v":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"b":3,"v":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"b":4,"v":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"b":5,"v":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"b":6,"v":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"b":7,"v":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"b":8,"v":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.92]}},{"b":10,"v":{"DEFAULT":[29.28]}},{"b":11,"v":{"DEFAULT":[29.73]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[615.46]}},{"b":14,"v":{"DEFAULT":[95.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[104.7]}}]}, -{"f":158,"b":[{"b":0,"v":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"b":1,"v":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"b":2,"v":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"b":3,"v":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"b":4,"v":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"b":5,"v":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"b":6,"v":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"b":7,"v":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"b":8,"v":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, -{"f":159,"b":[{"b":0,"v":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"b":1,"v":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"b":2,"v":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"b":3,"v":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"b":4,"v":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"b":5,"v":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"b":6,"v":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"b":7,"v":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"b":8,"v":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[18.03]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[31.6]}}]}, -{"f":160,"b":[{"b":0,"v":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"b":1,"v":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"b":2,"v":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"b":3,"v":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"b":4,"v":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"b":5,"v":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"b":6,"v":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"b":7,"v":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"b":8,"v":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.21]}},{"b":11,"v":{"DEFAULT":[2.23]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[16.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.6]}}]}, -{"f":161,"b":[{"b":0,"v":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"b":1,"v":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"b":2,"v":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"b":3,"v":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"b":4,"v":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"b":5,"v":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"b":6,"v":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"b":7,"v":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"b":8,"v":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.93]}},{"b":12,"v":{"DEFAULT":[8.44]}},{"b":13,"v":{"DEFAULT":[33.64]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, -{"f":162,"b":[{"b":0,"v":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"b":1,"v":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"b":2,"v":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"b":3,"v":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"b":4,"v":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"b":5,"v":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"b":6,"v":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"b":7,"v":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"b":8,"v":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[38.79]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":163,"b":[{"b":0,"v":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"b":2,"v":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"b":3,"v":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"b":4,"v":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"b":5,"v":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"b":6,"v":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"b":7,"v":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"b":8,"v":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.71]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[28.85]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, -{"f":164,"b":[{"b":0,"v":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"b":1,"v":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"b":2,"v":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"b":3,"v":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"b":4,"v":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"b":5,"v":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"b":6,"v":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"b":7,"v":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"b":8,"v":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[4.38]}},{"b":11,"v":{"DEFAULT":[4.45]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.44]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[72.9]}}]}, -{"f":165,"b":[{"b":0,"v":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"b":1,"v":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"b":2,"v":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"b":3,"v":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"b":4,"v":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"b":5,"v":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"b":6,"v":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"b":7,"v":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"b":8,"v":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.62]}},{"b":11,"v":{"DEFAULT":[5.62]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[47.7]}}]}, -{"f":166,"b":[{"b":0,"v":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"b":1,"v":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"b":2,"v":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"b":3,"v":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"b":4,"v":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"b":5,"v":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"b":6,"v":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"b":7,"v":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"b":8,"v":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.92]}},{"b":11,"v":{"DEFAULT":[4.18]}},{"b":12,"v":{"DEFAULT":[2.29]}},{"b":13,"v":{"DEFAULT":[30.94]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[88.2]}}]}, -{"f":167,"b":[{"b":0,"v":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"b":1,"v":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"b":2,"v":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"b":3,"v":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"b":4,"v":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"b":5,"v":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"b":6,"v":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"b":7,"v":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"b":8,"v":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[5.83]}},{"b":11,"v":{"DEFAULT":[8.21]}},{"b":12,"v":{"DEFAULT":[5.94]}},{"b":13,"v":{"DEFAULT":[48.32]}},{"b":14,"v":{"DEFAULT":[127.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[131.9]}}]}, -{"f":168,"b":[{"b":0,"v":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"b":1,"v":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"b":2,"v":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"b":3,"v":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"b":4,"v":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"b":5,"v":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"b":7,"v":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"b":8,"v":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.09]}},{"b":11,"v":{"DEFAULT":[4.12]}},{"b":12,"v":{"DEFAULT":[1.21]}},{"b":13,"v":{"DEFAULT":[31.89]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.9]}}]}, -{"f":169,"b":[{"b":0,"v":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"b":1,"v":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"b":2,"v":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"b":3,"v":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"b":4,"v":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"b":5,"v":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"b":6,"v":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"b":7,"v":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"b":8,"v":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.84]}},{"b":10,"v":{"DEFAULT":[3.63]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.49]}},{"b":13,"v":{"DEFAULT":[26.84]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[83.7]}}]}, -{"f":170,"b":[{"b":0,"v":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"b":1,"v":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"b":2,"v":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"b":3,"v":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"b":4,"v":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"b":5,"v":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"b":6,"v":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"b":7,"v":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"b":8,"v":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[4.38]}},{"b":10,"v":{"DEFAULT":[7.91]}},{"b":11,"v":{"DEFAULT":[8.11]}},{"b":12,"v":{"DEFAULT":[4.66]}},{"b":13,"v":{"DEFAULT":[36.85]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1073.1]}}]}, -{"f":171,"b":[{"b":0,"v":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"b":1,"v":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"b":2,"v":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"b":3,"v":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"b":4,"v":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"b":5,"v":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"b":6,"v":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"b":7,"v":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"b":8,"v":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.84]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, -{"f":172,"b":[{"b":0,"v":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"b":1,"v":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"b":2,"v":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"b":3,"v":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"b":4,"v":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"b":5,"v":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"b":6,"v":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"b":7,"v":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"b":8,"v":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[3.16]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[15.78]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":173,"b":[{"b":0,"v":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"b":1,"v":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"b":2,"v":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"b":3,"v":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"b":4,"v":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"b":5,"v":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"b":6,"v":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"b":7,"v":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"b":8,"v":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[7.49]}},{"b":11,"v":{"DEFAULT":[9.56]}},{"b":12,"v":{"DEFAULT":[5.93]}},{"b":13,"v":{"DEFAULT":[56.65]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[282.7]}}]}, -{"f":174,"b":[{"b":0,"v":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"b":1,"v":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"b":2,"v":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"b":3,"v":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"b":4,"v":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"b":5,"v":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"b":6,"v":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"b":7,"v":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"b":8,"v":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.75]}},{"b":11,"v":{"DEFAULT":[6.33]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.65]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[174.6]}}]}, -{"f":175,"b":[{"b":0,"v":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"b":1,"v":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"b":2,"v":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"b":4,"v":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"b":5,"v":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"b":6,"v":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"b":7,"v":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"b":8,"v":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.82]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.93]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":176,"b":[{"b":0,"v":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"b":1,"v":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"b":2,"v":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"b":3,"v":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"b":4,"v":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"b":5,"v":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"b":6,"v":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"b":7,"v":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"b":8,"v":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[19.82]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, -{"f":177,"b":[{"b":0,"v":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"b":1,"v":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"b":2,"v":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"b":3,"v":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"b":4,"v":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"b":5,"v":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"b":6,"v":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"b":7,"v":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"b":8,"v":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.32]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, -{"f":178,"b":[{"b":0,"v":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"b":1,"v":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"b":2,"v":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"b":3,"v":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"b":4,"v":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"b":5,"v":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"b":6,"v":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"b":7,"v":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"b":8,"v":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.76]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[70.7]}}]}, -{"f":179,"b":[{"b":0,"v":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"b":1,"v":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"b":2,"v":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"b":3,"v":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"b":4,"v":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"b":5,"v":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"b":6,"v":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"b":7,"v":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"b":8,"v":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.03]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":180,"b":[{"b":0,"v":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"b":2,"v":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"b":3,"v":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"b":4,"v":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"b":5,"v":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"b":6,"v":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"b":7,"v":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"b":8,"v":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[30.89]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.2]}}]}, -{"f":181,"b":[{"b":0,"v":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"b":1,"v":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"b":2,"v":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"b":3,"v":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"b":4,"v":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"b":5,"v":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"b":6,"v":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"b":7,"v":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"b":8,"v":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.12]}},{"b":11,"v":{"DEFAULT":[8.55]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.81]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[479.6]}}]}, -{"f":182,"b":[{"b":0,"v":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"b":1,"v":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"b":2,"v":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"b":3,"v":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"b":4,"v":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"b":5,"v":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"b":6,"v":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"b":7,"v":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"b":8,"v":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.51]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[284.8]}}]}, -{"f":183,"b":[{"b":0,"v":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"b":1,"v":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"b":2,"v":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"b":3,"v":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"b":4,"v":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"b":5,"v":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"b":6,"v":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"b":7,"v":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"b":8,"v":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.44]}},{"b":12,"v":{"DEFAULT":[1.42]}},{"b":13,"v":{"DEFAULT":[46.68]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, -{"f":184,"b":[{"b":0,"v":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"b":1,"v":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"b":2,"v":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"b":3,"v":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"b":4,"v":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"b":5,"v":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"b":6,"v":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"b":7,"v":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"b":8,"v":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[3.61]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[114.2]}}]}, -{"f":185,"b":[{"b":0,"v":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"b":1,"v":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"b":2,"v":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"b":3,"v":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"b":4,"v":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"b":5,"v":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"b":6,"v":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"b":7,"v":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"b":8,"v":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.22]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[4.78]}},{"b":13,"v":{"DEFAULT":[39.14]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[103.1]}}]}, -{"f":186,"b":[{"b":0,"v":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"b":1,"v":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"b":2,"v":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"b":3,"v":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"b":4,"v":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"b":5,"v":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"b":6,"v":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"b":7,"v":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"b":8,"v":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.73]}},{"b":11,"v":{"DEFAULT":[8.75]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.02]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[240.3]}}]}, -{"f":187,"b":[{"b":0,"v":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"b":1,"v":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"b":2,"v":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"b":3,"v":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"b":4,"v":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"b":5,"v":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"b":6,"v":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"b":7,"v":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"b":8,"v":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[4.35]}},{"b":11,"v":{"DEFAULT":[4.36]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.11]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[163.7]}}]}, -{"f":188,"b":[{"b":0,"v":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"b":1,"v":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"b":2,"v":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"b":3,"v":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"b":4,"v":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"b":5,"v":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"b":6,"v":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"b":7,"v":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"b":8,"v":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, -{"f":189,"b":[{"b":0,"v":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"b":1,"v":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"b":2,"v":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"b":3,"v":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"b":4,"v":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"b":5,"v":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"b":6,"v":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"b":7,"v":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"b":8,"v":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"b":9,"v":{"DEFAULT":[7.66]}},{"b":10,"v":{"DEFAULT":[21.32]}},{"b":11,"v":{"DEFAULT":[24.73]}},{"b":12,"v":{"DEFAULT":[40.66]}},{"b":13,"v":{"DEFAULT":[128.26]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2470.1]}}]}, -{"f":190,"b":[{"b":0,"v":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"b":1,"v":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"b":2,"v":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"b":3,"v":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"b":4,"v":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"b":5,"v":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"b":6,"v":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"b":7,"v":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"b":8,"v":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3.03]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[65.1]}}]}, -{"f":191,"b":[{"b":0,"v":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"b":1,"v":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"b":2,"v":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"b":3,"v":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"b":4,"v":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"b":5,"v":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"b":6,"v":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"b":7,"v":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"b":8,"v":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, -{"f":192,"b":[{"b":0,"v":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"b":1,"v":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"b":2,"v":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"b":3,"v":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"b":4,"v":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"b":5,"v":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"b":6,"v":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"b":7,"v":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"b":8,"v":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.51]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.73]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, -{"f":193,"b":[{"b":0,"v":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"b":1,"v":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"b":2,"v":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"b":3,"v":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"b":4,"v":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"b":5,"v":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"b":6,"v":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"b":7,"v":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"b":8,"v":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.12]}},{"b":11,"v":{"DEFAULT":[4.19]}},{"b":12,"v":{"DEFAULT":[1.27]}},{"b":13,"v":{"DEFAULT":[30.28]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[235.9]}}]}, -{"f":194,"b":[{"b":0,"v":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"b":1,"v":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"b":2,"v":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"b":3,"v":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"b":4,"v":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"b":5,"v":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"b":6,"v":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"b":7,"v":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"b":8,"v":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"b":9,"v":{"DEFAULT":[1.88]}},{"b":10,"v":{"DEFAULT":[10.98]}},{"b":11,"v":{"DEFAULT":[19.28]}},{"b":12,"v":{"DEFAULT":[9.94]}},{"b":13,"v":{"DEFAULT":[93.05]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[565.4]}}]}, -{"f":195,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"b":1,"v":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"b":2,"v":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"b":3,"v":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"b":4,"v":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"b":5,"v":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"b":6,"v":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"b":7,"v":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"b":8,"v":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.22]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[42]}}]}, -{"f":196,"b":[{"b":0,"v":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"b":1,"v":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"b":2,"v":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"b":3,"v":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"b":4,"v":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"b":5,"v":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"b":6,"v":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"b":7,"v":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"b":8,"v":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[3.94]}},{"b":13,"v":{"DEFAULT":[34.52]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":197,"b":[{"b":0,"v":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"b":1,"v":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"b":2,"v":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"b":3,"v":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"b":4,"v":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"b":5,"v":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"b":6,"v":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"b":7,"v":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"b":8,"v":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[9.25]}},{"b":11,"v":{"DEFAULT":[9.25]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[85.79]}},{"b":14,"v":{"DEFAULT":[12.6]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, -{"f":198,"b":[{"b":0,"v":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"b":1,"v":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"b":2,"v":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"b":3,"v":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"b":4,"v":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"b":5,"v":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"b":6,"v":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"b":7,"v":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"b":8,"v":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.23]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.28]}},{"b":13,"v":{"DEFAULT":[16.62]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[63.8]}}]}, -{"f":199,"b":[{"b":0,"v":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"b":1,"v":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"b":2,"v":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"b":3,"v":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"b":4,"v":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"b":5,"v":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"b":6,"v":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"b":7,"v":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"b":8,"v":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.91]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.45]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, -{"f":200,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"b":1,"v":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"b":2,"v":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"b":3,"v":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"b":4,"v":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"b":5,"v":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"b":6,"v":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"b":7,"v":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"b":8,"v":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.55]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[64.2]}}]}, -{"f":201,"b":[{"b":0,"v":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"b":1,"v":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"b":2,"v":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"b":3,"v":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"b":4,"v":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"b":6,"v":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"b":7,"v":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"b":8,"v":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[19.21]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":202,"b":[{"b":0,"v":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"b":1,"v":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"b":2,"v":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"b":3,"v":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"b":4,"v":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"b":5,"v":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"b":6,"v":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"b":7,"v":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"b":8,"v":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.17]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.72]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[95.8]}}]}, -{"f":203,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"b":1,"v":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"b":2,"v":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"b":3,"v":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"b":4,"v":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"b":5,"v":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"b":6,"v":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"b":7,"v":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"b":8,"v":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":204,"b":[{"b":0,"v":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"b":1,"v":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"b":2,"v":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"b":3,"v":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"b":4,"v":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"b":5,"v":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"b":6,"v":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"b":7,"v":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"b":8,"v":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.92]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":205,"b":[{"b":0,"v":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"b":1,"v":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"b":2,"v":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"b":3,"v":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"b":4,"v":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"b":5,"v":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"b":6,"v":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"b":7,"v":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"b":8,"v":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.79]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":206,"b":[{"b":0,"v":{"total":[37.7,29.8,34.5,34.5,35.9,30.5,33.2,29.8,35.4,30,33.5,30.9,29.4,34,33.2],"script":[5.2,5.5,5.3,5.5,5.7,5.4,5.3,5.4,5.4,5.4,5.4,5.5,5.3,5.5,5.3],"paint":[21.4,22.4,21.7,22.3,22.4,22,21.3,22.1,21.6,22.1,22.1,22.1,21.9,22.2,21.7]}},{"b":1,"v":{"total":[19,18.6,12.6,18.9,18.4,18.7,18.3,18.3,20.1,17.5,18.7,18,20.2,14.6,18.8],"script":[3.4,3.4,3.5,3.7,3.4,3.3,3.3,3.3,3.6,3.4,3.7,3.7,3.4,3.4,3.6],"paint":[8.6,8.7,8.9,9,8.6,8.5,8.6,8.7,9.1,8.5,9.2,9,8.7,8.8,8.9]}},{"b":2,"v":{"total":[23.6,39.3,39.3,37.6,38.7,21.5,37.5,36.9,22.4,20.7,21.4,38.1,38.4,36.2,38.5],"script":[9.7,10.9,10.2,9.3,10.7,10.1,9.6,8.9,11.1,9.5,9.2,9.3,10.3,10,10.1],"paint":[10.5,10.8,11.3,10.9,10.9,11,10.3,11.1,9.5,10.8,10.2,10.3,11.3,9.1,12.1]}},{"b":3,"v":{"total":[12.2,13.1,17.6,16.3,19.5,14.9,13.6,13.5,15,16.8,16,13.3,14.2,15.7,14.4,12.9,12.5,16.4,12.8,13.2,14.3,15,14,12.9,18.2],"script":[9.5,9.9,9.2,9.9,10.9,10.3,10.4,8.9,9.5,9.9,10.2,10.3,9.7,10.2,9.5,9.3,8.5,10,9.2,10.2,10.4,9.5,10.1,9.1,9.5],"paint":[1.3,1.3,2,0.8,1.2,2.3,1.3,2.5,1.6,1.8,2,2.7,1,2,1.7,1.9,1.2,1.7,2.4,1.8,2.6,1.9,3.1,2.3,2.4]}},{"b":4,"v":{"total":[20.3,34.8,35.8,35.7,35.1,18.7,35.4,35.6,34.6,36.7,19,36.3,35.4,34.3,36.2],"script":[10.6,10,10.7,9.7,9.9,10.3,9.7,10.5,9.9,11.3,10.4,10.2,9.8,9.8,9.5],"paint":[7,7.7,8.3,8.2,8.3,7,9.8,7.6,8,7.8,6.8,9.4,8.7,7.7,9.2]}},{"b":5,"v":{"total":[26.4,21.7,21.1,21.5,21,22.5,21.3,26,22,20.8,21.3,21.3,23.7,21.5,20.9],"script":[6,6.1,6,6.1,6.1,6.3,6,6.2,6.3,6.2,6,5.9,6,6.1,5.9],"paint":[14.8,15.1,14.2,14.7,14.3,14.8,14.9,14.9,15.2,14.3,14.8,14.8,14.9,14.8,14.1]}},{"b":6,"v":{"total":[301,300.6,299.6,301.9,304.7,298.4,298.7,307.2,298.9,304.1,302.7,305,304.9,303.7,298.3],"script":[70.3,70.4,70,71,69.5,73.3,70.8,70,71.2,70.1,70.7,70.7,70.3,69.1,71.5],"paint":[221.4,225.2,223.1,222.3,223.3,220.7,224,225,222.6,223.3,225.4,224,223.2,223.7,222]}},{"b":7,"v":{"total":[35.1,40.1,36,40.2,40.2,35.3,35.7,40.1,40,39.6,40.2,34.6,39.8,41,39.8],"script":[8.5,8.4,9.3,8.5,8.2,8.5,8.5,8.4,8.1,8.3,8.2,8.3,8.2,9.2,8.2],"paint":[26.1,25.7,26.1,25.7,25.8,26.3,26.3,25.8,26,25.6,26,25.8,25.7,26.1,25.8]}},{"b":8,"v":{"total":[11.2,11.2,10.4,11.1,11.1,26.8,11,10.1,12.6,10.7,12.4,10.9,10.4,11.6,10.5],"script":[9.3,9.6,9,9.1,9.5,8.9,9.1,8.4,10.7,8.5,9.3,8.6,8.9,8.1,8.2],"paint":[1,0.7,0.3,1.2,0.9,1.3,1,1.5,1.7,0.6,1.3,1.7,0.7,2.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.93]}},{"b":11,"v":{"DEFAULT":[2.89]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[22.03]}},{"b":14,"v":{"DEFAULT":[8.4]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, -{"f":207,"b":[{"b":0,"v":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"b":1,"v":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"b":2,"v":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"b":4,"v":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"b":5,"v":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"b":6,"v":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"b":7,"v":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"b":8,"v":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.11]}},{"b":13,"v":{"DEFAULT":[28.62]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.9]}},{"b":16,"v":{"DEFAULT":[87.1]}}]}, -{"f":208,"b":[{"b":0,"v":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"b":1,"v":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"b":2,"v":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"b":3,"v":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"b":4,"v":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"b":5,"v":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"b":6,"v":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"b":7,"v":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[22.22]}},{"b":14,"v":{"DEFAULT":[37.2]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":209,"b":[{"b":0,"v":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"b":1,"v":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"b":2,"v":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"b":3,"v":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"b":4,"v":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"b":5,"v":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"b":6,"v":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"b":7,"v":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"b":8,"v":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[21.14]}},{"b":14,"v":{"DEFAULT":[37]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[72.1]}}]},]; -export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.0-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.26-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-vERROR: Not found in package-lock-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":103,"b":[{"b":0,"v":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"b":1,"v":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"b":2,"v":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"b":3,"v":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"b":4,"v":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"b":5,"v":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"b":6,"v":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"b":7,"v":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[19.03]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[44.3]}}]}, +{"f":104,"b":[{"b":0,"v":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"b":1,"v":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"b":2,"v":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"b":3,"v":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"b":4,"v":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"b":5,"v":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"b":6,"v":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"b":7,"v":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"b":8,"v":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[31.41]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, +{"f":105,"b":[{"b":0,"v":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"b":1,"v":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"b":2,"v":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"b":3,"v":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"b":4,"v":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"b":5,"v":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"b":6,"v":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"b":7,"v":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"b":8,"v":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.38]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.09]}},{"b":13,"v":{"DEFAULT":[25.84]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[88.4]}}]}, +{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"b":1,"v":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"b":2,"v":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"b":3,"v":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"b":4,"v":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"b":5,"v":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"b":6,"v":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"b":7,"v":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"b":8,"v":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[1.14]}},{"b":13,"v":{"DEFAULT":[39.63]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93]}}]}, +{"f":107,"b":[{"b":0,"v":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"b":1,"v":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"b":2,"v":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"b":3,"v":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"b":4,"v":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"b":5,"v":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"b":6,"v":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"b":7,"v":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"b":8,"v":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"b":9,"v":{"DEFAULT":[0.98]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[98.2]}}]}, +{"f":108,"b":[{"b":0,"v":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"b":1,"v":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"b":2,"v":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"b":3,"v":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"b":4,"v":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"b":5,"v":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"b":6,"v":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"b":7,"v":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"b":8,"v":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.51]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.35]}},{"b":13,"v":{"DEFAULT":[68.56]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[383]}}]}, +{"f":109,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"b":1,"v":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"b":2,"v":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"b":3,"v":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"b":4,"v":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"b":5,"v":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"b":6,"v":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"b":7,"v":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"b":8,"v":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.82]}},{"b":12,"v":{"DEFAULT":[2.53]}},{"b":13,"v":{"DEFAULT":[22.33]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, +{"f":110,"b":[{"b":0,"v":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"b":1,"v":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"b":2,"v":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"b":3,"v":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"b":4,"v":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"b":5,"v":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"b":6,"v":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"b":7,"v":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"b":8,"v":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.75]}},{"b":11,"v":{"DEFAULT":[2.76]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.46]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":111,"b":[{"b":0,"v":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"b":1,"v":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"b":2,"v":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"b":3,"v":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"b":4,"v":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"b":5,"v":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"b":6,"v":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"b":7,"v":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"b":8,"v":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.52]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.98]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, +{"f":112,"b":[{"b":0,"v":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"b":2,"v":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"b":3,"v":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"b":4,"v":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"b":5,"v":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"b":6,"v":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"b":7,"v":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"b":8,"v":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[39.6]}}]}, +{"f":113,"b":[{"b":0,"v":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"b":1,"v":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"b":2,"v":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"b":3,"v":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"b":4,"v":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"b":6,"v":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"b":7,"v":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"b":8,"v":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":114,"b":[{"b":0,"v":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"b":1,"v":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"b":2,"v":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"b":3,"v":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"b":4,"v":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"b":5,"v":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"b":6,"v":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"b":7,"v":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"b":8,"v":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[1.83]}},{"b":11,"v":{"DEFAULT":[1.84]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[12.63]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":115,"b":[{"b":0,"v":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"b":1,"v":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"b":2,"v":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"b":3,"v":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"b":4,"v":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"b":5,"v":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"b":6,"v":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"b":7,"v":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.96]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129]}}]}, +{"f":116,"b":[{"b":0,"v":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"b":1,"v":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"b":2,"v":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"b":3,"v":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"b":5,"v":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"b":6,"v":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"b":7,"v":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"b":8,"v":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.58]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[3.08]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[112.1]}}]}, +{"f":117,"b":[{"b":0,"v":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"b":1,"v":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"b":2,"v":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"b":3,"v":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"b":4,"v":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"b":6,"v":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"b":7,"v":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"b":8,"v":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.76]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, +{"f":118,"b":[{"b":0,"v":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"b":1,"v":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"b":2,"v":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"b":3,"v":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"b":4,"v":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"b":5,"v":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"b":6,"v":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"b":7,"v":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"b":8,"v":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.34]}},{"b":13,"v":{"DEFAULT":[16.49]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[62.2]}}]}, +{"f":119,"b":[{"b":0,"v":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"b":1,"v":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"b":3,"v":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"b":4,"v":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"b":5,"v":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"b":6,"v":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"b":7,"v":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"b":8,"v":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.64]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[29.53]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, +{"f":120,"b":[{"b":0,"v":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"b":1,"v":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"b":2,"v":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"b":3,"v":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"b":4,"v":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"b":5,"v":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"b":6,"v":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"b":7,"v":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"b":8,"v":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.35]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, +{"f":121,"b":[{"b":0,"v":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"b":1,"v":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"b":2,"v":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"b":3,"v":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"b":4,"v":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"b":5,"v":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"b":6,"v":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"b":7,"v":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"b":8,"v":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.5]}}]}, +{"f":122,"b":[{"b":0,"v":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"b":1,"v":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"b":2,"v":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"b":3,"v":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"b":4,"v":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"b":5,"v":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"b":6,"v":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"b":7,"v":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"b":8,"v":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[4.87]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.59]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[203]}}]}, +{"f":123,"b":[{"b":0,"v":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"b":1,"v":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"b":2,"v":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"b":3,"v":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"b":4,"v":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"b":5,"v":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"b":6,"v":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"b":7,"v":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"b":8,"v":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[17.54]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[175.8]}}]}, +{"f":124,"b":[{"b":0,"v":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"b":1,"v":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"b":2,"v":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"b":3,"v":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"b":5,"v":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"b":6,"v":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"b":7,"v":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"b":8,"v":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.19]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, +{"f":125,"b":[{"b":0,"v":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"b":1,"v":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"b":2,"v":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"b":3,"v":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"b":4,"v":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"b":5,"v":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"b":6,"v":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"b":7,"v":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"b":8,"v":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.79]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, +{"f":126,"b":[{"b":0,"v":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"b":1,"v":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"b":2,"v":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"b":3,"v":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"b":4,"v":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"b":5,"v":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"b":6,"v":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"b":7,"v":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"b":8,"v":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[21.66]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[62.4]}}]}, +{"f":127,"b":[{"b":0,"v":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"b":2,"v":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"b":3,"v":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"b":4,"v":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"b":5,"v":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"b":6,"v":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"b":7,"v":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"b":8,"v":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.16]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[44.5]}}]}, +{"f":128,"b":[{"b":0,"v":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"b":1,"v":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"b":2,"v":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"b":3,"v":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"b":4,"v":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"b":5,"v":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"b":6,"v":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"b":7,"v":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"b":8,"v":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.18]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.76]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, +{"f":129,"b":[{"b":0,"v":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"b":1,"v":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"b":2,"v":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"b":3,"v":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"b":4,"v":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"b":5,"v":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"b":6,"v":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"b":7,"v":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"b":8,"v":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.07]}},{"b":11,"v":{"DEFAULT":[6.74]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.86]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[164.4]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"b":1,"v":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"b":3,"v":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"b":4,"v":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"b":5,"v":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"b":6,"v":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"b":7,"v":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"b":8,"v":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.97]}},{"b":11,"v":{"DEFAULT":[1.93]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"b":1,"v":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"b":2,"v":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"b":3,"v":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"b":4,"v":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"b":5,"v":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"b":6,"v":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"b":7,"v":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"b":8,"v":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.48]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.57]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":132,"b":[{"b":0,"v":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"b":1,"v":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"b":2,"v":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"b":3,"v":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"b":4,"v":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"b":5,"v":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"b":6,"v":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"b":7,"v":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"b":8,"v":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[1.74]}},{"b":11,"v":{"DEFAULT":[1.76]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, +{"f":133,"b":[{"b":0,"v":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"b":1,"v":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"b":2,"v":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"b":3,"v":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"b":4,"v":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"b":5,"v":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"b":6,"v":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"b":7,"v":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.36]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, +{"f":134,"b":[{"b":0,"v":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"b":1,"v":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"b":2,"v":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"b":3,"v":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"b":4,"v":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"b":5,"v":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"b":6,"v":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"b":7,"v":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"b":8,"v":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.08]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[36.7]}}]}, +{"f":135,"b":[{"b":0,"v":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"b":1,"v":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"b":2,"v":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"b":3,"v":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"b":4,"v":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"b":5,"v":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"b":6,"v":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"b":7,"v":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"b":8,"v":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.41]}},{"b":11,"v":{"DEFAULT":[2.42]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.46]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, +{"f":136,"b":[{"b":0,"v":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"b":1,"v":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"b":2,"v":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"b":3,"v":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"b":4,"v":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"b":5,"v":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"b":6,"v":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"b":7,"v":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"b":8,"v":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.43]}},{"b":12,"v":{"DEFAULT":[0.93]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[70.5]}}]}, +{"f":137,"b":[{"b":0,"v":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"b":1,"v":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"b":2,"v":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"b":3,"v":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"b":4,"v":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"b":5,"v":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"b":6,"v":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"b":7,"v":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"b":8,"v":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.86]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[28.65]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[86.6]}}]}, +{"f":138,"b":[{"b":0,"v":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"b":1,"v":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"b":2,"v":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"b":3,"v":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"b":4,"v":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"b":5,"v":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"b":6,"v":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"b":7,"v":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"b":8,"v":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.29]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, +{"f":139,"b":[{"b":0,"v":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"b":1,"v":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"b":2,"v":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"b":3,"v":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"b":4,"v":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"b":5,"v":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"b":6,"v":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"b":7,"v":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"b":8,"v":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.13]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[22.26]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[67.3]}}]}, +{"f":140,"b":[{"b":0,"v":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"b":1,"v":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"b":2,"v":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"b":3,"v":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"b":4,"v":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"b":5,"v":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"b":6,"v":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"b":7,"v":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"b":8,"v":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.21]}},{"b":11,"v":{"DEFAULT":[4.31]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[31.72]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[89.6]}}]}, +{"f":141,"b":[{"b":0,"v":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"b":1,"v":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"b":2,"v":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"b":3,"v":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"b":4,"v":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"b":5,"v":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"b":6,"v":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"b":7,"v":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"b":8,"v":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.04]}},{"b":11,"v":{"DEFAULT":[3.05]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[21.61]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[71.8]}}]}, +{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"b":1,"v":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"b":2,"v":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"b":3,"v":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"b":4,"v":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"b":5,"v":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"b":6,"v":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"b":7,"v":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"b":8,"v":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.16]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.33]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, +{"f":143,"b":[{"b":0,"v":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"b":2,"v":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"b":3,"v":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"b":4,"v":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"b":5,"v":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"b":6,"v":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"b":7,"v":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"b":8,"v":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.93]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, +{"f":144,"b":[{"b":0,"v":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"b":1,"v":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"b":2,"v":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"b":3,"v":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"b":4,"v":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"b":5,"v":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"b":6,"v":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"b":7,"v":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"b":8,"v":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.79]}},{"b":10,"v":{"DEFAULT":[6.45]}},{"b":11,"v":{"DEFAULT":[6.52]}},{"b":12,"v":{"DEFAULT":[4.93]}},{"b":13,"v":{"DEFAULT":[47.07]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[254.1]}}]}, +{"f":145,"b":[{"b":0,"v":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"b":1,"v":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"b":2,"v":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"b":3,"v":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"b":4,"v":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"b":5,"v":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"b":6,"v":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"b":7,"v":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"b":8,"v":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[6.57]}},{"b":11,"v":{"DEFAULT":[6.82]}},{"b":12,"v":{"DEFAULT":[5.12]}},{"b":13,"v":{"DEFAULT":[48.29]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[263]}}]}, +{"f":146,"b":[{"b":0,"v":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"b":1,"v":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"b":2,"v":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"b":3,"v":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"b":4,"v":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"b":5,"v":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"b":6,"v":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"b":7,"v":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"b":8,"v":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[30.7]}}]}, +{"f":147,"b":[{"b":0,"v":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"b":1,"v":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"b":2,"v":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"b":3,"v":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"b":4,"v":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"b":5,"v":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"b":6,"v":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"b":7,"v":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"b":8,"v":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.31]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.47]}},{"b":13,"v":{"DEFAULT":[25.88]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, +{"f":148,"b":[{"b":0,"v":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"b":1,"v":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"b":2,"v":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"b":3,"v":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"b":4,"v":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"b":5,"v":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"b":6,"v":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"b":7,"v":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"b":8,"v":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[5.38]}},{"b":11,"v":{"DEFAULT":[5.41]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[46.22]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, +{"f":149,"b":[{"b":0,"v":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"b":1,"v":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"b":2,"v":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"b":3,"v":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"b":4,"v":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"b":5,"v":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"b":6,"v":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"b":7,"v":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[17.91]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, +{"f":150,"b":[{"b":0,"v":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"b":1,"v":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"b":2,"v":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"b":3,"v":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"b":4,"v":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"b":5,"v":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"b":6,"v":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"b":7,"v":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"b":8,"v":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[9.84]}},{"b":11,"v":{"DEFAULT":[15.59]}},{"b":12,"v":{"DEFAULT":[44.78]}},{"b":13,"v":{"DEFAULT":[89.78]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, +{"f":151,"b":[{"b":0,"v":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"b":1,"v":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"b":2,"v":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"b":3,"v":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"b":4,"v":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"b":5,"v":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"b":6,"v":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"b":7,"v":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"b":8,"v":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.78]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, +{"f":152,"b":[{"b":0,"v":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"b":1,"v":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"b":2,"v":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"b":3,"v":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"b":4,"v":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"b":5,"v":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"b":6,"v":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"b":7,"v":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"b":8,"v":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[2.33]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.42]}},{"b":12,"v":{"DEFAULT":[2.73]}},{"b":13,"v":{"DEFAULT":[40.57]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[286.8]}}]}, +{"f":153,"b":[{"b":0,"v":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"b":1,"v":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"b":2,"v":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"b":3,"v":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"b":4,"v":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"b":5,"v":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"b":6,"v":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"b":7,"v":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.95]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, +{"f":154,"b":[{"b":0,"v":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"b":1,"v":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"b":2,"v":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"b":3,"v":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"b":4,"v":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"b":5,"v":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"b":6,"v":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"b":7,"v":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"b":8,"v":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.86]}},{"b":11,"v":{"DEFAULT":[9.93]}},{"b":12,"v":{"DEFAULT":[2.45]}},{"b":13,"v":{"DEFAULT":[75.72]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[281.6]}}]}, +{"f":155,"b":[{"b":0,"v":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"b":1,"v":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"b":2,"v":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"b":3,"v":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"b":4,"v":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"b":5,"v":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"b":6,"v":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"b":7,"v":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"b":8,"v":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.98]}},{"b":13,"v":{"DEFAULT":[21.36]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[405.5]}}]}, +{"f":156,"b":[{"b":0,"v":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"b":1,"v":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"b":2,"v":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"b":3,"v":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"b":4,"v":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"b":5,"v":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"b":6,"v":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"b":7,"v":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"b":8,"v":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.42]}},{"b":11,"v":{"DEFAULT":[3.44]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[25.65]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[87.8]}}]}, +{"f":157,"b":[{"b":0,"v":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"b":1,"v":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"b":2,"v":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"b":3,"v":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"b":4,"v":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"b":5,"v":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"b":6,"v":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"b":7,"v":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"b":8,"v":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[16.36]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]}, +{"f":158,"b":[{"b":0,"v":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"b":1,"v":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"b":2,"v":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"b":3,"v":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"b":4,"v":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"b":5,"v":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"b":6,"v":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"b":7,"v":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"b":8,"v":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.92]}},{"b":10,"v":{"DEFAULT":[29.28]}},{"b":11,"v":{"DEFAULT":[29.73]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[615.46]}},{"b":14,"v":{"DEFAULT":[95.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[104.7]}}]}, +{"f":159,"b":[{"b":0,"v":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"b":1,"v":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"b":2,"v":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"b":3,"v":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"b":4,"v":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"b":5,"v":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"b":6,"v":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"b":7,"v":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"b":8,"v":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, +{"f":160,"b":[{"b":0,"v":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"b":1,"v":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"b":2,"v":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"b":3,"v":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"b":4,"v":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"b":5,"v":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"b":6,"v":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"b":7,"v":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"b":8,"v":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[18.03]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[31.6]}}]}, +{"f":161,"b":[{"b":0,"v":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"b":1,"v":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"b":2,"v":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"b":3,"v":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"b":4,"v":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"b":5,"v":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"b":6,"v":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"b":7,"v":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"b":8,"v":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.21]}},{"b":11,"v":{"DEFAULT":[2.23]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[16.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.6]}}]}, +{"f":162,"b":[{"b":0,"v":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"b":1,"v":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"b":2,"v":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"b":3,"v":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"b":4,"v":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"b":5,"v":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"b":6,"v":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"b":7,"v":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"b":8,"v":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.93]}},{"b":12,"v":{"DEFAULT":[8.44]}},{"b":13,"v":{"DEFAULT":[33.64]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, +{"f":163,"b":[{"b":0,"v":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"b":1,"v":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"b":2,"v":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"b":3,"v":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"b":4,"v":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"b":5,"v":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"b":6,"v":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"b":7,"v":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"b":8,"v":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[38.79]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, +{"f":164,"b":[{"b":0,"v":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"b":2,"v":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"b":3,"v":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"b":4,"v":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"b":5,"v":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"b":6,"v":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"b":7,"v":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"b":8,"v":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.71]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[28.85]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, +{"f":165,"b":[{"b":0,"v":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"b":1,"v":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"b":2,"v":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"b":3,"v":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"b":4,"v":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"b":5,"v":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"b":6,"v":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"b":7,"v":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"b":8,"v":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[4.38]}},{"b":11,"v":{"DEFAULT":[4.45]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.44]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[72.9]}}]}, +{"f":166,"b":[{"b":0,"v":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"b":1,"v":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"b":2,"v":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"b":3,"v":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"b":4,"v":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"b":5,"v":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"b":6,"v":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"b":7,"v":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"b":8,"v":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.62]}},{"b":11,"v":{"DEFAULT":[5.62]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[47.7]}}]}, +{"f":167,"b":[{"b":0,"v":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"b":1,"v":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"b":2,"v":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"b":3,"v":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"b":4,"v":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"b":5,"v":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"b":6,"v":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"b":7,"v":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"b":8,"v":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.92]}},{"b":11,"v":{"DEFAULT":[4.18]}},{"b":12,"v":{"DEFAULT":[2.29]}},{"b":13,"v":{"DEFAULT":[30.94]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[88.2]}}]}, +{"f":168,"b":[{"b":0,"v":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"b":1,"v":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"b":2,"v":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"b":3,"v":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"b":4,"v":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"b":5,"v":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"b":6,"v":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"b":7,"v":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"b":8,"v":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[5.83]}},{"b":11,"v":{"DEFAULT":[8.21]}},{"b":12,"v":{"DEFAULT":[5.94]}},{"b":13,"v":{"DEFAULT":[48.32]}},{"b":14,"v":{"DEFAULT":[127.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[131.9]}}]}, +{"f":169,"b":[{"b":0,"v":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"b":1,"v":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"b":2,"v":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"b":3,"v":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"b":4,"v":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"b":5,"v":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"b":7,"v":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"b":8,"v":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.09]}},{"b":11,"v":{"DEFAULT":[4.12]}},{"b":12,"v":{"DEFAULT":[1.21]}},{"b":13,"v":{"DEFAULT":[31.89]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.9]}}]}, +{"f":170,"b":[{"b":0,"v":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"b":1,"v":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"b":2,"v":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"b":3,"v":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"b":4,"v":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"b":5,"v":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"b":6,"v":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"b":7,"v":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"b":8,"v":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.84]}},{"b":10,"v":{"DEFAULT":[3.63]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.49]}},{"b":13,"v":{"DEFAULT":[26.84]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[83.7]}}]}, +{"f":171,"b":[{"b":0,"v":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"b":1,"v":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"b":2,"v":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"b":3,"v":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"b":4,"v":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"b":5,"v":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"b":6,"v":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"b":7,"v":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"b":8,"v":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[4.38]}},{"b":10,"v":{"DEFAULT":[7.91]}},{"b":11,"v":{"DEFAULT":[8.11]}},{"b":12,"v":{"DEFAULT":[4.66]}},{"b":13,"v":{"DEFAULT":[36.85]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1073.1]}}]}, +{"f":172,"b":[{"b":0,"v":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"b":1,"v":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"b":2,"v":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"b":3,"v":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"b":4,"v":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"b":5,"v":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"b":6,"v":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"b":7,"v":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"b":8,"v":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.84]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, +{"f":173,"b":[{"b":0,"v":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"b":1,"v":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"b":2,"v":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"b":3,"v":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"b":4,"v":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"b":5,"v":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"b":6,"v":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"b":7,"v":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"b":8,"v":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[3.16]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[15.78]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, +{"f":174,"b":[{"b":0,"v":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"b":1,"v":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"b":2,"v":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"b":3,"v":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"b":4,"v":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"b":5,"v":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"b":6,"v":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"b":7,"v":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"b":8,"v":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[7.49]}},{"b":11,"v":{"DEFAULT":[9.56]}},{"b":12,"v":{"DEFAULT":[5.93]}},{"b":13,"v":{"DEFAULT":[56.65]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[282.7]}}]}, +{"f":175,"b":[{"b":0,"v":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"b":1,"v":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"b":2,"v":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"b":3,"v":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"b":4,"v":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"b":5,"v":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"b":6,"v":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"b":7,"v":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"b":8,"v":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.75]}},{"b":11,"v":{"DEFAULT":[6.33]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.65]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[174.6]}}]}, +{"f":176,"b":[{"b":0,"v":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"b":1,"v":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"b":2,"v":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"b":4,"v":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"b":5,"v":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"b":6,"v":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"b":7,"v":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"b":8,"v":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.82]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.93]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, +{"f":177,"b":[{"b":0,"v":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"b":1,"v":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"b":2,"v":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"b":3,"v":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"b":4,"v":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"b":5,"v":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"b":6,"v":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"b":7,"v":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"b":8,"v":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[19.82]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, +{"f":178,"b":[{"b":0,"v":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"b":1,"v":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"b":2,"v":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"b":3,"v":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"b":4,"v":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"b":5,"v":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"b":6,"v":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"b":7,"v":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"b":8,"v":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.32]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, +{"f":179,"b":[{"b":0,"v":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"b":1,"v":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"b":2,"v":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"b":3,"v":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"b":4,"v":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"b":5,"v":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"b":6,"v":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"b":7,"v":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"b":8,"v":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.76]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[70.7]}}]}, +{"f":180,"b":[{"b":0,"v":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"b":1,"v":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"b":2,"v":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"b":3,"v":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"b":4,"v":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"b":5,"v":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"b":6,"v":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"b":7,"v":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"b":8,"v":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.03]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":181,"b":[{"b":0,"v":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"b":2,"v":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"b":3,"v":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"b":4,"v":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"b":5,"v":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"b":6,"v":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"b":7,"v":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"b":8,"v":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[30.89]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.2]}}]}, +{"f":182,"b":[{"b":0,"v":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"b":1,"v":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"b":2,"v":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"b":3,"v":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"b":4,"v":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"b":5,"v":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"b":6,"v":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"b":7,"v":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"b":8,"v":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.12]}},{"b":11,"v":{"DEFAULT":[8.55]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.81]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[479.6]}}]}, +{"f":183,"b":[{"b":0,"v":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"b":1,"v":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"b":2,"v":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"b":3,"v":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"b":4,"v":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"b":5,"v":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"b":6,"v":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"b":7,"v":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"b":8,"v":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.51]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[284.8]}}]}, +{"f":184,"b":[{"b":0,"v":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"b":1,"v":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"b":2,"v":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"b":3,"v":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"b":4,"v":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"b":5,"v":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"b":6,"v":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"b":7,"v":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"b":8,"v":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.44]}},{"b":12,"v":{"DEFAULT":[1.42]}},{"b":13,"v":{"DEFAULT":[46.68]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, +{"f":185,"b":[{"b":0,"v":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"b":1,"v":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"b":2,"v":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"b":3,"v":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"b":4,"v":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"b":5,"v":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"b":6,"v":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"b":7,"v":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"b":8,"v":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[3.61]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[114.2]}}]}, +{"f":186,"b":[{"b":0,"v":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"b":1,"v":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"b":2,"v":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"b":3,"v":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"b":4,"v":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"b":5,"v":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"b":6,"v":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"b":7,"v":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"b":8,"v":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.22]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[4.78]}},{"b":13,"v":{"DEFAULT":[39.14]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[103.1]}}]}, +{"f":187,"b":[{"b":0,"v":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"b":1,"v":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"b":2,"v":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"b":3,"v":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"b":4,"v":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"b":5,"v":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"b":6,"v":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"b":7,"v":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"b":8,"v":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.73]}},{"b":11,"v":{"DEFAULT":[8.75]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.02]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[240.3]}}]}, +{"f":188,"b":[{"b":0,"v":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"b":1,"v":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"b":2,"v":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"b":3,"v":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"b":4,"v":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"b":5,"v":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"b":6,"v":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"b":7,"v":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"b":8,"v":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[4.35]}},{"b":11,"v":{"DEFAULT":[4.36]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.11]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[163.7]}}]}, +{"f":189,"b":[{"b":0,"v":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"b":1,"v":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"b":2,"v":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"b":3,"v":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"b":4,"v":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"b":5,"v":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"b":6,"v":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"b":7,"v":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"b":8,"v":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, +{"f":190,"b":[{"b":0,"v":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"b":1,"v":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"b":2,"v":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"b":3,"v":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"b":4,"v":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"b":5,"v":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"b":6,"v":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"b":7,"v":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"b":8,"v":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"b":9,"v":{"DEFAULT":[7.66]}},{"b":10,"v":{"DEFAULT":[21.32]}},{"b":11,"v":{"DEFAULT":[24.73]}},{"b":12,"v":{"DEFAULT":[40.66]}},{"b":13,"v":{"DEFAULT":[128.26]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2470.1]}}]}, +{"f":191,"b":[{"b":0,"v":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"b":1,"v":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"b":2,"v":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"b":3,"v":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"b":4,"v":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"b":5,"v":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"b":6,"v":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"b":7,"v":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"b":8,"v":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3.03]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[65.1]}}]}, +{"f":192,"b":[{"b":0,"v":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"b":1,"v":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"b":2,"v":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"b":3,"v":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"b":4,"v":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"b":5,"v":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"b":6,"v":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"b":7,"v":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"b":8,"v":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, +{"f":193,"b":[{"b":0,"v":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"b":1,"v":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"b":2,"v":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"b":3,"v":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"b":4,"v":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"b":5,"v":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"b":6,"v":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"b":7,"v":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"b":8,"v":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.51]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.73]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, +{"f":194,"b":[{"b":0,"v":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"b":1,"v":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"b":2,"v":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"b":3,"v":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"b":4,"v":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"b":5,"v":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"b":6,"v":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"b":7,"v":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"b":8,"v":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.12]}},{"b":11,"v":{"DEFAULT":[4.19]}},{"b":12,"v":{"DEFAULT":[1.27]}},{"b":13,"v":{"DEFAULT":[30.28]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[235.9]}}]}, +{"f":195,"b":[{"b":0,"v":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"b":1,"v":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"b":2,"v":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"b":3,"v":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"b":4,"v":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"b":5,"v":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"b":6,"v":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"b":7,"v":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"b":8,"v":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"b":9,"v":{"DEFAULT":[1.88]}},{"b":10,"v":{"DEFAULT":[10.98]}},{"b":11,"v":{"DEFAULT":[19.28]}},{"b":12,"v":{"DEFAULT":[9.94]}},{"b":13,"v":{"DEFAULT":[93.05]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[565.4]}}]}, +{"f":196,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"b":1,"v":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"b":2,"v":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"b":3,"v":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"b":4,"v":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"b":5,"v":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"b":6,"v":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"b":7,"v":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"b":8,"v":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.22]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[42]}}]}, +{"f":197,"b":[{"b":0,"v":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"b":1,"v":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"b":2,"v":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"b":3,"v":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"b":4,"v":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"b":5,"v":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"b":6,"v":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"b":7,"v":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"b":8,"v":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[3.94]}},{"b":13,"v":{"DEFAULT":[34.52]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, +{"f":198,"b":[{"b":0,"v":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"b":1,"v":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"b":2,"v":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"b":3,"v":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"b":4,"v":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"b":5,"v":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"b":6,"v":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"b":7,"v":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"b":8,"v":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[9.25]}},{"b":11,"v":{"DEFAULT":[9.25]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[85.79]}},{"b":14,"v":{"DEFAULT":[12.6]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, +{"f":199,"b":[{"b":0,"v":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"b":1,"v":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"b":2,"v":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"b":3,"v":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"b":4,"v":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"b":5,"v":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"b":6,"v":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"b":7,"v":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"b":8,"v":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.23]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.28]}},{"b":13,"v":{"DEFAULT":[16.62]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[63.8]}}]}, +{"f":200,"b":[{"b":0,"v":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"b":1,"v":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"b":2,"v":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"b":3,"v":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"b":4,"v":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"b":5,"v":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"b":6,"v":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"b":7,"v":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"b":8,"v":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.91]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.45]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, +{"f":201,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"b":1,"v":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"b":2,"v":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"b":3,"v":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"b":4,"v":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"b":5,"v":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"b":6,"v":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"b":7,"v":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"b":8,"v":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.55]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[64.2]}}]}, +{"f":202,"b":[{"b":0,"v":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"b":1,"v":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"b":2,"v":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"b":3,"v":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"b":4,"v":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"b":6,"v":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"b":7,"v":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"b":8,"v":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[19.21]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, +{"f":203,"b":[{"b":0,"v":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"b":1,"v":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"b":2,"v":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"b":3,"v":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"b":4,"v":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"b":5,"v":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"b":6,"v":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"b":7,"v":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"b":8,"v":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.17]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.72]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[95.8]}}]}, +{"f":204,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"b":1,"v":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"b":2,"v":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"b":3,"v":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"b":4,"v":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"b":5,"v":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"b":6,"v":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"b":7,"v":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"b":8,"v":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, +{"f":205,"b":[{"b":0,"v":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"b":1,"v":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"b":2,"v":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"b":3,"v":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"b":4,"v":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"b":5,"v":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"b":6,"v":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"b":7,"v":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"b":8,"v":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.92]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, +{"f":206,"b":[{"b":0,"v":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"b":1,"v":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"b":2,"v":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"b":3,"v":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"b":4,"v":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"b":5,"v":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"b":6,"v":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"b":7,"v":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"b":8,"v":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.79]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":207,"b":[{"b":0,"v":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"b":1,"v":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"b":2,"v":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"b":3,"v":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"b":4,"v":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"b":5,"v":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"b":6,"v":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"b":7,"v":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"b":8,"v":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.94]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[22.52]}},{"b":14,"v":{"DEFAULT":[8.5]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[38.5]}}]}, +{"f":208,"b":[{"b":0,"v":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"b":1,"v":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"b":2,"v":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"b":4,"v":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"b":5,"v":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"b":6,"v":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"b":7,"v":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"b":8,"v":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.11]}},{"b":13,"v":{"DEFAULT":[28.62]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.9]}},{"b":16,"v":{"DEFAULT":[87.1]}}]}, +{"f":209,"b":[{"b":0,"v":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"b":1,"v":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"b":2,"v":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"b":3,"v":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"b":4,"v":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"b":5,"v":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"b":6,"v":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"b":7,"v":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[22.22]}},{"b":14,"v":{"DEFAULT":[37.2]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, +{"f":210,"b":[{"b":0,"v":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"b":1,"v":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"b":2,"v":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"b":3,"v":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"b":4,"v":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"b":5,"v":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"b":6,"v":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"b":7,"v":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"b":8,"v":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[21.14]}},{"b":14,"v":{"DEFAULT":[37]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[72.1]}}]},]; +export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.31-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index 2f5e51777..c27a85587 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7804546356201172]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.701602935791016]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.71019172668457]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5199708938598633]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.9317398071289]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5480680465698242]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.554281234741211]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.273308753967285]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.8753814697265625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.40983867645264]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[29.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5130691528320312]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.736143112182617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.813131332397461]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.107969284057617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.137581825256348]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1247739791870117]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.668036460876465]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7355756759643555]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.707991600036621]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.677685737609863]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.124281883239746]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6573028564453125]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7305736541748047]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6972951889038086]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.674309730529785]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5228166580200195]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.828743934631348]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.853344917297363]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.118180274963379]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.39214515686035]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.130523681640625]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.716960906982422]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7943506240844727]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7830543518066406]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.90111541748047]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5638313293457031]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.954111099243164]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.021417617797852]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4622535705566406]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.714426040649414]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[158.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324434280395508]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.462996482849121]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.562638282775879]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.427117347717285]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.9520902633667]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873327255249023]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.926417350769043]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.02712345123291]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.81550884246826]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.81212329864502]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6102790832519531]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8133621215820312]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8695192337036133]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.805999755859375]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.58242130279541]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9693546295166016]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.970414161682129]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.971555709838867]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.0195112228393555]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.955989837646484]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.061036109924316]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.67124080657959]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.875746726989746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37116622924805]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.15918731689453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.83461952209473]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.78805637359619]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.84860897064209]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.3020715713501]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.81596851348877]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6466579437255859]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.498262405395508]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527353286743164]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7978572845458984]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.282408714294434]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7144250869750977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6487512588500977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8291072845458984]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.557438850402832]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.016355514526367]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8701353073120117]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7321882247924805]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.816035270690918]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0977239608764648]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.59339427947998]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6688327789306641]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.670557975769043]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7514867782592773]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9825620651245117]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.584179878234863]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7170677185058594]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.533288955688477]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.564603805541992]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2497005462646484]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.277915954589844]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5033645629882812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.850752830505371]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8534669876098633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6313543319702148]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.648594856262207]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6040544509887695]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7080955505371094]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7008790969848633]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8054409027099609]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.81447124481201]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8540573120117188]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.365616798400879]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.400456428527832]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.478118896484375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.693777084350586]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[346.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5662965774536133]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2286481857299805]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.213926315307617]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7100896835327148]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.953502655029297]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.805506706237793]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.225713729858398]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.314657211303711]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3121767044067383]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.35826873779297]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7443227767944336]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.964658737182617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.985597610473633]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6676416397094727]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.838895797729492]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[168.7]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.624821662902832]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9079294204711914]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.951869010925293]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.684422492980957]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.05843448638916]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.6]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6143827438354492]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8971624374389648]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9390954971313477]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6891355514526367]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012824058532715]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.8]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6010408401489258]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.990011215209961]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.036379814147949]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6422033309936523]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.496575355529785]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6637563705444336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.671767234802246]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.705085754394531]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9576692581176758]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.76193714141846]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6486625671386719]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.666378974914551]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.765705108642578]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0226306915283203]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.158863067626953]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.223213195800781]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.164497375488281]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.164779663085938]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.134173393249512]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.93343734741211]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[984.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5754966735839844]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3913002014160156]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4268722534179688]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6977405548095703]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95158290863037]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5823783874511719]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1282949447631836]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1071624755859375]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7695455551147461]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.758095741271973]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6561355590820312]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.627976417541504]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.562768936157227]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9666309356689453]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.449618339538574]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.24592399597168]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.192009925842285]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.230036735534668]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.256852149963379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.08543586730957]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5869245529174805]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.182247161865234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.211800575256348]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.062032699584961]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.04022979736328]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7273960113525391]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9033660888671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.225467681884766]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2966690063476562]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.970210075378418]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2997455596923828]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.730719566345215]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.281462669372559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.125727653503418]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24367809295654]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291213989257812]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2711753845214844]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2019948959350586]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8175430297851562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.761988639831543]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6350555419921875]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.248970031738281]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.884618759155273]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9016351699829102]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.34021282196045]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5972061157226562]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.045897483825684]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.071386337280273]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1606311798095703]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1229887008667]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5451717376708984]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9681663513183594]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.066629409790039]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6433811187744141]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.880518913269043]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8460683822631836]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.643153190612793]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6214113235473633]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.073225975036621]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.009462356567383]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.622044563293457]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.002596855163574]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.010848045349121]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.835902214050293]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.299354553222656]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5836181640625]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7753381729125977]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8468399047851562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7773532867431641]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.121651649475098]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.6,23.6,24.2,24,23.2,23.4,23.6,23.7,23.4,23.4,23.7,23.5,23.4,23.5],"script":[1.8,1.9,1.9,1.8,2.1,1.9,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.9,1.9],"paint":[21.1,21.3,21.3,22,21.6,21,21.2,21.4,21.4,21.1,21.2,21.4,21.3,21.2,21.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.5,26.7,27.1,26.9,27.1,26.5,26.7,26.6,26.9,26.7,26.6,27,26.7,26.3],"script":[4,4.1,4.1,4.1,4.1,4,4,4,4,4,4,4,4.2,4.2,4],"paint":[21.9,22,22.2,22.5,22.4,22.6,22.1,22.3,22.1,22.5,22.3,22.2,22.5,22.1,21.9]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.3,10.5,10.4,10.9,11.3,11,11,11,11,10.3,11,12.2,10.9,10.9],"script":[1.4,0.9,1.1,0.9,1.3,1.7,1.6,1.2,1.3,1.1,1.2,1.4,1.5,1.1,1.3],"paint":[8.7,7.9,8.8,8.5,8.4,7.8,8.5,8.3,7.4,8.5,7.5,8.9,9.8,7.5,9]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.8,3.1,2.7,2.6,2.2,2.9,2.9,2.5,2.9,3,3.2,2.6,3,2.5,2.5,2.7,3.1,3.3,3.6,2.8,3.1,3,3],"script":[0.2,0.8,0.7,0.6,0.8,0.2,0.2,0.6,0.6,0.2,0.8,1.2,1,0.7,0.2,0.8,1,0.6,0.2,1,1.5,0.8,0.9,0.2,0.2],"paint":[2.4,0.9,2,2.2,1.3,1.9,1.9,1.8,1.6,1.3,2,1.7,1.5,1.7,2.6,1.6,1.4,1.4,2.8,2,1.4,1.4,1.5,2.6,1.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.1,13.8,13.2,13.6,14,13.4,13.4,13.9,13.8,13.4,13.7,13.4,13.6,13.6],"script":[1.2,0.9,0.9,0.8,0.6,1.2,1.2,0.9,1.2,1,0.7,0.7,0.6,1.2,0.7],"paint":[11.1,11,11.6,10.9,11.3,11.8,10.6,11.4,11.7,12.2,11.7,12,11.1,10.3,11.9]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.7,10.9,10.3,10.3,10.4,10.6,10.7,10.4,11.1,10.7,10.7,10.7,10.2],"script":[0.5,0.5,0.4,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5],"paint":[9.7,9.3,9.9,9.8,9.2,9.3,9.4,9.6,9.6,9,9.6,9.5,9.7,9.4,8.8]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.9,259.8,261.1,259.5,260.7,260.3,257.3,263.2,260.2,260.4,258.6,259,259.6,262.2],"script":[27,26.6,27.1,26.9,26.7,27.2,27,26.6,26.9,26.8,27.7,26.6,27.2,26.8,27.5],"paint":[225.1,224.9,224.8,226.7,225.3,226.2,225.8,223.2,229.1,226,225.3,224.6,223.6,225.5,227.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.2,28.5,28.5,28.1,28.3,28.4,28.3,28.1,27.8,28.7,28.3,28.5,29.1,28.2,28],"script":[2.1,2,2.1,2.1,2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.1,2],"paint":[25.3,25.7,25.6,25.4,25.5,25.5,25.4,25.3,24.9,25.8,25.5,25.6,26.1,25.4,25.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.1,10.4,10.4,10.6,10.2,10.1,9.8,10.3,10.7,11,10.4,10.3,10.6],"script":[8.7,8.2,8.6,8.8,8.2,8.5,8,8.4,8,7.9,8.8,9.1,8.5,8.5,8.4],"paint":[1.1,1.4,0.6,0.7,1.2,1.4,1.5,1.5,0.2,1.8,0.3,0.7,1,0.3,1.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6181764602661133]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2898378372192383]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3076887130737305]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7200803756713867]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.628085136413574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.5]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.1,32.3,31.8,32.2,31.8,31.3,31.5,31.8,31.9,32.1,31.7,31.7,32.4,32.4,31.8],"script":[9.6,10.3,9.8,10.5,10.1,9.7,9.7,10.3,10.2,10.1,9.6,10.1,10.4,10.5,9.7],"paint":[21,21.4,21.5,21.2,21.2,21.1,21.3,21,21.2,21.5,21.5,21,21.5,21.3,21.7]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.5,39.4,39.1,39.4,39.1,39.4,39.1,39.6,39.1,39.6,39.3,39.8,39.9,39.3],"script":[15.7,15.8,15.8,15.4,15.7,15.6,15.8,15.4,15.8,15.5,16,15.4,16,15.9,15.4],"paint":[23.2,23.1,23,23.1,23.2,23,23.1,23.2,23.3,23,23,23.4,23.3,23.5,23.3]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,11.5,10.3,11.2,10.9,11.3,11,13.9,11.3,11.2,10.9,13.3,11.4,10.3],"script":[0.2,0.8,1.4,0.8,1.3,1.1,0.9,0.8,1.3,0.9,0.6,0.6,1.5,1,0.6],"paint":[9.6,8.8,9.1,8.4,8.7,8.8,9,8.5,11.9,9.8,9.9,9.1,11.3,9.1,8.7]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.9,2.1,2.4,2.2,2.4,2.6,2.4,1.9,2.5,2.7,2.3,2.7,2.8,2.5,2.7,2.7,2,2.6,2.2,2.4,1.8,3.4,2.2,2.1,2.7],"script":[1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,1,0.1,0.1,0.4,0.1,0.1,0.4,0.3,0.1,0.3,0.9,0.1,0.1,0.1],"paint":[1.6,1.9,1.3,1.1,1.5,2.4,2.2,1.7,1.6,2.5,1.4,1.5,2.6,2.3,1.4,2.2,1.1,2.1,1.7,2.2,1.4,1.8,2.1,1.9,1.6]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15,15.4,15.3,16.1,16.3,14.9,14.5,16.1,15.9,15.9,15.2,16.1,15.6,14.7],"script":[2.4,2.4,1.9,1.6,2.4,2.6,2,1.5,2,2.4,2.7,1.7,2.5,2.4,2.1],"paint":[12.5,11.4,12,12.7,12.4,12.8,10.5,11.1,12.3,12.4,12.2,12.2,12.1,11.6,11.3]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,11.6,11.6,11.9,11.8,11.5,12.1,11.6,11.6,11.6,11.6,11.8,11.5,11.5,11.3],"script":[1.3,1.3,1.5,1.4,1.5,1.2,1.3,1.2,1.3,1.4,1.3,1.4,1.2,1.2,1.3],"paint":[10.7,9.5,9.4,9.5,9.6,9.2,10.5,9.6,9.6,9.6,9.4,9.4,9.4,9.4,9.5]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[334.6,337.4,335.4,334.3,337.2,336.1,337,337.6,338.2,336.2,340.5,334.4,341.2,336.2,337.6],"script":[109.5,107,110.1,109.1,110.6,110.6,110.9,110.9,112.7,111.2,112.4,110.5,113,110.1,111.9],"paint":[218.2,223.1,218.4,218.2,219.6,218.6,218.9,219.4,218.7,218,221,217.2,220.5,219,218.8]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.8,41.5,41.8,42.4,42.2,42.2,42.9,42.3,43.6,42.6,42.5,41.9,42.7,42.7],"script":[14.8,15.4,14.6,14.6,15.2,15.2,14.9,15.6,15.1,15.7,15,15.2,14.6,15.5,15.1],"paint":[26.5,26.5,26,26.2,26.3,26.1,26.4,26.3,26.4,27,26.6,26.3,26.4,26.3,26.7]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,20.9,20.3,20.3,20.8,20.4,19.6,19.5,19.4,20.6,22.1,21.2,22.1,19.9,23.4],"script":[18.2,18.9,18.9,18.5,19.2,18.7,17.7,18.1,17.9,18.7,20.4,18.9,20,18.1,21.2],"paint":[0.7,1.4,0.2,1.6,0.7,0.7,1,1.3,0.7,0.9,0.7,0.7,0.9,1,1.9]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6376876831054688]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.452821731567383]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.477481842041016]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0061759948730469]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12068462371826]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.9]}},{"framework":"karyon-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120527267456055]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.639345169067383]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.597149848937988]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2624378204345703]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27529335021973]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7621994018554688]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.204743385314941]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.142613410949707]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0129585266113281]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.105714797973633]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.346522331237793]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.221152305603027]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.326862335205078]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09367561340332]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.92218017578125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[629.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1626176834106445]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.758243560791016]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.336838722229004]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.6927289962768555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.66135883331299]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[172.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7741727828979492]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514687538146973]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.531018257141113]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.546525001525879]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.217732429504395]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808300018310547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8559751510620117]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8668041229248047]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8445272445678711]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.080493927001953]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5732936859130859]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.635763168334961]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6673450469970703]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7030305862426758]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.04368019104004]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.61370849609375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.043519973754883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.083294868469238]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7266397476196289]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.91557216644287]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8143367767333984]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.359827995300293]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3946762084960938]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3741464614868164]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8940372467041]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5458879470825195]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4669437408447266]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5476388931274414]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7141580581665039]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.016407012939453]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7609901428222656]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6951465606689453]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653345108032227]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.031198501586914]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.497085571289062]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8166971206665039]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1328773498535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.152883529663086]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.12255859375]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.638179779052734]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5943021774291992]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6553211212158203]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.596734046936035]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7271127700805664]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.3585844039917]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891357421875]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4300975799560547]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.464888572692871]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.756587028503418]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.3368558883667]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986108779907227]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.995802879333496]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0202550888061523]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7451982498168945]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.160560607910156]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559391975402832]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3419933319091797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.352231979370117]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7482967376708984]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.106847763061523]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5811967849731445]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.099721908569336]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.533857345581055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.157256126403809]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.772847175598145]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[480.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5696544647216797]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3488950729370117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3947219848632812]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350568771362305]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.2009334564209]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6427574157714844]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9780378341674805]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.41512393951416]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8950672149658203]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1475133895874]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716001510620117]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9543943405151367]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.990999221801758]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1730737686157227]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.811062812805176]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.845004081726074]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.797246932983398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.787343978881836]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314798355102539]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.49604606628418]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.1]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5517683029174805]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.006746292114258]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02640438079834]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.761540412902832]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.84206199645996]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"01_run1k","values":{"total":[37.9,37.5,34.8,35,38.1,36,33.8,29.4,29,35.2,36.8,34.7,35.5,35.4,36.6],"script":[6,6.9,7.2,6.8,6.3,6.5,6.9,6.9,6.5,6.9,6.4,7,6.8,6.7,6.7],"paint":[21.1,21.4,21.8,21.7,21.2,21.5,21.6,21.9,22.1,21.8,22.1,22.2,21.9,22.3,21.6]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.8,33.9,33.4,33.5,33.7,33.7,33.3,33.9,32.9,33.7,34.6,33.9,32.5,33.7],"script":[8.4,8,8.6,9,8.4,8.9,8.7,8.5,9.1,8.4,9.1,9.2,8.7,9.1,8.7],"paint":[22.8,22.9,23.3,22.7,22.8,22.9,22.9,22.7,23.2,22.6,22.8,23.5,23.3,22.5,23.2]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,10.4,10.5,11.2,10.2,10.7,10.8,11.1,10.3,10.1,11,11.2,10.2,9.9],"script":[0.7,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.1,0.1,0.1,0.9,0.1,0.1,0.1],"paint":[8.7,9.1,8.8,9.5,9.1,8.7,9.4,8.1,9.4,9.1,9.1,8.4,9.5,9.3,9.2]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.8,2.1,1.9,1.5,2.3,2.6,2.5,2.3,1.8,1.8,2.7,2.2,1.8,1.9,2.4,2.7,2.7,2.4,2.7,2.3,2.6,2.5,2.7,2.1],"script":[0,0,0,0,0,0,0.5,0.4,0.2,0,0.5,0,0,0.2,0,0.8,0,0,0.2,0,0,0,0,0,0],"paint":[1.1,2.6,1.6,1.8,1.3,2.2,1.6,1.9,1.6,1.5,0.7,2.5,1.6,1.1,1,1.1,2.4,1.5,1.7,2.6,1.3,2.5,1.7,1.6,1.3]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.3,12.7,12,13,13.2,13.6,13,12.9,13.3,13.4,13.7,13.8,13],"script":[0.1,0.1,0.8,0.8,0.1,0.1,0.7,0.1,0.3,0.1,0.1,0.5,0.8,0.1,0.1],"paint":[11.9,12.3,11,11,10.7,11.7,12.2,12.3,11.2,11.4,12.3,11.1,11.6,12.8,11.7]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10,10.9,10.3,10.4,10.3,10.5,10.4,10.3,10.3,10.2,10.1,10.2,10.2,10.5],"script":[0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.9,8.9,9.3,9.6,9.2,9.6,9.7,9.9,9.4,9.5,9.6,9.5,9.4,9.5,9.8]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"07_create10k","values":{"total":[293.3,290.9,686.2,670.7,716,293.5,292.7,292.2,731.5,295.1,292.8,679.9,717.8,292.5,294.7],"script":[63.2,67,69,68.6,69.9,68.3,69.6,68.9,69.4,69.3,70.1,70.6,68.5,68.7,70.5],"paint":[226.5,220.3,233,226.7,233.1,221.8,219.7,219.9,239.7,221.7,219.3,227,236.8,220.3,220.2]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[79.3,80.3,78.9,63.7,63.2,62.2,78.4,79.2,81,81,80.6,80.1,62.4,62.2,63.4],"script":[13.6,14,13.9,15,14.6,14.8,13.8,14.3,14.4,14.5,14.5,14.5,14.3,14.8,15.2],"paint":[47,47.2,47.4,48.1,48,46.9,47.2,47.5,47.1,47.3,47.2,47,47.6,46.9,47.6]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,12.1,9.4,10.8,10.8,11.6,11,10.9,9.9,10.6,10.5,11,10.2,12.1,11],"script":[8.4,10.1,7.4,8.8,8.4,9.5,9.3,8.7,7.6,8.7,8.4,8.4,8.4,10.2,8.9],"paint":[0.9,1,0.3,0.7,1,1.4,0.2,1.1,2.1,0.9,1,1.7,1,1,0.3]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6754522323608398]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.57247257232666]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5304746627807617]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9933366775512695]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.068440437316895]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.1]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.6]}},{"framework":"native-document-v1.0.26-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3768415451049805]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9089555740356445]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.006411552429199]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.664393424987793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.281550407409668]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8808250427246094]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.412508964538574]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.379556655883789]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3287086486816406]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.82754898071289]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6093864440917969]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1005859375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1675643920898438]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8215188980102539]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.911052703857422]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6112041473388672]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.630006790161133]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6469058990478516]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8258380889892578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.059950828552246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5529890060424805]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6205806732177734]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6707963943481445]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7532625198364258]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.285937309265137]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6028232574462891]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3534278869628906]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3900232315063477]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7610569000244141]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.110946655273438]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7053070068359375]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.741999626159668]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819445610046387]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0216350555419922]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14742183685303]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[61.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6606159210205078]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.066756248474121]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.1287031173706055]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9392509460449219]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.17781448364258]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0705327987670898]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.213217735290527]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.171822547912598]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.850666046142578]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.49588871002197]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[97]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.493072509765625]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.979111671447754]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.988943099975586]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.267091751098633]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92032623291016]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2026329040527344]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.71860122680664]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.780943870544434]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1373291015625]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.16176223754883]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[236.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8456459045410156]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.642852783203125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.352056503295898]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.254793167114258]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14303493499756]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[366.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1720056533813477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5933122634887695]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.076066017150879]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9302043914794922]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.46361541748047]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1551103591918945]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.696261405944824]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.056138038635254]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9550657272338867]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.36069107055664]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1485328674316406]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.454543113708496]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.905866622924805]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8971290588378906]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.618470191955566]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149296760559082]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.548349380493164]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.022992134094238]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9739532470703125]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.693784713745117]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1119604110717773]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.776449203491211]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.215978622436523]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8903913497924805]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.485578536987305]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3924837112426758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.217677116394043]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.776643753051758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.790724754333496]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.65873908996582]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5546188354492188]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.266175270080566]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.719915390014648]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.327932357788086]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60484313964844]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.706192970275879]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.142668724060059]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.690890312194824]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5411376953125]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.52224922180176]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[339.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3005762100219727]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.664432525634766]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.321878433227539]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.131575584411621]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.59714126586914]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2187995910644531]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9862823486328125]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.48721981048584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9865007400512695]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.38824653625488]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4026451110839844]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433895111083984]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.923381805419922]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4295148849487305]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.440735816955566]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3411483764648438]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.627699851989746]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.318523406982422]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1759376525878906]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.23661422729492]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2366905212402344]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.465743064880371]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.834593772888184]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9212417602539062]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.453356742858887]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1553611755371094]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069391250610352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5186967849731445]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8899574279785156]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.145355224609375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[201.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2711639404296875]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.945793151855469]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.462956428527832]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.493075370788574]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38289165496826]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1685962677001953]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.165302276611328]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.766231536865234]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9219512939453125]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.0153112411499]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4591541290283203]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.295771598815918]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.019558906555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9407882690429688]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.012826919555664]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[288.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5745954513549805]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524754524230957]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.56618595123291]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.457036018371582]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.163437843322754]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5900392532348633]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5230064392089844]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6323060989379883]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6587820053100586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.013845443725586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5166263580322266]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.848897933959961]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7722158432006836]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8737955093383789]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.89602756500244]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189994812011719]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.743117332458496]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7696313858032227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9182825088500977]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807257652282715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986251831054688]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7760190963745117]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7920351028442383]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8317422866821289]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.40744113922119]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6555957794189453]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3754215240478516]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3842382431030273]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0908498764038086]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.84324836730957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9399089813232422]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.937980651855469]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048296928405762]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.135258674621582]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.631184577941895]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9799919128417969]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.601199150085449]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6909961700439453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.193359375]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.856722831726074]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7831344604492188]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.507598876953125]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.20376205444336]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.345932006835938]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.56476402282715]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[383]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7422494888305664]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8279829025268555]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8233327865600586]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.529299736022949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.334200859069824]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5636606216430664]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7526893615722656]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760098457336426]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7322492599487305]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.45913600921631]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44667720794677734]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5003862380981445]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.515448570251465]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3591156005859375]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.981186866760254]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49529266357421875]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.724177360534668]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.772085189819336]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7226696014404297]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.072800636291504]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644826889038086]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9609222412109375]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0113658905029297]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8396015167236328]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.660969734191895]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5724029541015625]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8287076950073242]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8366403579711914]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6594877243041992]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.626521110534668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.753408432006836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.064512252807617]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140619277954102]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5818614959716797]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.95647621154785]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508296966552734]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.580999374389648]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.56385612487793]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0833606719970703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.512922286987305]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[112.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6940650939941406]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.597169876098633]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6483497619628906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.053060531616211]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.755897521972656]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7459735870361328]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2724952697753906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3015480041503906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3401260375976562]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.492534637451172]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6621389389038086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624574661254883]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.641482353210449]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8375263214111328]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.52980899810791]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5277957916259766]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7687768936157227]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8084239959716797]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.872105598449707]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.35142421722412]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6152744293212891]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.918811798095703]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.979991912841797]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4369192123413086]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.5925874710083]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7590389251708984]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.873154640197754]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.86092472076416]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.515194892883301]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.585633277893066]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3347587585449219]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1276721954345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1886863708496094]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7997112274169922]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.539783477783203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[175.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48917293548583984]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.166651725769043]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.193112373352051]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6436395645141602]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86898136138916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6073207855224609]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7855224609375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7842607498168945]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7987785339355469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.59042453765869]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6901874542236328]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8683900833129883]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8625049591064453]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8650588989257812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.65694522857666]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.4]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6036882400512695]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7007579803466797]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.730854034423828]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8720874786376953]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.16014575958252]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8477945327758789]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1807260513305664]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.205763816833496]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1345634460449219]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.75906753540039]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1450309753417969]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.065735816955566]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.735942840576172]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8616676330566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.863115310668945]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164.4]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.2,23,22.9,23.1,23.2,22.8,22.6,22.5,23.2,22.9,23,22.8,23,22.7,22.9],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.3,21.1,21.4,21.4,21,20.9,20.7,21.4,21.2,21.2,21.1,21.3,20.9,21.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.6,25.4,26,25.9,25.9,25.7,26.2,25.7,25.4,25.9,25.8,25.6,26.1,25.7],"script":[3.3,3.2,3.3,3.4,3.4,3.3,3.4,3.5,3.4,3.2,3.2,3.5,3.4,3.3,3.4],"paint":[22,22,21.7,22.2,22.1,22.2,21.8,22.3,21.9,21.7,22.2,21.9,21.9,22.4,21.9]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,8.9,10.5,10.2,10.2,10.3,10.3,11,10.8,10.5,9.6,10.5,10.9,10.1,9.9],"script":[0.1,0.1,0.7,0.5,0.6,0.4,0.1,0.1,0.8,0.6,0.4,0.1,0.8,0.6,0.1],"paint":[8.7,7.6,8.5,8.8,7.9,8.1,9.9,9.8,9,8.6,8.2,9.4,8.8,8.1,8.8]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.6,2.6,2.7,2.1,2.7,2.4,2.4,2.9,2.7,1.8,2.5,2.7,2.2,3,2.2,2.4,2.1,3.2,2.1,3.1,2.5,3.1,2.5,2.4],"script":[0.8,0.1,0.5,0.1,0.1,0.1,0.5,0.7,1,0.8,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,1,0.6,1.1,0.1,0.9,0.1,0.1],"paint":[1.1,1.9,1.1,2.4,1.5,2.4,1.1,1.6,1.8,1.8,1.6,1.4,2,2,2.2,1.2,1.2,1.9,2,1.3,1.9,1.6,2.1,1.8,1.5]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12,12.2,12.5,12.4,11.6,12.5,12.9,12.5,12.5,12.3,12.5,12.3,12.8,11.7,12.3],"script":[0.1,0,0,0.2,0.1,0.4,0.1,0.1,0,0.1,0.1,0,0.1,0,0],"paint":[11.3,10.9,10.9,11,11,11.1,11.8,10.9,11.3,10.6,11,10.4,11.8,9.9,10.8]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.6,10.3,9.9,10.2,10.2,10.5,10.4,10.4,10.1,10.1,10.3,10.2,10.1],"script":[0.5,0.1,0.3,0.4,0.1,0.3,0.1,0.3,0.3,0.5,0.3,0.3,0.3,0.1,0.3],"paint":[9.5,9.8,9.5,9.3,9.4,9.2,9.6,9.6,9.4,9.5,9.1,9.4,9.5,9.5,9.4]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[239.1,239.6,238.2,237.2,236.8,239.5,239,237.7,237.6,236.6,238.3,238.8,237.7,240.4,239.1],"script":[15,15.3,15.3,15.3,15.3,15.2,15.1,15.2,15.1,14.9,15.1,15.2,15.1,15.2,15.1],"paint":[216.6,216.7,215.7,214.4,214.2,217.1,216.5,215.2,215.2,214.3,215.9,216.2,215.2,218,216.6]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,26.4,26.6,26.7,26.6,26.6,27.1,27,27.1,26.7,26.9,26.8,26.9,27.1],"script":[1.4,1.4,1.4,1.3,1.4,1.3,1.3,1.4,1.4,1.5,1.4,1.3,1.4,1.5,1.3],"paint":[24.9,24.7,24.3,24.5,24.6,24.5,24.5,24.9,24.9,24.9,24.6,24.8,24.6,24.7,25]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,10.6,9,9,9.6,9.4,9.2,9.4,9.2,8.9,9,9.5,9.6,8.7,9.3],"script":[7.5,8.5,6.9,6.8,8,7.3,7.6,7.8,7.9,7,7.3,7.4,7.7,7.2,7.7],"paint":[1.9,1.1,2,1.3,0.6,1.5,0.8,0.6,1.1,1.7,0.2,1.9,0.6,0.2,0.6]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5507440567016602]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9251909255981445]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9434776306152344]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950946807861328]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.010366439819336]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47638511657714844]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7882747650146484]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.800760269165039]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5741634368896484]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.478334426879883]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[22.8,23.2,22.7,23.1,23.2,23.3,23,23,23.2,22.6,22.8,22.8,23,22.8,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.4,1.3],"paint":[21.1,21.5,21,21.3,21.5,21.6,21.2,21.1,21.4,20.9,21.1,21.1,21.3,21.1,21]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.7,25.6,25.8,25.9,25.7,25.7,25.9,26,25.8,25.8,25.6,25.8,26,25.7],"script":[3.4,3.4,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.2,3.3,3.2,3.3,3.4,3.4],"paint":[22.3,21.9,22,22.1,22,21.8,22.1,22,22.3,22.1,22,22,22.1,22.2,21.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,9.1,10.2,10.8,10,9.7,10.7,9.7,10.4,10.1,9.4,10.4,10,9.2,9.5],"script":[0.6,0.1,1,0.9,0.1,0.4,0.1,0.4,0.1,0.1,0.8,0.5,0.1,0.1,0.1],"paint":[8.4,7.7,7.7,8.8,8.9,8.3,8.5,7.1,9.3,8.8,7.5,8.8,8.3,8.1,8]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2.1,2.3,2.1,2.4,2.2,2.3,2.3,2.2,2.7,2.3,2.5,1.8,2,2.5,1.8,2.6,2.5,1.4,2.4,2.6,1.8,2.1],"script":[0.6,0.6,0,0.7,0,0,0,0,0.3,0.4,0,0.9,0,0,0,0.1,0,0,0.7,0,0,0.5,0,0,0],"paint":[1.4,1.4,1.1,1.4,1.4,1.5,1.6,0.9,1.9,1.7,1.1,1.6,1.9,2.1,1.1,1.8,1.7,1,1.7,1.4,1.3,1.4,1.7,1.2,1.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,12.7,12.4,13.2,13.3,12.3,12.5,13.1,13,13.3,12.9,12.2,12.8,12.5],"script":[1,0.1,0.1,0.1,0.8,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.5],"paint":[10.5,11.5,11.5,11.4,10.9,10.2,10.3,11.6,12,12,11.8,11.2,10.9,11.8,11.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,9.7,10.2,9.9,10.1,10.1,10.2,10,10.6,9.8,10.2,10.1,10.2],"script":[0.2,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0,0.3,0.1],"paint":[9.3,9.6,9.4,9.1,9.3,9.2,9.4,9.6,9.3,9.2,9.7,8.8,9.6,9.2,9.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[236.8,235.2,236,236.5,237.5,236.2,237.4,237.2,236.4,235.6,236,237.1,235.8,239.5,238],"script":[13.6,13.7,13.8,13.9,14,13.5,14,13.6,13.8,13.6,13.8,13.9,13.6,13.9,13.8],"paint":[215.7,214.2,214.8,215.3,216.2,215.1,216,216.3,215.1,214.7,214.9,215.2,214.8,218.3,216.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.6,26.9,26.5,27,26.6,26.7,26.7,26.5,26.7,26.2,27.2,26.8,27.4,26.6],"script":[1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.2,1.2,1.3,1.2,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.9,24.5,25,24.6,24.7,24.7,24.5,24.7,24.2,25.2,24.8,25.4,24.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.4,9.1,8.8,8.6,8.8,10,9.9,9.5,9.2,10,8.7,8.8,9.9,9],"script":[7.3,7,7.3,7.3,6.5,7.3,8.5,7.6,7.4,6.9,7.6,7,7.2,7.8,7],"paint":[2,1.4,1.3,0.7,1.2,0.2,0.2,1.7,0.8,1.2,1.3,1.1,1.1,1.9,1.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5235042572021484]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.745779037475586]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7604541778564453]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6278553009033203]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.108202934265137]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5011138916015625]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.886707305908203]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8896007537841797]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.967710494995117]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.35887145996094]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5606784820556641]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.077930450439453]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0020751953125]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6400337219238281]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.02220344543457]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5435400009155273]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4081945419311523]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.415799140930176]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6559877395629883]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.456475257873535]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6525955200195312]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.329913139343262]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.431464195251465]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9340553283691406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.395493507385254]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547258377075195]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8578271865844727]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.893484115600586]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.171834945678711]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.646581649780273]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.858922004699707]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.2211503982543945]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.294930458068848]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1289901733398438]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47651290893555]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6976604461669922]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1021785736083984]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1319971084594727]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0184268951416016]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.264480590820312]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8884353637695312]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.206464767456055]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.310001373291016]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3989458084106445]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.71572971343994]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6967668533325195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0440711975097656]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.049104690551758]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.017533302307129]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.606117248535156]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5344572067260742]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0962209701538086]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1608314514160156]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9999885559082031]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.329374313354492]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7229738235473633]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.952317237854004]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.981106758117676]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.804966926574707]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.926068305969238]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7915868759155273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.451281547546387]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.522219657897949]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.931109428405762]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.072813987731934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[254.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7813653945922852]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.571454048156738]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.818474769592285]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.123181343078613]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.289931297302246]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5997714996337891]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6279382705688477]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.648758888244629]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9460687637329102]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28592014312744]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.7]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6085071563720703]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.307554244995117]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.346816062927246]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.470423698425293]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.880990982055664]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214570999145508]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.381025314331055]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.412445068359375]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8747434616088867]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.216437339782715]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6295204162597656]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.458812713623047]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5467529296875]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8539962768554688]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.912774085998535]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873994827270508]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.84391975402832]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.586036682128906]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.7777156829834]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.78382110595703]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.581995964050293]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.834000587463379]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.868013381958008]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8090496063232422]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.783058166503906]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.326578140258789]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.403861045837402]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.421059608459473]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.734299659729004]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.573543548583984]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[286.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5573406219482422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.598541259765625]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6989078521728516]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.09844970703125]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.94937801361084]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9995946884155273]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.862215042114258]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.931148529052734]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.45145320892334]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.7168960571289]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[281.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7736759185791016]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.832524299621582]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.903874397277832]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9832029342651367]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.362706184387207]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[405.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8214540481567383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4175710678100586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4391775131225586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0100765228271484]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.646400451660156]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184892654418945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3724746704101562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3656005859375]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7752017974853516]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.36058521270752]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"01_run1k","values":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"02_replace1k","values":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"04_select1k","values":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"05_swap1k","values":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"07_create10k","values":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9189090728759766]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[29.282416343688965]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[29.73321533203125]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6006050109863281]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[615.4609441757202]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[95.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.554840087890625]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8832197189331055]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8928709030151367]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6064558029174805]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.304900169372559]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7556791305541992]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3518762588500977]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.403101921081543]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9692201614379883]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032843589782715]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[31.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5912494659423828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.21185302734375]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2321176528930664]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7253131866455078]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.117511749267578]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8239517211914062]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32576847076416]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.9292497634887695]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.437203407287598]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.644211769104004]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6649494171142578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742987632751465]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.677057266235352]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.68896484375]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.78525447845459]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6475505828857422]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6502647399902344]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.714531898498535]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9943656921386719]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.85181999206543]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741670608520508]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.3793487548828125]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.447455406188965]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.195226669311523]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.441566467285156]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6582546234130859]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.616334915161133]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.617406845092773]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9659233093261719]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44912242889404]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7284231185913086]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9187450408935547]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.177557945251465]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2905149459838867]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.940454483032227]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8502740859985352]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.832951545715332]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.212776184082031]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.941891670227051]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.32406997680664]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[127.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[131.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"01_run1k","values":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"02_replace1k","values":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"07_create10k","values":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6084270477294922]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.09062385559082]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.118589401245117]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2077388763427734]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.88510036468506]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8438358306884766]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634610176086426]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.601742744445801]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.4910831451416016]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.837151527404785]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.381065368652344]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.913834571838379]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.110092163085938]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.658964157104492]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.854068756103516]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1073.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5340757369995117]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7833290100097656]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8382272720336914]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.783665657043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.119430541992188]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7088127136230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.159454345703125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.144804000854492]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8786163330078125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.776725769042969]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764277458190918]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.491896629333496]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.561244010925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9316511154174805]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64506435394287]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615772247314453]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.752252578735352]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.325299263000488]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.695610046386719]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.64689350128174]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[174.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6857204437255859]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.820673942565918]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8494300842285156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8222379684448242]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.926042556762695]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5542526245117188]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6002445220947266]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.618154525756836]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6867952346801758]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.815208435058594]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5163745880126953]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0778989791870117]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.322443962097168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6873941421508789]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.998469352722168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5523490905761719]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8252363204956055]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.750547409057617]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8201675415039062]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.75911235809326]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5964336395263672]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9866714477539062]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0264739990234375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7047748565673828]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.15754222869873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7415637969970703]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9501514434814453]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9785375595092773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9895973205566406]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.885876655578613]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.2]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5828189849853516]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.123703002929688]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.548064231872559]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.164665222167969]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.81257915496826]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[479.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.8413171768188477]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.800344467163086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.78706169128418]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314901351928711]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.51369857788086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[284.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6319818496704102]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.47098445892334]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.44230842590332]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4199934005737305]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.68405723571777]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.395395278930664]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.846027374267578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048587799072266]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.613348960876465]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.197758674621582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.999262809753418]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.219165802001953]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.098799705505371]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.778217315673828]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14489555358887]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2025566101074219]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.733373641967773]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.754152297973633]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.145580291748047]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.02319049835205]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[240.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.766378402709961]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.354438781738281]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.362306594848633]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7009496688842773]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.114625930786133]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.583247184753418]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.496914863586426]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5447378158569336]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4642763137817383]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07200813293457]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.661443710327148]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.32093048095703]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.726356506347656]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.66411209106445]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.25845336914062]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2470.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741832733154297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9774398803710938]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0305938720703125]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8632621765136719]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.295598030090332]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6220617294311523]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7417993545532227]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7256689071655273]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9008922576904297]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.80637264251709]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8953609466552734]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.512033462524414]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.69873046875]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0992107391357422]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.730972290039062]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9959030151367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.122137069702148]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.189812660217285]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2651891708374023]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.2808198928833]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838872909545898]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.976861000061035]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.282492637634277]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.943842887878418]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.05252742767334]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[565.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5232305526733398]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9907760620117188]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1786909103393555]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6416788101196289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.223931312561035]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6444692611694336]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.960765838623047]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9702701568603516]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.9423599243164062]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.51907539367676]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"01_run1k","values":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6174411773681641]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.251507759094238]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.246901512145996]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.915827751159668]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[85.78846454620361]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7378768920898438]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2272682189941406]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.298114776611328]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.275012969970703]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.61553955078125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6167697906494141]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.908583641052246]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.976996421813965]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4535770416259766]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580761909484863]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6071262359619141]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.768472671508789]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7811479568481445]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7974891662597656]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.545183181762695]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.2]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6553411483764648]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6277685165405273]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6073875427246094]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7939624786376953]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.214959144592285]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8985929489135742]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1742172241210938]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1948862075805664]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1344852447509766]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.721461296081543]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4622774124145508]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8840656280517578]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9048471450805664]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.997834205627441]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4572582244873047]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016714096069336]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8851909637451172]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950393676757812]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.920961380004883]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5072345733642578]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7877740859985352]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7936010360717773]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5872926712036133]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.481759071350098]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"01_run1k","values":{"total":[37.7,29.8,34.5,34.5,35.9,30.5,33.2,29.8,35.4,30,33.5,30.9,29.4,34,33.2],"script":[5.2,5.5,5.3,5.5,5.7,5.4,5.3,5.4,5.4,5.4,5.4,5.5,5.3,5.5,5.3],"paint":[21.4,22.4,21.7,22.3,22.4,22,21.3,22.1,21.6,22.1,22.1,22.1,21.9,22.2,21.7]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"02_replace1k","values":{"total":[19,18.6,12.6,18.9,18.4,18.7,18.3,18.3,20.1,17.5,18.7,18,20.2,14.6,18.8],"script":[3.4,3.4,3.5,3.7,3.4,3.3,3.3,3.3,3.6,3.4,3.7,3.7,3.4,3.4,3.6],"paint":[8.6,8.7,8.9,9,8.6,8.5,8.6,8.7,9.1,8.5,9.2,9,8.7,8.8,8.9]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,39.3,39.3,37.6,38.7,21.5,37.5,36.9,22.4,20.7,21.4,38.1,38.4,36.2,38.5],"script":[9.7,10.9,10.2,9.3,10.7,10.1,9.6,8.9,11.1,9.5,9.2,9.3,10.3,10,10.1],"paint":[10.5,10.8,11.3,10.9,10.9,11,10.3,11.1,9.5,10.8,10.2,10.3,11.3,9.1,12.1]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,13.1,17.6,16.3,19.5,14.9,13.6,13.5,15,16.8,16,13.3,14.2,15.7,14.4,12.9,12.5,16.4,12.8,13.2,14.3,15,14,12.9,18.2],"script":[9.5,9.9,9.2,9.9,10.9,10.3,10.4,8.9,9.5,9.9,10.2,10.3,9.7,10.2,9.5,9.3,8.5,10,9.2,10.2,10.4,9.5,10.1,9.1,9.5],"paint":[1.3,1.3,2,0.8,1.2,2.3,1.3,2.5,1.6,1.8,2,2.7,1,2,1.7,1.9,1.2,1.7,2.4,1.8,2.6,1.9,3.1,2.3,2.4]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"05_swap1k","values":{"total":[20.3,34.8,35.8,35.7,35.1,18.7,35.4,35.6,34.6,36.7,19,36.3,35.4,34.3,36.2],"script":[10.6,10,10.7,9.7,9.9,10.3,9.7,10.5,9.9,11.3,10.4,10.2,9.8,9.8,9.5],"paint":[7,7.7,8.3,8.2,8.3,7,9.8,7.6,8,7.8,6.8,9.4,8.7,7.7,9.2]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.4,21.7,21.1,21.5,21,22.5,21.3,26,22,20.8,21.3,21.3,23.7,21.5,20.9],"script":[6,6.1,6,6.1,6.1,6.3,6,6.2,6.3,6.2,6,5.9,6,6.1,5.9],"paint":[14.8,15.1,14.2,14.7,14.3,14.8,14.9,14.9,15.2,14.3,14.8,14.8,14.9,14.8,14.1]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"07_create10k","values":{"total":[301,300.6,299.6,301.9,304.7,298.4,298.7,307.2,298.9,304.1,302.7,305,304.9,303.7,298.3],"script":[70.3,70.4,70,71,69.5,73.3,70.8,70,71.2,70.1,70.7,70.7,70.3,69.1,71.5],"paint":[221.4,225.2,223.1,222.3,223.3,220.7,224,225,222.6,223.3,225.4,224,223.2,223.7,222]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.1,40.1,36,40.2,40.2,35.3,35.7,40.1,40,39.6,40.2,34.6,39.8,41,39.8],"script":[8.5,8.4,9.3,8.5,8.2,8.5,8.5,8.4,8.1,8.3,8.2,8.3,8.2,9.2,8.2],"paint":[26.1,25.7,26.1,25.7,25.8,26.3,26.3,25.8,26,25.6,26,25.8,25.7,26.1,25.8]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.2,10.4,11.1,11.1,26.8,11,10.1,12.6,10.7,12.4,10.9,10.4,11.6,10.5],"script":[9.3,9.6,9,9.1,9.5,8.9,9.1,8.4,10.7,8.5,9.3,8.6,8.9,8.1,8.2],"paint":[1,0.7,0.3,1.2,0.9,1.3,1,1.5,1.7,0.6,1.3,1.7,0.7,2.2,0.3]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5640830993652344]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.932699203491211]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8859777450561523]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7510814666748047]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.03358745574951]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.4]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"vode-vERROR: Not found in package-lock-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8555831909179688]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8237686157226562]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.898469924926758]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1145868301391602]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.618300437927246]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.9]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6835517883300781]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0817203521728516]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1073837280273438]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9728012084960938]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.215370178222656]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6856794357299805]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9568729400634766]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9776878356933594]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9556646347045898]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.142014503479004]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}}] \ No newline at end of file +[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7804546356201172]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.701602935791016]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.71019172668457]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5199708938598633]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.9317398071289]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5480680465698242]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.554281234741211]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.273308753967285]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.8753814697265625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.40983867645264]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[29.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5130691528320312]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.736143112182617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.813131332397461]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.107969284057617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.137581825256348]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1247739791870117]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.668036460876465]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7355756759643555]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.707991600036621]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.677685737609863]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.124281883239746]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6573028564453125]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7305736541748047]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6972951889038086]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.674309730529785]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5228166580200195]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.828743934631348]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.853344917297363]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.118180274963379]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.39214515686035]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.130523681640625]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.716960906982422]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7943506240844727]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7830543518066406]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.90111541748047]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5638313293457031]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.954111099243164]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.021417617797852]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4622535705566406]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.714426040649414]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[158.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324434280395508]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.462996482849121]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.562638282775879]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.427117347717285]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.9520902633667]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873327255249023]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.926417350769043]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.02712345123291]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.81550884246826]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.81212329864502]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6102790832519531]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8133621215820312]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8695192337036133]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.805999755859375]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.58242130279541]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9693546295166016]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.970414161682129]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.971555709838867]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.0195112228393555]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.955989837646484]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.061036109924316]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.67124080657959]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.875746726989746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37116622924805]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.15918731689453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.83461952209473]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.78805637359619]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.84860897064209]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.3020715713501]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.81596851348877]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6466579437255859]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.498262405395508]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527353286743164]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7978572845458984]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.282408714294434]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7144250869750977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6487512588500977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8291072845458984]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.557438850402832]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.016355514526367]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8701353073120117]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7321882247924805]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.816035270690918]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0977239608764648]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.59339427947998]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6688327789306641]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.670557975769043]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7514867782592773]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9825620651245117]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.584179878234863]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7170677185058594]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.533288955688477]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.564603805541992]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2497005462646484]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.277915954589844]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5033645629882812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.850752830505371]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8534669876098633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6313543319702148]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.648594856262207]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6040544509887695]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7080955505371094]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7008790969848633]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8054409027099609]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.81447124481201]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8540573120117188]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.365616798400879]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.400456428527832]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.478118896484375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.693777084350586]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[346.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5662965774536133]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2286481857299805]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.213926315307617]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7100896835327148]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.953502655029297]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.805506706237793]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.225713729858398]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.314657211303711]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3121767044067383]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.35826873779297]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7443227767944336]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.964658737182617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.985597610473633]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6676416397094727]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.838895797729492]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[168.7]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.624821662902832]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9079294204711914]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.951869010925293]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.684422492980957]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.05843448638916]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.6]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6143827438354492]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8971624374389648]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9390954971313477]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6891355514526367]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012824058532715]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.8]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6010408401489258]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.990011215209961]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.036379814147949]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6422033309936523]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.496575355529785]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6637563705444336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.671767234802246]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.705085754394531]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9576692581176758]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.76193714141846]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6486625671386719]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.666378974914551]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.765705108642578]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0226306915283203]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.158863067626953]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.223213195800781]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.164497375488281]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.164779663085938]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.134173393249512]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.93343734741211]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[984.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5754966735839844]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3913002014160156]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4268722534179688]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6977405548095703]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95158290863037]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5823783874511719]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1282949447631836]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1071624755859375]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7695455551147461]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.758095741271973]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6561355590820312]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.627976417541504]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.562768936157227]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9666309356689453]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.449618339538574]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.24592399597168]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.192009925842285]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.230036735534668]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.256852149963379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.08543586730957]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5869245529174805]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.182247161865234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.211800575256348]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.062032699584961]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.04022979736328]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7273960113525391]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9033660888671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.225467681884766]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2966690063476562]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.970210075378418]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2997455596923828]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.730719566345215]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.281462669372559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.125727653503418]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24367809295654]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291213989257812]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2711753845214844]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2019948959350586]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8175430297851562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.761988639831543]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6350555419921875]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.248970031738281]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.884618759155273]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9016351699829102]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.34021282196045]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5972061157226562]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.045897483825684]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.071386337280273]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1606311798095703]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1229887008667]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5451717376708984]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9681663513183594]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.066629409790039]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6433811187744141]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.880518913269043]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8460683822631836]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.643153190612793]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6214113235473633]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.073225975036621]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.009462356567383]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.622044563293457]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.002596855163574]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.010848045349121]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.835902214050293]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.299354553222656]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5836181640625]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7753381729125977]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8468399047851562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7773532867431641]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.121651649475098]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5896310806274414]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.289639472961426]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2942590713500977]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.697718620300293]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62725067138672]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6438417434692383]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.449915885925293]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.4791259765625]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0068578720092773]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12136268615723]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120527267456055]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.639345169067383]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.597149848937988]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2624378204345703]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27529335021973]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7621994018554688]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.204743385314941]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.142613410949707]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0129585266113281]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.105714797973633]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.346522331237793]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.221152305603027]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.326862335205078]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09367561340332]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.92218017578125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[629.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1626176834106445]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.758243560791016]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.336838722229004]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.6927289962768555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.66135883331299]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[172.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7741727828979492]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514687538146973]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.531018257141113]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.546525001525879]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.217732429504395]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808300018310547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8559751510620117]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8668041229248047]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8445272445678711]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.080493927001953]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5732936859130859]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.635763168334961]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6673450469970703]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7030305862426758]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.04368019104004]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.61370849609375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.043519973754883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.083294868469238]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7266397476196289]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.91557216644287]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8143367767333984]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.359827995300293]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3946762084960938]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3741464614868164]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8940372467041]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5458879470825195]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4669437408447266]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5476388931274414]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7141580581665039]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.016407012939453]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7609901428222656]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6951465606689453]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653345108032227]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.031198501586914]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.497085571289062]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8166971206665039]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1328773498535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.152883529663086]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.12255859375]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.638179779052734]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5943021774291992]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6553211212158203]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.596734046936035]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7271127700805664]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.3585844039917]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891357421875]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4300975799560547]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.464888572692871]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.756587028503418]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.3368558883667]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986108779907227]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.995802879333496]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0202550888061523]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7451982498168945]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.160560607910156]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559391975402832]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3419933319091797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.352231979370117]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7482967376708984]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.106847763061523]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5811967849731445]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.099721908569336]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.533857345581055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.157256126403809]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.772847175598145]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[480.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5696544647216797]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3488950729370117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3947219848632812]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350568771362305]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.2009334564209]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6427574157714844]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9780378341674805]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.41512393951416]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8950672149658203]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1475133895874]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716001510620117]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9543943405151367]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.990999221801758]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1730737686157227]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.811062812805176]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.845004081726074]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.797246932983398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.787343978881836]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314798355102539]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.49604606628418]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.1]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5517683029174805]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.006746292114258]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02640438079834]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.761540412902832]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.84206199645996]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6950721740722656]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5557785034179688]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5425310134887695]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9374370574951172]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.60407066345215]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.1]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3768415451049805]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9089555740356445]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.006411552429199]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.664393424987793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.281550407409668]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8808250427246094]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.412508964538574]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.379556655883789]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3287086486816406]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.82754898071289]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6093864440917969]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1005859375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1675643920898438]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8215188980102539]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.911052703857422]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6112041473388672]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.630006790161133]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6469058990478516]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8258380889892578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.059950828552246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5529890060424805]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6205806732177734]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6707963943481445]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7532625198364258]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.285937309265137]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6028232574462891]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3534278869628906]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3900232315063477]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7610569000244141]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.110946655273438]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7053070068359375]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.741999626159668]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819445610046387]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0216350555419922]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14742183685303]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[61.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6606159210205078]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.066756248474121]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.1287031173706055]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9392509460449219]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.17781448364258]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0705327987670898]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.213217735290527]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.171822547912598]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.850666046142578]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.49588871002197]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[97]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.493072509765625]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.979111671447754]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.988943099975586]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.267091751098633]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92032623291016]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2026329040527344]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.71860122680664]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.780943870544434]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1373291015625]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.16176223754883]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[236.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8456459045410156]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.642852783203125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.352056503295898]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.254793167114258]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14303493499756]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[366.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1720056533813477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5933122634887695]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.076066017150879]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9302043914794922]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.46361541748047]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1551103591918945]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.696261405944824]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.056138038635254]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9550657272338867]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.36069107055664]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1485328674316406]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.454543113708496]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.905866622924805]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8971290588378906]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.618470191955566]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149296760559082]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.548349380493164]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.022992134094238]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9739532470703125]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.693784713745117]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1119604110717773]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.776449203491211]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.215978622436523]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8903913497924805]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.485578536987305]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3924837112426758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.217677116394043]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.776643753051758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.790724754333496]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.65873908996582]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5546188354492188]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.266175270080566]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.719915390014648]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.327932357788086]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60484313964844]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.706192970275879]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.142668724060059]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.690890312194824]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5411376953125]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.52224922180176]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[339.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3005762100219727]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.664432525634766]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.321878433227539]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.131575584411621]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.59714126586914]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2187995910644531]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9862823486328125]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.48721981048584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9865007400512695]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.38824653625488]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4026451110839844]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433895111083984]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.923381805419922]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4295148849487305]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.440735816955566]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3411483764648438]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.627699851989746]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.318523406982422]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1759376525878906]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.23661422729492]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2366905212402344]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.465743064880371]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.834593772888184]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9212417602539062]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.453356742858887]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1553611755371094]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069391250610352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5186967849731445]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8899574279785156]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.145355224609375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[201.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2711639404296875]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.945793151855469]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.462956428527832]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.493075370788574]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38289165496826]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1685962677001953]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.165302276611328]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.766231536865234]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9219512939453125]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.0153112411499]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4591541290283203]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.295771598815918]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.019558906555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9407882690429688]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.012826919555664]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[288.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5745954513549805]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524754524230957]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.56618595123291]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.457036018371582]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.163437843322754]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5900392532348633]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5230064392089844]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6323060989379883]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6587820053100586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.013845443725586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5166263580322266]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.848897933959961]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7722158432006836]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8737955093383789]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.89602756500244]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189994812011719]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.743117332458496]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7696313858032227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9182825088500977]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807257652282715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5930547714233398]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56527042388916]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.614274024963379]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7581081390380859]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.025753021240234]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986251831054688]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7760190963745117]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7920351028442383]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8317422866821289]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.40744113922119]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6555957794189453]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3754215240478516]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3842382431030273]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0908498764038086]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.84324836730957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9399089813232422]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.937980651855469]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048296928405762]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.135258674621582]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.631184577941895]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9799919128417969]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.601199150085449]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6909961700439453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.193359375]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.856722831726074]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7831344604492188]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.507598876953125]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.20376205444336]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.345932006835938]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.56476402282715]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[383]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7422494888305664]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8279829025268555]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8233327865600586]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.529299736022949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.334200859069824]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5636606216430664]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7526893615722656]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760098457336426]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7322492599487305]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.45913600921631]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44667720794677734]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5003862380981445]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.515448570251465]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3591156005859375]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.981186866760254]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49529266357421875]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.724177360534668]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.772085189819336]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7226696014404297]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.072800636291504]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644826889038086]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9609222412109375]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0113658905029297]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8396015167236328]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.660969734191895]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5724029541015625]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8287076950073242]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8366403579711914]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6594877243041992]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.626521110534668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.753408432006836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.064512252807617]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140619277954102]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5818614959716797]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.95647621154785]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508296966552734]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.580999374389648]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.56385612487793]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0833606719970703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.512922286987305]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[112.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6940650939941406]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.597169876098633]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6483497619628906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.053060531616211]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.755897521972656]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7459735870361328]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2724952697753906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3015480041503906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3401260375976562]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.492534637451172]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6621389389038086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624574661254883]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.641482353210449]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8375263214111328]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.52980899810791]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5277957916259766]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7687768936157227]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8084239959716797]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.872105598449707]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.35142421722412]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6152744293212891]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.918811798095703]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.979991912841797]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4369192123413086]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.5925874710083]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7590389251708984]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.873154640197754]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.86092472076416]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.515194892883301]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.585633277893066]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3347587585449219]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1276721954345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1886863708496094]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7997112274169922]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.539783477783203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[175.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48917293548583984]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.166651725769043]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.193112373352051]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6436395645141602]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86898136138916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6073207855224609]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7855224609375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7842607498168945]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7987785339355469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.59042453765869]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6901874542236328]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8683900833129883]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8625049591064453]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8650588989257812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.65694522857666]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.4]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6036882400512695]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7007579803466797]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.730854034423828]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8720874786376953]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.16014575958252]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8477945327758789]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1807260513305664]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.205763816833496]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1345634460449219]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.75906753540039]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1450309753417969]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.065735816955566]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.735942840576172]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8616676330566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.863115310668945]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164.4]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46895599365234375]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9677743911743164]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.928619384765625]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6171340942382812]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013200759887695]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47638511657714844]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7882747650146484]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.800760269165039]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5741634368896484]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.478334426879883]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5358676910400391]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.742197036743164]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7609081268310547]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6370124816894531]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.09604549407959]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5011138916015625]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.886707305908203]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8896007537841797]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.967710494995117]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.35887145996094]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5606784820556641]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.077930450439453]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0020751953125]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6400337219238281]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.02220344543457]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5435400009155273]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4081945419311523]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.415799140930176]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6559877395629883]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.456475257873535]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6525955200195312]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.329913139343262]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.431464195251465]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9340553283691406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.395493507385254]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547258377075195]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8578271865844727]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.893484115600586]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.171834945678711]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.646581649780273]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.858922004699707]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.2211503982543945]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.294930458068848]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1289901733398438]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47651290893555]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6976604461669922]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1021785736083984]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1319971084594727]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0184268951416016]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.264480590820312]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8884353637695312]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.206464767456055]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.310001373291016]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3989458084106445]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.71572971343994]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6967668533325195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0440711975097656]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.049104690551758]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.017533302307129]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.606117248535156]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5344572067260742]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0962209701538086]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1608314514160156]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9999885559082031]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.329374313354492]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7229738235473633]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.952317237854004]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.981106758117676]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.804966926574707]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.926068305969238]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7915868759155273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.451281547546387]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.522219657897949]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.931109428405762]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.072813987731934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[254.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7813653945922852]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.571454048156738]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.818474769592285]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.123181343078613]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.289931297302246]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5997714996337891]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6279382705688477]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.648758888244629]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9460687637329102]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28592014312744]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.7]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6085071563720703]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.307554244995117]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.346816062927246]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.470423698425293]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.880990982055664]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214570999145508]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.381025314331055]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.412445068359375]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8747434616088867]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.216437339782715]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6295204162597656]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.458812713623047]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5467529296875]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8539962768554688]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.912774085998535]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873994827270508]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.84391975402832]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.586036682128906]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.7777156829834]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.78382110595703]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.581995964050293]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.834000587463379]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.868013381958008]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8090496063232422]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.783058166503906]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.326578140258789]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.403861045837402]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.421059608459473]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.734299659729004]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.573543548583984]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[286.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5573406219482422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.598541259765625]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6989078521728516]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.09844970703125]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.94937801361084]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9995946884155273]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.862215042114258]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.931148529052734]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.45145320892334]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.7168960571289]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[281.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7736759185791016]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.832524299621582]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.903874397277832]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9832029342651367]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.362706184387207]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[405.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8214540481567383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4175710678100586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4391775131225586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0100765228271484]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.646400451660156]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184892654418945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3724746704101562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3656005859375]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7752017974853516]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.36058521270752]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"01_run1k","values":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"02_replace1k","values":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"04_select1k","values":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"05_swap1k","values":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"07_create10k","values":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9189090728759766]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[29.282416343688965]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[29.73321533203125]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6006050109863281]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[615.4609441757202]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[95.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.554840087890625]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8832197189331055]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8928709030151367]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6064558029174805]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.304900169372559]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7556791305541992]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3518762588500977]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.403101921081543]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9692201614379883]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032843589782715]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[31.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5912494659423828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.21185302734375]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2321176528930664]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7253131866455078]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.117511749267578]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8239517211914062]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32576847076416]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.9292497634887695]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.437203407287598]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.644211769104004]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6649494171142578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742987632751465]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.677057266235352]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.68896484375]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.78525447845459]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6475505828857422]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6502647399902344]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.714531898498535]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9943656921386719]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.85181999206543]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741670608520508]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.3793487548828125]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.447455406188965]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.195226669311523]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.441566467285156]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6582546234130859]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.616334915161133]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.617406845092773]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9659233093261719]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44912242889404]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7284231185913086]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9187450408935547]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.177557945251465]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2905149459838867]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.940454483032227]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8502740859985352]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.832951545715332]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.212776184082031]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.941891670227051]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.32406997680664]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[127.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[131.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"01_run1k","values":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"02_replace1k","values":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"07_create10k","values":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6084270477294922]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.09062385559082]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.118589401245117]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2077388763427734]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.88510036468506]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8438358306884766]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634610176086426]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.601742744445801]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.4910831451416016]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.837151527404785]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.381065368652344]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.913834571838379]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.110092163085938]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.658964157104492]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.854068756103516]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1073.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5340757369995117]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7833290100097656]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8382272720336914]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.783665657043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.119430541992188]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7088127136230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.159454345703125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.144804000854492]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8786163330078125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.776725769042969]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764277458190918]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.491896629333496]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.561244010925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9316511154174805]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64506435394287]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615772247314453]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.752252578735352]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.325299263000488]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.695610046386719]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.64689350128174]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[174.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6857204437255859]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.820673942565918]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8494300842285156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8222379684448242]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.926042556762695]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5542526245117188]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6002445220947266]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.618154525756836]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6867952346801758]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.815208435058594]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5163745880126953]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0778989791870117]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.322443962097168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6873941421508789]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.998469352722168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5523490905761719]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8252363204956055]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.750547409057617]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8201675415039062]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.75911235809326]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5964336395263672]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9866714477539062]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0264739990234375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7047748565673828]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.15754222869873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7415637969970703]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9501514434814453]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9785375595092773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9895973205566406]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.885876655578613]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.2]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5828189849853516]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.123703002929688]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.548064231872559]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.164665222167969]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.81257915496826]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[479.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.8413171768188477]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.800344467163086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.78706169128418]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314901351928711]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.51369857788086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[284.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6319818496704102]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.47098445892334]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.44230842590332]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4199934005737305]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.68405723571777]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.395395278930664]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.846027374267578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048587799072266]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.613348960876465]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.197758674621582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.999262809753418]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.219165802001953]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.098799705505371]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.778217315673828]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14489555358887]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2025566101074219]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.733373641967773]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.754152297973633]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.145580291748047]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.02319049835205]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[240.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.766378402709961]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.354438781738281]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.362306594848633]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7009496688842773]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.114625930786133]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.583247184753418]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.496914863586426]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5447378158569336]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4642763137817383]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07200813293457]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.661443710327148]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.32093048095703]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.726356506347656]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.66411209106445]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.25845336914062]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2470.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741832733154297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9774398803710938]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0305938720703125]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8632621765136719]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.295598030090332]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6220617294311523]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7417993545532227]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7256689071655273]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9008922576904297]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.80637264251709]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8953609466552734]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.512033462524414]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.69873046875]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0992107391357422]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.730972290039062]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9959030151367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.122137069702148]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.189812660217285]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2651891708374023]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.2808198928833]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838872909545898]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.976861000061035]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.282492637634277]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.943842887878418]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.05252742767334]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[565.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5232305526733398]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9907760620117188]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1786909103393555]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6416788101196289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.223931312561035]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6444692611694336]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.960765838623047]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9702701568603516]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.9423599243164062]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.51907539367676]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"01_run1k","values":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6174411773681641]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.251507759094238]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.246901512145996]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.915827751159668]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[85.78846454620361]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7378768920898438]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2272682189941406]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.298114776611328]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.275012969970703]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.61553955078125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6167697906494141]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.908583641052246]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.976996421813965]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4535770416259766]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580761909484863]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6071262359619141]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.768472671508789]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7811479568481445]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7974891662597656]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.545183181762695]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.2]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6553411483764648]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6277685165405273]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6073875427246094]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7939624786376953]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.214959144592285]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8985929489135742]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1742172241210938]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1948862075805664]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1344852447509766]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.721461296081543]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4622774124145508]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8840656280517578]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9048471450805664]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.997834205627441]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4572582244873047]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016714096069336]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8851909637451172]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950393676757812]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.920961380004883]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5072345733642578]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7877740859985352]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7936010360717773]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5872926712036133]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.481759071350098]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5631475448608398]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9572277069091797]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9413328170776367]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7309656143188477]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.520204544067383]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8555831909179688]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8237686157226562]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.898469924926758]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1145868301391602]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.618300437927246]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.9]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6835517883300781]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0817203521728516]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1073837280273438]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9728012084960938]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.215370178222656]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6856794357299805]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9568729400634766]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9776878356933594]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9556646347045898]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.142014503479004]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}}] \ No newline at end of file From e5b77ded034c658f2426166e6e57da02a89c3ea5 Mon Sep 17 00:00:00 2001 From: omilli Date: Thu, 11 Sep 2025 10:31:14 +0700 Subject: [PATCH 09/39] update hellajs to v1 --- frameworks/keyed/hellajs/package-lock.json | 34 +++++++++++----------- frameworks/keyed/hellajs/package.json | 6 ++-- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/frameworks/keyed/hellajs/package-lock.json b/frameworks/keyed/hellajs/package-lock.json index 87a7ba815..36ef193b8 100644 --- a/frameworks/keyed/hellajs/package-lock.json +++ b/frameworks/keyed/hellajs/package-lock.json @@ -8,15 +8,15 @@ "name": "js-framework-benchmark-hellajs", "version": "1.0.0", "dependencies": { - "@hellajs/core": "^0.14.2", - "@hellajs/dom": "^0.14.7" + "@hellajs/core": "^1.0.7", + "@hellajs/dom": "^1.1.0" }, "devDependencies": { "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.44.1", - "rollup-plugin-hellajs": "0.9.1" + "rollup-plugin-hellajs": "^0.9.8" } }, "node_modules/@ampproject/remapping": { @@ -467,19 +467,19 @@ } }, "node_modules/@hellajs/core": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/@hellajs/core/-/core-0.14.2.tgz", - "integrity": "sha512-YxNyC9KaRV0/XIJKlxdOhEwR9ZVjQN+kE5wbPJI6+aMoM5d7YIbJ+GW8Lf768r5+u6qXLc1GQXLdao+MRgerFA==" + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@hellajs/core/-/core-1.0.7.tgz", + "integrity": "sha512-1zcsl3De+2sAhi/KoONs+EB+lr5KjT7wtGWRgoqvHOwmtJppdyfXENSJ51TFrwf2uF2FshE9AtjR8ALZFW6/0A==" }, "node_modules/@hellajs/dom": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/@hellajs/dom/-/dom-0.14.7.tgz", - "integrity": "sha512-V2Xc0td5BKDzXI9sYWMjMNZc/SsYVGALtQqwhaILL40uWZqVL2edplQEp6rYCwCh+w5i9uRQUzg+IfTm3/GW0g==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@hellajs/dom/-/dom-1.1.0.tgz", + "integrity": "sha512-dYjhFNkveNqjyLrRieXsGoLKxS2gZlM89BrI/y6xpKjjYwQpaXLQf8wqM392Lwmf9bmwEWXR51RWIJysTr6Oog==", "dependencies": { "csstype": "^3.1.3" }, "peerDependencies": { - "@hellajs/core": "^0.14.2" + "@hellajs/core": "^1.0.7" } }, "node_modules/@jridgewell/gen-mapping": { @@ -938,9 +938,9 @@ } }, "node_modules/babel-plugin-hellajs": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-hellajs/-/babel-plugin-hellajs-0.6.0.tgz", - "integrity": "sha512-B60da1RuprJox5Wv51sz1r7iw8LETG+MYnXsIJKOY0meOFEMz2QHlpDFxsU96ENoLphRTKD3aTZ+yWbSeu7PgA==", + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/babel-plugin-hellajs/-/babel-plugin-hellajs-0.6.7.tgz", + "integrity": "sha512-GPD5eEvPuCOUi9XtJkPFJMPdZyxyyLe+MpDYvUETe1iB7s5QfhhiQqYWYSH84OebZr4PUT2tXe7YHLDnETrzUQ==", "dev": true, "dependencies": { "@babel/core": "^7.27.4", @@ -1312,14 +1312,14 @@ } }, "node_modules/rollup-plugin-hellajs": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/rollup-plugin-hellajs/-/rollup-plugin-hellajs-0.9.1.tgz", - "integrity": "sha512-hRZy3yGf45kabReIJ+NHviqgfgqLj5y/c4XEWmK3jclqWlz8ZGXfVlCyanTJOSVWq5Uj2zDsSidm7nYhStPZgg==", + "version": "0.9.8", + "resolved": "https://registry.npmjs.org/rollup-plugin-hellajs/-/rollup-plugin-hellajs-0.9.8.tgz", + "integrity": "sha512-mFGoa1cn1E0/D78kQVdvUknmWaOCiS+ivefFE6hMPx6Wz5cYQAwHGJJUIP1M6iXJH7VeX2O0yKeDkKm2Mls2Uw==", "dev": true, "dependencies": { "@babel/core": "^7.27.4", "@babel/preset-typescript": "^7.27.1", - "babel-plugin-hellajs": "^0.6.0" + "babel-plugin-hellajs": "^0.6.7" } }, "node_modules/safe-buffer": { diff --git a/frameworks/keyed/hellajs/package.json b/frameworks/keyed/hellajs/package.json index 3d9250d9c..7e9de8da5 100644 --- a/frameworks/keyed/hellajs/package.json +++ b/frameworks/keyed/hellajs/package.json @@ -15,10 +15,10 @@ "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.44.1", - "rollup-plugin-hellajs": "0.9.1" + "rollup-plugin-hellajs": "^0.9.8" }, "dependencies": { - "@hellajs/core": "^0.14.2", - "@hellajs/dom": "^0.14.7" + "@hellajs/core": "^1.0.7", + "@hellajs/dom": "^1.1.0" } } \ No newline at end of file From a4db2ddc5805ed27fc1baf7b313376b1f5c43cb4 Mon Sep 17 00:00:00 2001 From: omilli Date: Fri, 19 Sep 2025 08:06:39 +0700 Subject: [PATCH 10/39] use ts for hellajs --- frameworks/keyed/hellajs/package-lock.json | 397 +++++++++--------- frameworks/keyed/hellajs/package.json | 4 +- frameworks/keyed/hellajs/rollup.config.mjs | 2 +- .../keyed/hellajs/src/{main.jsx => main.tsx} | 86 ++-- frameworks/keyed/hellajs/tsconfig.json | 33 ++ 5 files changed, 296 insertions(+), 226 deletions(-) rename frameworks/keyed/hellajs/src/{main.jsx => main.tsx} (56%) create mode 100644 frameworks/keyed/hellajs/tsconfig.json diff --git a/frameworks/keyed/hellajs/package-lock.json b/frameworks/keyed/hellajs/package-lock.json index 36ef193b8..1366db7ca 100644 --- a/frameworks/keyed/hellajs/package-lock.json +++ b/frameworks/keyed/hellajs/package-lock.json @@ -8,8 +8,8 @@ "name": "js-framework-benchmark-hellajs", "version": "1.0.0", "dependencies": { - "@hellajs/core": "^1.0.7", - "@hellajs/dom": "^1.1.0" + "@hellajs/core": "^1.0.8", + "@hellajs/dom": "^1.1.3" }, "devDependencies": { "@rollup/plugin-babel": "^6.0.4", @@ -19,20 +19,6 @@ "rollup-plugin-hellajs": "^0.9.8" } }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@babel/code-frame": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", @@ -49,9 +35,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", - "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", + "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", "dev": true, "license": "MIT", "engines": { @@ -59,22 +45,22 @@ } }, "node_modules/@babel/core": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", - "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", + "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", "dev": true, "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.0", + "@babel/generator": "^7.28.3", "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-module-transforms": "^7.27.3", - "@babel/helpers": "^7.27.6", - "@babel/parser": "^7.28.0", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.4", "@babel/template": "^7.27.2", - "@babel/traverse": "^7.28.0", - "@babel/types": "^7.28.0", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -90,14 +76,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", - "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.28.0", - "@babel/types": "^7.28.0", + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -137,18 +123,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz", - "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.3.tgz", + "integrity": "sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-annotate-as-pure": "^7.27.3", "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", - "@babel/traverse": "^7.27.1", + "@babel/traverse": "^7.28.3", "semver": "^6.3.1" }, "engines": { @@ -197,15 +183,15 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", - "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", - "@babel/traverse": "^7.27.3" + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -300,27 +286,27 @@ } }, "node_modules/@babel/helpers": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz", - "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.27.2", - "@babel/types": "^7.28.2" + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", - "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.28.0" + "@babel/types": "^7.28.4" }, "bin": { "parser": "bin/babel-parser.js" @@ -434,18 +420,18 @@ } }, "node_modules/@babel/traverse": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", - "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", + "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.0", + "@babel/generator": "^7.28.3", "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.0", + "@babel/parser": "^7.28.4", "@babel/template": "^7.27.2", - "@babel/types": "^7.28.0", + "@babel/types": "^7.28.4", "debug": "^4.3.1" }, "engines": { @@ -453,9 +439,9 @@ } }, "node_modules/@babel/types": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", - "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", "dev": true, "license": "MIT", "dependencies": { @@ -467,14 +453,14 @@ } }, "node_modules/@hellajs/core": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@hellajs/core/-/core-1.0.7.tgz", - "integrity": "sha512-1zcsl3De+2sAhi/KoONs+EB+lr5KjT7wtGWRgoqvHOwmtJppdyfXENSJ51TFrwf2uF2FshE9AtjR8ALZFW6/0A==" + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@hellajs/core/-/core-1.0.8.tgz", + "integrity": "sha512-cxAEI3Xde++vyhUW3lj44Fy94m6yzaN2gLvVixmagd5aO/f5s7PlIoX7ILZVVcHtLNOxO6H5eVsl+OFXCARy+Q==" }, "node_modules/@hellajs/dom": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@hellajs/dom/-/dom-1.1.0.tgz", - "integrity": "sha512-dYjhFNkveNqjyLrRieXsGoLKxS2gZlM89BrI/y6xpKjjYwQpaXLQf8wqM392Lwmf9bmwEWXR51RWIJysTr6Oog==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@hellajs/dom/-/dom-1.1.3.tgz", + "integrity": "sha512-iUXwGhTPUgUiTBC/mrCTNh4wsyoZkrv+9d+f47ekW91EQycZOgzqvIVe6+fiEELBBB/sRx3FJHhRsdM7mwGGIA==", "dependencies": { "csstype": "^3.1.3" }, @@ -483,9 +469,9 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.12", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", - "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "license": "MIT", "dependencies": { @@ -493,6 +479,17 @@ "@jridgewell/trace-mapping": "^0.3.24" } }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -504,9 +501,9 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", - "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, "license": "MIT", "dependencies": { @@ -515,16 +512,16 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", - "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.29", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", - "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "license": "MIT", "dependencies": { @@ -608,9 +605,9 @@ } }, "node_modules/@rollup/pluginutils": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.2.0.tgz", - "integrity": "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", "dev": true, "license": "MIT", "dependencies": { @@ -631,9 +628,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz", - "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.50.2.tgz", + "integrity": "sha512-uLN8NAiFVIRKX9ZQha8wy6UUs06UNSZ32xj6giK/rmMXAgKahwExvK6SsmgU5/brh4w/nSgj8e0k3c1HBQpa0A==", "cpu": [ "arm" ], @@ -645,9 +642,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz", - "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.50.2.tgz", + "integrity": "sha512-oEouqQk2/zxxj22PNcGSskya+3kV0ZKH+nQxuCCOGJ4oTXBdNTbv+f/E3c74cNLeMO1S5wVWacSws10TTSB77g==", "cpu": [ "arm64" ], @@ -659,9 +656,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz", - "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.50.2.tgz", + "integrity": "sha512-OZuTVTpj3CDSIxmPgGH8en/XtirV5nfljHZ3wrNwvgkT5DQLhIKAeuFSiwtbMto6oVexV0k1F1zqURPKf5rI1Q==", "cpu": [ "arm64" ], @@ -673,9 +670,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz", - "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.50.2.tgz", + "integrity": "sha512-Wa/Wn8RFkIkr1vy1k1PB//VYhLnlnn5eaJkfTQKivirOvzu5uVd2It01ukeQstMursuz7S1bU+8WW+1UPXpa8A==", "cpu": [ "x64" ], @@ -687,9 +684,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz", - "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.50.2.tgz", + "integrity": "sha512-QkzxvH3kYN9J1w7D1A+yIMdI1pPekD+pWx7G5rXgnIlQ1TVYVC6hLl7SOV9pi5q9uIDF9AuIGkuzcbF7+fAhow==", "cpu": [ "arm64" ], @@ -701,9 +698,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz", - "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.50.2.tgz", + "integrity": "sha512-dkYXB0c2XAS3a3jmyDkX4Jk0m7gWLFzq1C3qUnJJ38AyxIF5G/dyS4N9B30nvFseCfgtCEdbYFhk0ChoCGxPog==", "cpu": [ "x64" ], @@ -715,9 +712,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz", - "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.50.2.tgz", + "integrity": "sha512-9VlPY/BN3AgbukfVHAB8zNFWB/lKEuvzRo1NKev0Po8sYFKx0i+AQlCYftgEjcL43F2h9Ui1ZSdVBc4En/sP2w==", "cpu": [ "arm" ], @@ -729,9 +726,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz", - "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.50.2.tgz", + "integrity": "sha512-+GdKWOvsifaYNlIVf07QYan1J5F141+vGm5/Y8b9uCZnG/nxoGqgCmR24mv0koIWWuqvFYnbURRqw1lv7IBINw==", "cpu": [ "arm" ], @@ -743,9 +740,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz", - "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.50.2.tgz", + "integrity": "sha512-df0Eou14ojtUdLQdPFnymEQteENwSJAdLf5KCDrmZNsy1c3YaCNaJvYsEUHnrg+/DLBH612/R0xd3dD03uz2dg==", "cpu": [ "arm64" ], @@ -757,9 +754,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz", - "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.50.2.tgz", + "integrity": "sha512-iPeouV0UIDtz8j1YFR4OJ/zf7evjauqv7jQ/EFs0ClIyL+by++hiaDAfFipjOgyz6y6xbDvJuiU4HwpVMpRFDQ==", "cpu": [ "arm64" ], @@ -770,10 +767,10 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz", - "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.50.2.tgz", + "integrity": "sha512-OL6KaNvBopLlj5fTa5D5bau4W82f+1TyTZRr2BdnfsrnQnmdxh4okMxR2DcDkJuh4KeoQZVuvHvzuD/lyLn2Kw==", "cpu": [ "loong64" ], @@ -785,9 +782,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz", - "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.50.2.tgz", + "integrity": "sha512-I21VJl1w6z/K5OTRl6aS9DDsqezEZ/yKpbqlvfHbW0CEF5IL8ATBMuUx6/mp683rKTK8thjs/0BaNrZLXetLag==", "cpu": [ "ppc64" ], @@ -799,9 +796,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz", - "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.50.2.tgz", + "integrity": "sha512-Hq6aQJT/qFFHrYMjS20nV+9SKrXL2lvFBENZoKfoTH2kKDOJqff5OSJr4x72ZaG/uUn+XmBnGhfr4lwMRrmqCQ==", "cpu": [ "riscv64" ], @@ -813,9 +810,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz", - "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.50.2.tgz", + "integrity": "sha512-82rBSEXRv5qtKyr0xZ/YMF531oj2AIpLZkeNYxmKNN6I2sVE9PGegN99tYDLK2fYHJITL1P2Lgb4ZXnv0PjQvw==", "cpu": [ "riscv64" ], @@ -827,9 +824,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz", - "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.50.2.tgz", + "integrity": "sha512-4Q3S3Hy7pC6uaRo9gtXUTJ+EKo9AKs3BXKc2jYypEcMQ49gDPFU2P1ariX9SEtBzE5egIX6fSUmbmGazwBVF9w==", "cpu": [ "s390x" ], @@ -841,9 +838,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz", - "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.50.2.tgz", + "integrity": "sha512-9Jie/At6qk70dNIcopcL4p+1UirusEtznpNtcq/u/C5cC4HBX7qSGsYIcG6bdxj15EYWhHiu02YvmdPzylIZlA==", "cpu": [ "x64" ], @@ -855,9 +852,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz", - "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.50.2.tgz", + "integrity": "sha512-HPNJwxPL3EmhzeAnsWQCM3DcoqOz3/IC6de9rWfGR8ZCuEHETi9km66bH/wG3YH0V3nyzyFEGUZeL5PKyy4xvw==", "cpu": [ "x64" ], @@ -868,10 +865,24 @@ "linux" ] }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.50.2.tgz", + "integrity": "sha512-nMKvq6FRHSzYfKLHZ+cChowlEkR2lj/V0jYj9JnGUVPL2/mIeFGmVM2mLaFeNa5Jev7W7TovXqXIG2d39y1KYA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz", - "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.50.2.tgz", + "integrity": "sha512-eFUvvnTYEKeTyHEijQKz81bLrUQOXKZqECeiWH6tb8eXXbZk+CXSG2aFrig2BQ/pjiVRj36zysjgILkqarS2YA==", "cpu": [ "arm64" ], @@ -883,9 +894,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz", - "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.50.2.tgz", + "integrity": "sha512-cBaWmXqyfRhH8zmUxK3d3sAhEWLrtMjWBRwdMMHJIXSjvjLKvv49adxiEz+FJ8AP90apSDDBx2Tyd/WylV6ikA==", "cpu": [ "ia32" ], @@ -897,9 +908,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz", - "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.50.2.tgz", + "integrity": "sha512-APwKy6YUhvZaEoHyM+9xqmTpviEI+9eL7LoCH+aLcvWYHJ663qG5zx7WzWZY+a9qkg5JtzcMyJ9z0WtQBMDmgA==", "cpu": [ "x64" ], @@ -952,10 +963,20 @@ "typescript": "^5" } }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.6.tgz", + "integrity": "sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, "node_modules/browserslist": { - "version": "4.25.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", - "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "version": "4.26.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.2.tgz", + "integrity": "sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==", "dev": true, "funding": [ { @@ -973,9 +994,10 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001726", - "electron-to-chromium": "^1.5.173", - "node-releases": "^2.0.19", + "baseline-browser-mapping": "^2.8.3", + "caniuse-lite": "^1.0.30001741", + "electron-to-chromium": "^1.5.218", + "node-releases": "^2.0.21", "update-browserslist-db": "^1.1.3" }, "bin": { @@ -993,9 +1015,9 @@ "license": "MIT" }, "node_modules/caniuse-lite": { - "version": "1.0.30001733", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", - "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", + "version": "1.0.30001743", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001743.tgz", + "integrity": "sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==", "dev": true, "funding": [ { @@ -1034,9 +1056,9 @@ "license": "MIT" }, "node_modules/debug": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", - "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "license": "MIT", "dependencies": { @@ -1062,9 +1084,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.199", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", - "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "version": "1.5.222", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.222.tgz", + "integrity": "sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==", "dev": true, "license": "ISC" }, @@ -1207,9 +1229,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "version": "2.0.21", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.21.tgz", + "integrity": "sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==", "dev": true, "license": "MIT" }, @@ -1272,9 +1294,9 @@ } }, "node_modules/rollup": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz", - "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==", + "version": "4.50.2", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.50.2.tgz", + "integrity": "sha512-BgLRGy7tNS9H66aIMASq1qSYbAAJV6Z6WR4QYTvj5FgF15rZ/ympT1uixHXwzbZUBDbkvqUI1KR0fH1FhMaQ9w==", "dev": true, "license": "MIT", "dependencies": { @@ -1288,26 +1310,27 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.46.2", - "@rollup/rollup-android-arm64": "4.46.2", - "@rollup/rollup-darwin-arm64": "4.46.2", - "@rollup/rollup-darwin-x64": "4.46.2", - "@rollup/rollup-freebsd-arm64": "4.46.2", - "@rollup/rollup-freebsd-x64": "4.46.2", - "@rollup/rollup-linux-arm-gnueabihf": "4.46.2", - "@rollup/rollup-linux-arm-musleabihf": "4.46.2", - "@rollup/rollup-linux-arm64-gnu": "4.46.2", - "@rollup/rollup-linux-arm64-musl": "4.46.2", - "@rollup/rollup-linux-loongarch64-gnu": "4.46.2", - "@rollup/rollup-linux-ppc64-gnu": "4.46.2", - "@rollup/rollup-linux-riscv64-gnu": "4.46.2", - "@rollup/rollup-linux-riscv64-musl": "4.46.2", - "@rollup/rollup-linux-s390x-gnu": "4.46.2", - "@rollup/rollup-linux-x64-gnu": "4.46.2", - "@rollup/rollup-linux-x64-musl": "4.46.2", - "@rollup/rollup-win32-arm64-msvc": "4.46.2", - "@rollup/rollup-win32-ia32-msvc": "4.46.2", - "@rollup/rollup-win32-x64-msvc": "4.46.2", + "@rollup/rollup-android-arm-eabi": "4.50.2", + "@rollup/rollup-android-arm64": "4.50.2", + "@rollup/rollup-darwin-arm64": "4.50.2", + "@rollup/rollup-darwin-x64": "4.50.2", + "@rollup/rollup-freebsd-arm64": "4.50.2", + "@rollup/rollup-freebsd-x64": "4.50.2", + "@rollup/rollup-linux-arm-gnueabihf": "4.50.2", + "@rollup/rollup-linux-arm-musleabihf": "4.50.2", + "@rollup/rollup-linux-arm64-gnu": "4.50.2", + "@rollup/rollup-linux-arm64-musl": "4.50.2", + "@rollup/rollup-linux-loong64-gnu": "4.50.2", + "@rollup/rollup-linux-ppc64-gnu": "4.50.2", + "@rollup/rollup-linux-riscv64-gnu": "4.50.2", + "@rollup/rollup-linux-riscv64-musl": "4.50.2", + "@rollup/rollup-linux-s390x-gnu": "4.50.2", + "@rollup/rollup-linux-x64-gnu": "4.50.2", + "@rollup/rollup-linux-x64-musl": "4.50.2", + "@rollup/rollup-openharmony-arm64": "4.50.2", + "@rollup/rollup-win32-arm64-msvc": "4.50.2", + "@rollup/rollup-win32-ia32-msvc": "4.50.2", + "@rollup/rollup-win32-x64-msvc": "4.50.2", "fsevents": "~2.3.2" } }, @@ -1405,14 +1428,14 @@ } }, "node_modules/terser": { - "version": "5.43.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", - "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.14.0", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, diff --git a/frameworks/keyed/hellajs/package.json b/frameworks/keyed/hellajs/package.json index 7e9de8da5..21dd79654 100644 --- a/frameworks/keyed/hellajs/package.json +++ b/frameworks/keyed/hellajs/package.json @@ -18,7 +18,7 @@ "rollup-plugin-hellajs": "^0.9.8" }, "dependencies": { - "@hellajs/core": "^1.0.7", - "@hellajs/dom": "^1.1.0" + "@hellajs/core": "^1.0.8", + "@hellajs/dom": "^1.1.3" } } \ No newline at end of file diff --git a/frameworks/keyed/hellajs/rollup.config.mjs b/frameworks/keyed/hellajs/rollup.config.mjs index e4ca0461e..347b6bd83 100644 --- a/frameworks/keyed/hellajs/rollup.config.mjs +++ b/frameworks/keyed/hellajs/rollup.config.mjs @@ -3,7 +3,7 @@ import resolve from '@rollup/plugin-node-resolve'; import terser from '@rollup/plugin-terser'; export default { - input: 'src/main.jsx', + input: 'src/main.tsx', output: { file: 'dist/main.js', format: 'iife', diff --git a/frameworks/keyed/hellajs/src/main.jsx b/frameworks/keyed/hellajs/src/main.tsx similarity index 56% rename from frameworks/keyed/hellajs/src/main.jsx rename to frameworks/keyed/hellajs/src/main.tsx index 71b966821..a4d0b55df 100644 --- a/frameworks/keyed/hellajs/src/main.jsx +++ b/frameworks/keyed/hellajs/src/main.tsx @@ -1,26 +1,30 @@ -import { signal, batch } from "@hellajs/core"; -import { forEach, mount } from "@hellajs/dom"; +import { signal, batch, type Signal } from "@hellajs/core"; +import { forEach, mount, type HellaProps } from "@hellajs/dom"; + + +interface Row { + id: number + label: Signal +} const adjectives = ["pretty", "large", "big", "small", "tall", "short", "long", "handsome", "plain", "quaint", "clean", "elegant", "easy", "angry", "crazy", "helpful", "mushy", "odd", "unsightly", "adorable", "important", "inexpensive", "cheap", "expensive", "fancy"]; const colors = ["red", "yellow", "blue", "green", "pink", "brown", "purple", "brown", "white", "black", "orange"]; const nouns = ["table", "chair", "house", "bbq", "desk", "car", "pony", "cookie", "sandwich", "burger", "pizza", "mouse", "keyboard"]; -const random = (max) => Math.round(Math.random() * 1000) % max; +const random = (max: number) => Math.round(Math.random() * 1000) % max; let nextId = 1; -const buildData = (count) => { - let d = new Array(count); - for (let i = 0; i < count; i++) { - const label = signal( +const buildData = (count: number) => { + return Array.from({ length: count }, () => ({ + id: nextId++, + label: signal( `${adjectives[random(adjectives.length)]} ${colors[random(colors.length)]} ${nouns[random(nouns.length)]}` - ); - d[i] = { id: nextId++, label }; - } - return d; + ) + })); }; -const ActionButton = (props) => ( +const ActionButton = (props: HellaProps) => (
- create(1000)}>Create 1,000 rows - create(10000)}>Create 10,000 rows - append(1000)}>Append 1,000 rows - update()}>Update every 10th row - clear()}>Clear - swap()}>Swap Rows + create(1000)}> + Create 1,000 rows + + create(10000)}> + Create 10,000 rows + + append(1000)}> + Append 1,000 rows + + + Update every 10th row + + + Clear + + + Swap Rows +
@@ -86,7 +101,7 @@ function Bench() { {forEach(rows, (row) => ( - selected() === row.id ? 'danger' : ''} key={row.id}> + - ))}
{row.id} selected(row.id)}> @@ -98,15 +113,14 @@ function Bench() {
- + ); } -mount(Bench, "#app"); +mount(Bench); diff --git a/frameworks/keyed/hellajs/tsconfig.json b/frameworks/keyed/hellajs/tsconfig.json new file mode 100644 index 000000000..d93858da4 --- /dev/null +++ b/frameworks/keyed/hellajs/tsconfig.json @@ -0,0 +1,33 @@ +{ + "compilerOptions": { + "target": "ES2022", + "useDefineForClassFields": true, + "module": "ESNext", + "lib": [ + "ES2022", + "DOM", + "DOM.Iterable" + ], + "skipLibCheck": true, + "jsx": "preserve", + "types": [ + "@hellajs/dom" + ], + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": [ + "src" + ] +} \ No newline at end of file From 5919b69797dd5bc4bfccf85644da780f5e2cbfc5 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sat, 20 Sep 2025 22:32:44 +0100 Subject: [PATCH 11/39] update ripple to 0.2.56 --- frameworks/keyed/ripple/package-lock.json | 16 ++++----- frameworks/keyed/ripple/package.json | 4 +-- frameworks/keyed/ripple/src/Main.ripple | 42 +++++++++++++---------- 3 files changed, 33 insertions(+), 29 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index ba374722f..30a3b514e 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.31", + "ripple": "^0.2.56", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.31" + "rollup-plugin-ripple": "^0.2.56" } }, "node_modules/@jridgewell/gen-mapping": { @@ -650,9 +650,9 @@ } }, "node_modules/ripple": { - "version": "0.2.31", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.31.tgz", - "integrity": "sha512-cfYY5KGnUeRWJqfGs8kRvB5Fv3urFutN3Ljv9ve2DSv3gE7XbVugahnnUKihucG4sh0zqNcWN8OEg/fWCwxNFA==", + "version": "0.2.56", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.56.tgz", + "integrity": "sha512-74M96kLk6XmfKaw4ObiQCo2zBB5hBbIjUo3IL3O8nnmrdE9uM0OMXYgJdG7h8RO5r0VIjSxrydi/SQsKmeWXlg==", "dev": true, "license": "MIT", "dependencies": { @@ -718,9 +718,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.31", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.31.tgz", - "integrity": "sha512-NMkVcrzEgmL39G10jJ/Pc7uRBvua3mQngVUdd1Wovd8hmcukWV7EY6osvTkg3BTv9Wi4tfhNrbMsHGz0tQpVog==", + "version": "0.2.56", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.56.tgz", + "integrity": "sha512-r5OHuiqOjIU1chnwIrqJV/aLDk3pJ6ySECVZIh1PqIIgiBk0xgP30k8ThDxk1NrcMedr5pez3TEwZgF+uB/MLA==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index ccf1bf47e..ea1c3771c 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.31", + "ripple": "^0.2.56", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.31" + "rollup-plugin-ripple": "^0.2.56" } } diff --git a/frameworks/keyed/ripple/src/Main.ripple b/frameworks/keyed/ripple/src/Main.ripple index 895a0cf60..c9e738c3b 100644 --- a/frameworks/keyed/ripple/src/Main.ripple +++ b/frameworks/keyed/ripple/src/Main.ripple @@ -1,3 +1,5 @@ +import { track } from 'ripple'; + const adjectives = [ 'pretty', 'large', @@ -60,42 +62,42 @@ function _random(max) { export default component App() { let rowId = 1; - let $items = []; - let $selected; + let items = track([]); + let selected = track(); - const add = () => ($items = [...$items, ...buildData(1000)]); + const add = () => (@items = [...@items, ...buildData(1000)]); const clear = () => { - $items = []; + @items = []; } const partialUpdate = () => { - for (let i = 0; i < $items.length; i += 10) { - const row = $items[i]; - row.$label = row.$label + ' !!!'; + for (let i = 0; i < @items.length; i += 10) { + const row = @items[i]; + row.@label = row.@label + ' !!!'; } }; const remove = (row) => { - const clone = $items.slice(); + const clone = @items.slice(); clone.splice(clone.indexOf(row), 1); - $items = clone; + @items = clone; } const run = () => { - $items = buildData(1000); + @items = buildData(1000); }; const runLots = () => { - $items = buildData(10000); + @items = buildData(10000); }; const swapRows = () => { - if ($items.length > 998) { - const clone = $items.slice(); + if (@items.length > 998) { + const clone = @items.slice(); const tmp = clone[1]; clone[1] = clone[998]; clone[998] = tmp; - $items = clone; + @items = clone; } }; @@ -106,7 +108,7 @@ export default component App() { data[i] = { id: rowId++, - $label: label, + label: track(label), } } return data; @@ -156,11 +158,13 @@ export default component App() { - for (const row of $items) { - - + for (const row of @items) { + const id = row.id; + + + + + ))} From bda5d28eb2204780b76360aa8417a70c94d0aca6 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Tue, 7 Oct 2025 22:29:37 +0200 Subject: [PATCH 19/39] update ripple, endr, hellajs and add zess --- webdriver-ts-results/src/results.ts | 17 +++++++++-------- webdriver-ts/results.json | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index 03ceb8125..690175aca 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -32,14 +32,14 @@ export const results: RawResult[]=[ {"f":28,"b":[{"b":0,"v":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"b":1,"v":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"b":2,"v":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"b":3,"v":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"b":4,"v":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"b":5,"v":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"b":6,"v":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"b":7,"v":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"b":8,"v":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.69]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, {"f":29,"b":[{"b":0,"v":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"b":1,"v":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"b":2,"v":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"b":3,"v":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"b":4,"v":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"b":5,"v":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"b":6,"v":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"b":7,"v":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"b":8,"v":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, {"f":30,"b":[{"b":0,"v":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"b":1,"v":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"b":2,"v":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"b":3,"v":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"b":4,"v":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"b":5,"v":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"b":6,"v":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"b":7,"v":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"b":8,"v":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"b":9,"v":{"DEFAULT":[8.27]}},{"b":10,"v":{"DEFAULT":[14.21]}},{"b":11,"v":{"DEFAULT":[14.17]}},{"b":12,"v":{"DEFAULT":[9.09]}},{"b":13,"v":{"DEFAULT":[63.91]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[992.4]}}]}, -{"f":31,"b":[{"b":0,"v":{"total":[28.6,28.7,28.8,29.2,29.1,28.7,29.5,28.8,28.8,28.9,28.6,29.2,28.9,28.6,29.4],"script":[6.4,6.5,6.4,6.8,7.1,6.5,6.7,6.6,6.6,6.5,6.7,6.6,6.5,6.5,6.8],"paint":[21.6,21.7,21.9,21.8,21.5,21.6,22.3,21.7,21.7,21.8,21.4,22.1,21.8,21.6,22]}},{"b":1,"v":{"total":[32.3,32.2,31.9,33.7,34.4,33.7,32.1,32.2,32.6,32.1,32.9,31.3,31.9,32.1,31.9],"script":[9,8.9,9,9.3,9,9.1,8.7,8.7,9.3,8.7,9.2,8.7,9,8.6,9.2],"paint":[22.7,22.7,22.4,23.8,24.8,24,22.9,22.9,22.7,22.9,23.1,22.2,22.4,22.9,22.1]}},{"b":2,"v":{"total":[13.6,12.5,13,13.4,12.6,13.2,13.7,13.6,12.5,13,13.9,13,13.6,13.7,13.6],"script":[3.2,2.9,3.2,3.1,2.5,2.5,3.1,3.4,3.3,2.8,3.6,2.5,3,3,2.6],"paint":[8.6,7.6,8.4,9,8.6,9.9,9.4,8.7,8.3,9.6,8,9.5,9.2,9.7,9.8]}},{"b":3,"v":{"total":[3.4,3.9,3.3,3.1,2.8,3.9,3.3,3.8,3.6,3.6,3.3,3.1,3.3,3.6,2.9,3.1,3.2,3.5,3,3.5,3.3,3.5,3.7,2.9,4.5],"script":[1.4,1.1,1.2,1.2,1.2,1.5,0.3,1.2,1.5,1.1,1.2,1,1.4,0.9,1,0.6,0.9,0.6,1.6,1.1,1.3,1.4,1.3,1.1,1.8],"paint":[1.3,1.5,2,1.8,1,1.4,2.1,1.5,1.5,1.9,0.7,1.7,1.8,1.6,1.1,1.4,1.3,2.6,1.3,1.6,1.4,2,2.2,1.7,2]}},{"b":4,"v":{"total":[14,13.9,13.8,14.7,14.2,13.7,14.9,15.1,14.5,15,14.2,15.2,13.8,13.9,13.4],"script":[0.3,1,1,1.2,1.1,1.1,0.9,1.2,1.2,1,0.6,1.8,1.1,0.7,0.7],"paint":[12.8,11.9,12.2,12,11.2,11.5,13.1,12.7,12.3,12.8,12.3,12.3,11.8,12.1,11.7]}},{"b":5,"v":{"total":[11,10.7,11,10.9,11,11,11.3,10.7,10.9,10.9,11,10.6,10.9,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6],"paint":[9.9,9.5,9.9,9.6,9.2,9.8,9.9,9.4,9.8,9.7,9.7,9.6,9.7,9.4,9.6]}},{"b":6,"v":{"total":[291.7,290.6,297,295.5,293.2,294.3,293.2,293.2,292.5,293.9,296.1,292.7,292.9,295.4,294.5],"script":[68.7,69.9,72.1,71.8,71,72.3,71.2,70.8,69.9,70.8,72.6,71.3,71.2,72.4,71.9],"paint":[215.7,213.7,217.1,216.6,215.2,214.9,214.7,215.2,215.3,216,215.8,214.1,214.5,215.8,215]}},{"b":7,"v":{"total":[32.6,32.6,32.4,33.3,32.5,32.7,32.5,32.4,32.4,32.8,33.3,32.6,32.7,32.9,32.7],"script":[6.5,6.5,6.8,7,6.7,6.8,6.6,6.6,6.5,6.6,7,6.6,6.6,6.6,6.7],"paint":[25.3,25.2,24.7,25.3,24.9,25,25,24.9,24.9,25.3,25.4,25.1,25.1,25.3,25.2]}},{"b":8,"v":{"total":[11.9,11.2,11.9,11.7,12.4,11.8,11.3,10.8,10.6,12.4,11.2,10.8,11.2,10.7,12.9],"script":[9.4,9.3,10.2,9.7,10.1,10.1,9.2,9.3,8.7,10.1,9.3,9.6,8.7,8.6,10.4],"paint":[1.5,1.6,1.1,1.6,1.3,0.3,0.3,0.6,0.3,1.1,0.8,0.4,2.2,1.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.45]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[27.96]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, +{"f":31,"b":[{"b":0,"v":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"b":1,"v":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"b":2,"v":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"b":3,"v":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"b":4,"v":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"b":5,"v":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"b":6,"v":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"b":7,"v":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"b":8,"v":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.45]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[27.97]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, {"f":32,"b":[{"b":0,"v":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"b":1,"v":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"b":2,"v":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"b":3,"v":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"b":4,"v":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"b":5,"v":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"b":6,"v":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"b":7,"v":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"b":8,"v":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[23.77]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, {"f":33,"b":[{"b":0,"v":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"b":1,"v":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"b":2,"v":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"b":3,"v":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"b":4,"v":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"b":5,"v":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"b":6,"v":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"b":7,"v":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"b":8,"v":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.65]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49.4]}}]}, {"f":34,"b":[{"b":0,"v":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"b":1,"v":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"b":2,"v":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"b":3,"v":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"b":4,"v":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"b":5,"v":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"b":6,"v":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"b":7,"v":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"b":8,"v":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"b":9,"v":{"DEFAULT":[5.3]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.21]}},{"b":12,"v":{"DEFAULT":[6.25]}},{"b":13,"v":{"DEFAULT":[61.14]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[116.4]}}]}, {"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"b":1,"v":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"b":2,"v":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"b":3,"v":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"b":4,"v":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"b":5,"v":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"b":6,"v":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"b":7,"v":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"b":8,"v":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.15]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[34.03]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, {"f":36,"b":[{"b":0,"v":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"b":1,"v":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"b":2,"v":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"b":3,"v":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"b":4,"v":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"b":5,"v":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"b":6,"v":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"b":7,"v":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"b":8,"v":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.85]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.27]}},{"b":13,"v":{"DEFAULT":[30.98]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[78.2]}}]}, {"f":37,"b":[{"b":0,"v":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"b":1,"v":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"b":2,"v":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"b":3,"v":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"b":4,"v":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"b":5,"v":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"b":6,"v":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"b":7,"v":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"b":8,"v":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.29]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[264.7]}}]}, -{"f":38,"b":[{"b":0,"v":{"total":[31.3,30.9,31.2,31,31.1,31.5,31,31.3,31.1,31.3,31.1,30.9,31.3,31.6,31.6],"script":[8.7,8.6,8.8,9,8.9,9,8.8,8.8,8.8,8.9,9,8.9,9.1,9.1,9.1],"paint":[22,21.7,21.8,21.4,21.7,21.9,21.6,21.9,21.7,21.8,21.5,21.3,21.5,21.8,21.9]}},{"b":1,"v":{"total":[39.8,40.6,40.9,40.6,40.5,41.1,40.2,40.1,41.6,40.3,39.6,40.2,40.9,40.2,40.2],"script":[16.2,16.2,17,16.8,16.8,17.4,16.3,16.4,17.2,16.8,16.2,16.4,16.8,16.8,16.7],"paint":[23,23.8,23.3,23.1,23.1,23.1,23.3,23.1,23.8,22.9,22.8,23.2,23.5,22.8,22.9]}},{"b":2,"v":{"total":[12.1,13.1,11.9,11.7,11.7,12.3,11.3,12.1,13.1,12.2,12.7,12.7,12.1,12,11.8],"script":[1.5,1,1.5,1,0.7,1,1.5,1.5,1.3,1.8,1.8,2,1.5,1.6,0.9],"paint":[9.6,11.5,9.5,9.8,10,10.4,8.2,9.6,10.3,9.5,8.8,9.6,9.9,8.9,8.3]}},{"b":3,"v":{"total":[4.3,3.6,4.6,3.5,3.4,4.5,3.1,3,3.1,3.9,2.7,3.4,3.4,3.6,4.4,4.8,4.2,3.3,3.4,3.7,4.2,4.1,3,3.1,3.7],"script":[1.8,1.7,1.9,0.8,1,2.2,0.7,1.2,0.7,1.5,1.2,0.9,1.2,1.5,1.9,1.9,2.1,1.5,0.6,1.3,1.9,1.6,1.3,0.7,1.5],"paint":[1.8,1.1,1.8,1.6,2.3,1.8,1.9,1,2.3,1.5,1.4,1.6,1.5,1.4,2.4,2.7,0.8,1.6,1.6,1.7,2.1,2.3,1.5,1.9,1.8]}},{"b":4,"v":{"total":[16.5,15.5,16.4,15.9,15.1,16.5,16.5,16.5,16.1,17.1,16.5,16,16.4,15.8,15.7],"script":[3.2,2.6,3.3,3.1,3.1,3.5,2.8,3.5,3.1,3.5,2.8,2.9,2.6,3.3,2.7],"paint":[12.4,11.7,12.1,12.1,10.7,11.9,12.6,11.8,12.1,12.7,11.8,12.2,12.1,11.5,12.1]}},{"b":5,"v":{"total":[12.5,12.2,13,12.4,12.5,12.1,12.1,12,12.7,12.1,12.1,12.1,12.6,12.2,12.2],"script":[1.9,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.5],"paint":[10,10.1,10.4,9.7,9.9,9.6,9.6,9.3,10.2,9.7,9.6,9.6,10.2,9.9,10.3]}},{"b":6,"v":{"total":[316.1,314.4,317.7,316.5,318.8,317.3,316.9,316.4,317.4,318.4,319.7,317.6,318.6,322.3,316.3],"script":[88.8,87.4,89.6,89,91,91,89.8,90.3,91.6,88.9,91.5,89.3,91.6,90.3,90.1],"paint":[219.4,219.4,220.3,219.6,220.1,218.8,219.7,218.5,218.2,221.4,220.5,220.6,219.4,224.3,218.5]}},{"b":7,"v":{"total":[38.2,38.3,38.1,37.9,38.3,38.2,37.5,38.3,37.8,38.2,37.8,38.5,37.9,39.6,37.4],"script":[9.7,9.9,9.9,10.1,9.6,10.3,9.6,9.8,9.7,9.8,10,9.9,9.9,10.6,9.6],"paint":[27.4,27.4,27.2,26.7,27.5,27,26.8,27.4,27.1,27.4,26.8,27.6,27,27.9,26.7]}},{"b":8,"v":{"total":[24,25.8,24.7,26.3,24.1,24.6,24,24.5,23.9,24.2,25.7,27.8,24,24,24.3],"script":[21.5,23.5,22.4,23.9,22.3,22.4,21.7,23,21.8,21.9,23.6,25.4,21.7,22.2,22],"paint":[2,1.6,2,1.2,0.9,2,1.1,0.8,0.9,0.7,1.4,1.5,1.5,1,2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.25]}},{"b":11,"v":{"DEFAULT":[3.18]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[26.76]}},{"b":14,"v":{"DEFAULT":[8.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[41]}}]}, +{"f":38,"b":[{"b":0,"v":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"b":1,"v":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"b":2,"v":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"b":3,"v":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"b":4,"v":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"b":5,"v":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"b":6,"v":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"b":7,"v":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"b":8,"v":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[30]}},{"b":14,"v":{"DEFAULT":[9.3]}},{"b":15,"v":{"DEFAULT":[3.9]}},{"b":16,"v":{"DEFAULT":[42.9]}}]}, {"f":39,"b":[{"b":0,"v":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"b":1,"v":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"b":2,"v":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"b":3,"v":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"b":4,"v":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"b":5,"v":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"b":6,"v":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"b":7,"v":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"b":8,"v":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.89]}},{"b":13,"v":{"DEFAULT":[35.33]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[57.9]}}]}, {"f":40,"b":[{"b":0,"v":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"b":1,"v":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"b":2,"v":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"b":3,"v":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"b":4,"v":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"b":5,"v":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"b":6,"v":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"b":7,"v":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"b":8,"v":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.13]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[44.2]}}]}, {"f":41,"b":[{"b":0,"v":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"b":1,"v":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"b":2,"v":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"b":3,"v":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"b":4,"v":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"b":5,"v":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"b":6,"v":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"b":7,"v":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"b":8,"v":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[37.6]}}]}, @@ -104,7 +104,7 @@ export const results: RawResult[]=[ {"f":100,"b":[{"b":0,"v":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"b":1,"v":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"b":2,"v":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"b":3,"v":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"b":4,"v":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"b":5,"v":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"b":6,"v":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"b":7,"v":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"b":8,"v":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.53]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[29.02]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, {"f":101,"b":[{"b":0,"v":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"b":1,"v":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"b":2,"v":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"b":4,"v":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"b":5,"v":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"b":6,"v":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"b":7,"v":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"b":8,"v":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.79]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[20.86]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, {"f":102,"b":[{"b":0,"v":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"b":1,"v":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"b":2,"v":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"b":3,"v":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"b":4,"v":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"b":5,"v":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"b":6,"v":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"b":7,"v":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"b":8,"v":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[47.8]}}]}, -{"f":103,"b":[{"b":0,"v":{"total":[24.3,24.1,24.2,24.5,24.1,23.8,24.7,24.3,24.2,26.1,24.4,24,24.1,24.2,24.6],"script":[2.6,2.5,2.6,2.5,2.6,2.5,2.7,2.5,2.7,2.6,2.5,2.6,2.6,2.5,2.6],"paint":[21.4,21.2,21.2,21.6,21.2,21,21.6,21.4,21.2,23.1,21.5,21,21.1,21.3,21.5]}},{"b":1,"v":{"total":[26.7,27,27,27.1,26.7,26.9,26.8,27.1,27.1,26.7,27.3,27.6,27,27.4,27],"script":[4.3,4.4,4.4,4.6,4.6,4.5,4.5,4.4,5,4.4,4.6,4.9,4.4,4.5,4.5],"paint":[22,22.1,22.1,22.1,21.7,22,21.9,22.2,21.7,21.9,22.3,22.3,22.1,22.5,22.1]}},{"b":2,"v":{"total":[10.5,10.9,10.1,10.9,10.4,10.1,10.6,11,10.4,10.4,10.6,9.9,11.2,10.7,10.6],"script":[0.2,0.6,0.1,0.7,0.1,0.8,0.7,1.2,1,0.6,0.6,0.1,0.9,0.8,0.7],"paint":[9.3,9.4,8.3,8.4,9.2,7.8,9.2,8.7,8,8.4,9.1,8.7,9.1,8.8,8.5]}},{"b":3,"v":{"total":[5.8,3.4,2.2,3,3.2,3.3,3,2.5,3,2.5,2.7,3.2,3.1,3.2,2.7,3,2.7,2.9,2.4,3.2,3.3,2.9,2.6,2.5,2.9],"script":[0.7,1.1,0.6,0.8,0.8,0.9,0.9,0.5,1.1,0.7,0.2,0.2,1,1,0.1,0.9,0.5,0.2,0.6,0.6,1.3,0.5,0.2,0.6,0.8],"paint":[1.4,2.2,1.4,2,1.6,2.2,1.4,1,1.1,1.6,1.2,2.3,2,1.8,1.7,1.6,2.1,2.3,1,2,1.8,1.1,1.3,1.1,1.4]}},{"b":4,"v":{"total":[13.5,13.7,13.1,14.6,14.3,13.3,13.6,13.1,14.1,13.6,14.3,13.8,13.5,13.7,13.3],"script":[0.2,0.9,0.6,1.2,1,0.6,0.2,1,0.9,0.8,1.1,1,1.3,0.6,0.9],"paint":[12.3,11,11.4,12.3,12.1,11.8,12.4,10.6,11.6,11.2,12.2,11.8,10.8,12.2,10.9]}},{"b":5,"v":{"total":[10.9,10.4,10.5,10.7,10.7,10.4,10.1,10.4,10.4,10.5,10.3,10.9,10.3,10.6,10.2],"script":[0.3,0.3,0.2,0.3,0.5,0.4,0.4,0.3,0.4,0.3,0.2,0.2,0.5,0.3,0.5],"paint":[10.2,9.3,9.7,9.8,9.9,9.4,9.3,9.4,9.2,9.4,9.5,10.2,9.1,9.4,9.2]}},{"b":6,"v":{"total":[257.6,258,253.4,257.3,256.3,257.1,256.4,256.6,258,256.9,257.1,256.7,256.1,256.4,256.2],"script":[26.2,27.1,26,26.5,26.9,27,26.4,27,27,26.7,26.2,26.4,27,26.1,26.2],"paint":[223.7,223.8,220.1,223.5,222.2,222.8,222.8,222.5,223.8,223.1,223.6,223.1,222.1,223,222.7]}},{"b":7,"v":{"total":[27.7,27.5,29,27.7,28.9,27.7,28.9,27.6,27.7,28.3,28,28.1,28,28.4,28.4],"script":[2.4,2.5,2.7,2.4,2.7,2.5,2.6,2.5,2.4,2.5,2.5,2.5,2.6,2.5,2.6],"paint":[24.5,24.3,25.5,24.6,25.5,24.5,25.5,24.3,24.5,25,24.8,24.8,24.6,25.1,25.1]}},{"b":8,"v":{"total":[10.1,9.2,9.2,9.1,10.2,8.8,9,9.7,9,8.9,9.8,9.2,9.2,9.5,8.6],"script":[8.1,6.4,7.4,7.3,8.1,7,7,7.5,6.9,7.5,7.5,7.4,7.1,7.6,7.1],"paint":[1.1,1.2,0.3,1.6,1.4,1,1.2,1,1,0.3,2.1,0.9,1,1.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[19.02]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":103,"b":[{"b":0,"v":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"b":1,"v":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"b":2,"v":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"b":3,"v":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"b":4,"v":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"b":5,"v":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"b":6,"v":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"b":7,"v":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"b":8,"v":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.49]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.96]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[46.1]}}]}, {"f":104,"b":[{"b":0,"v":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"b":1,"v":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"b":2,"v":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"b":3,"v":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"b":4,"v":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"b":5,"v":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"b":6,"v":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"b":7,"v":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"b":8,"v":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.77]}},{"b":11,"v":{"DEFAULT":[3.81]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[31.38]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[50.8]}}]}, {"f":105,"b":[{"b":0,"v":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"b":1,"v":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"b":2,"v":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"b":3,"v":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"b":4,"v":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"b":5,"v":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"b":6,"v":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"b":7,"v":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"b":8,"v":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.46]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[25.83]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[91.7]}}]}, {"f":106,"b":[{"b":0,"v":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"b":1,"v":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"b":2,"v":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"b":3,"v":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"b":4,"v":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"b":5,"v":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"b":6,"v":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"b":7,"v":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"b":8,"v":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.04]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[39.64]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93.8]}}]}, @@ -131,7 +131,7 @@ export const results: RawResult[]=[ {"f":127,"b":[{"b":0,"v":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"b":1,"v":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"b":2,"v":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"b":4,"v":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"b":5,"v":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"b":6,"v":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"b":7,"v":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"b":8,"v":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.76]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.17]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, {"f":128,"b":[{"b":0,"v":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"b":1,"v":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"b":2,"v":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"b":3,"v":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"b":4,"v":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"b":5,"v":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"b":6,"v":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"b":7,"v":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"b":8,"v":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.15]}},{"b":13,"v":{"DEFAULT":[21.75]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[93]}}]}, {"f":129,"b":[{"b":0,"v":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"b":1,"v":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"b":2,"v":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"b":3,"v":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"b":4,"v":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"b":5,"v":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"b":6,"v":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"b":7,"v":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"b":8,"v":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.06]}},{"b":11,"v":{"DEFAULT":[6.65]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.79]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[159.1]}}]}, -{"f":130,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.1,23.5,23.4,23.3,23.4,23.1,23.4,23.3,23.2,23.1,23.3,23],"script":[1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.5,1.4,1.4,1.4,1.4,1.4],"paint":[21.3,21.2,21.3,21.3,21.7,21.6,21.5,21.6,21.3,21.5,21.5,21.4,21.3,21.5,21.2]}},{"b":1,"v":{"total":[26,25.7,25.5,25.9,26,25.8,26.1,25.9,25.7,25.6,25.7,25.6,26,25.6,25.9],"script":[3.4,3.3,3.3,3.3,3.3,3.3,3.5,3.4,3.5,3.3,3.4,3.5,3.5,3.3,3.3],"paint":[22.1,22,21.8,22.2,22.4,22.1,22.1,22.1,21.8,21.9,21.9,21.8,22.1,21.9,22.2]}},{"b":2,"v":{"total":[10.6,10.9,9.7,10.4,9.8,9.6,10.1,10.1,10,9.8,9.8,10.3,10.5,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.3,0.1],"paint":[9.2,9.3,8.8,9.1,8,8.5,9.1,8.4,8.4,8.2,8.5,8.7,9.1,9.3,9]}},{"b":3,"v":{"total":[2.1,2.6,2.4,2.7,2.6,3.3,2.3,2.8,1.9,2.7,2.4,2,2.8,1.6,2.4,2,2.9,2.2,1.9,2.7,2.1,2.4,2.4,2.5,2],"script":[0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.5,0.1,0.4,0.1,0.1,0.3,0.1,0.5,0.1,0.7,0.1,0.1,0.1,0.2,0.9,0.1,0.1,0.1],"paint":[1.5,1.7,1.9,2.2,2,2,1.1,1.6,1,2.1,0.8,1.8,2.4,0.7,1.8,1.8,2,1.4,1.1,2.3,1.3,1,2.1,2.3,1.1]}},{"b":4,"v":{"total":[11.7,12.5,12.5,11.9,12.8,12,12.3,12,13,12.9,13.1,13,12.3,11.9,12.2],"script":[0,0.1,0,0,0,0.1,0,0,0.4,0.1,0.9,0.6,0.1,0.1,0],"paint":[10.2,11.6,11.2,10.9,11.6,10.4,11.6,11.3,11.7,11.8,11.4,11,11.3,10.3,10.4]}},{"b":5,"v":{"total":[10.1,10,10.4,10.4,10.2,10.5,10.4,11.5,10.1,10,10.3,10.2,11,10.8,10.2],"script":[0.2,0.2,0.3,0.3,0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.1,0.3,0.1,0.1],"paint":[9.3,9.2,9.5,9.6,9.5,9.6,8.9,10.3,9.6,9.5,9.3,9.6,10.1,10.1,9.5]}},{"b":6,"v":{"total":[239,237.3,239.6,240.4,237.9,237.9,238.5,237,242.4,238.2,237.5,239.7,241.3,240.2,239.3],"script":[15.4,15,15.2,15.3,15.3,15.4,15.1,14.9,15.2,15.5,15.5,15.2,15.3,15,15.4],"paint":[216.4,215,217.1,217.7,215.3,215.3,216.2,214.7,219.5,215.4,214.8,217.2,218.8,217.7,216.4]}},{"b":7,"v":{"total":[26.9,27.1,27.4,27,27.2,28.1,26.7,27.8,27.4,26.7,27.8,27.4,26.8,27.8,29.1],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.3,1.4,1.3],"paint":[24.8,24.9,25.3,24.9,25.1,25.9,24.6,25.6,25.2,24.6,25.7,25.2,24.7,25.6,27]}},{"b":8,"v":{"total":[8.7,9.4,8.7,8.9,9.1,8.9,8.7,9.4,9.1,8.9,9.3,9.3,10,8.6,9.4],"script":[7.2,7.6,6.6,7.4,7.3,7.3,6.7,7.2,6.8,7.4,7.1,7.5,7.7,6.9,7.3],"paint":[0.2,1.6,1.4,0.2,0.6,1.4,0.8,1.3,2.1,0.8,1.9,1,1.2,0.9,1.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[23.6,23.6,23.5,23.4,23.2,23.2,23.5,23.6,23,23.5,23.4,23.2,23.5,23.7,23],"script":[1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.5,1.5,1.4],"paint":[21.8,21.8,21.6,21.5,21.4,21.4,21.6,21.7,21.2,21.6,21.6,21.4,21.6,21.9,21.2]}},{"b":1,"v":{"total":[25.8,25.9,25.7,26,26.1,25.9,25.7,25.8,25.8,26,25.6,26.1,26.2,26.4,26.3],"script":[3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.1,3.3,3.3,3.4,3.4,3.6,3.5],"paint":[22.1,22.2,22,22.4,22.4,22.1,22,22.1,22.2,22.3,21.9,22.3,22.4,22.4,22.4]}},{"b":2,"v":{"total":[9.8,10.2,9.8,10.7,9.7,10.3,11,10.3,10.4,12.3,10.8,11.3,10.8,10.4,10.8],"script":[0.1,0.1,0.1,1,0.1,0.7,1,0.3,0.1,0.1,0.5,0.4,0.6,0.1,0.3],"paint":[8.3,9.2,8.8,8.7,7.7,8.1,8.9,8.9,8.4,11.3,9.7,9.7,9.7,8.6,9.3]}},{"b":3,"v":{"total":[3,2.2,1.9,2.4,1.9,2.2,2.1,2.8,3,2.3,2.4,2.3,2.7,3.2,2.3,2.4,2.4,2.4,2.7,2.3,2.2,1.8,2.4,2.4,2.9],"script":[0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,1.1,0.3,0.2,0.7,0.5,0.5,0.3,0.1,0.2,0.5,0.7,0.8],"paint":[2.3,2,1.1,1.6,1.7,1.6,1.3,2,2.8,2.1,2.2,1.4,2.5,1.5,1.3,1.8,1.5,1.4,1.5,1.6,1.3,1.1,1.8,1.6,1.5]}},{"b":4,"v":{"total":[12.8,12.4,14.8,13.4,12.7,12.4,12.3,12,12.3,13.3,12.4,12.7,12.6,12.7,11.9],"script":[0.1,0,0.1,0.1,0,0.3,0.1,0,0,0.1,0,0.1,0,0,0],"paint":[11.4,10.9,12.7,10.7,11.2,10.9,11.3,10.4,11.3,12,9.9,11.6,11.4,12.2,10.8]}},{"b":5,"v":{"total":[10.4,10.5,11.4,10.8,10.9,10.9,11.1,10.9,10.9,10.7,10.5,10.9,10.9,11,10.4],"script":[0.2,0.2,0.3,0.4,0.3,0.5,0.1,0.3,0.5,0.3,0.1,0.5,0.3,0.2,0.4],"paint":[9.4,9.7,10.4,9.7,9.9,9.8,10.1,9.9,9.8,9.5,9.8,9.3,9.8,10.3,9.6]}},{"b":6,"v":{"total":[245.1,244.4,241.6,243,244.3,241.9,242.4,260.3,241.5,240.4,241.7,243.4,245.3,242.7,241.7],"script":[15.1,15.3,15,15.4,15.2,15,15,15.3,15.3,14.6,15.4,15,15.1,15.2,15.2],"paint":[222.4,221.5,219,220,221.7,219.1,220,237.3,218.6,218.2,218.8,220.9,222.3,219.9,218.7]}},{"b":7,"v":{"total":[27.3,27.4,27.4,27.8,27.6,27,26.9,27.3,27.7,27.6,27.7,27.1,26.8,27.6,28.2],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.4,1.3,1.4,1.5],"paint":[25.2,25.3,25.3,25.6,25.4,24.9,24.8,25.2,25.5,25.4,25.5,25,24.7,25.5,25.9]}},{"b":8,"v":{"total":[8.8,10.2,9.6,9.6,9.6,9.6,9,9.4,10.6,10.3,9.4,9.2,8.6,9.9,9.3],"script":[7.5,7.9,7.7,7.3,7.9,7.4,7.1,7,8.1,8.1,7.9,7.3,6.9,8.3,7.6],"paint":[0.3,0.5,0.3,2.1,1.1,1.3,1,1.2,1.1,1.2,0.3,0.6,0.3,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, {"f":131,"b":[{"b":0,"v":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"b":1,"v":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"b":2,"v":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"b":3,"v":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"b":4,"v":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"b":6,"v":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"b":7,"v":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"b":8,"v":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.58]}},{"b":13,"v":{"DEFAULT":[12.47]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.2]}}]}, {"f":132,"b":[{"b":0,"v":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"b":2,"v":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"b":4,"v":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"b":5,"v":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"b":6,"v":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"b":7,"v":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"b":8,"v":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.75]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[12.09]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, {"f":133,"b":[{"b":0,"v":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"b":1,"v":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"b":2,"v":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"b":3,"v":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"b":4,"v":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"b":5,"v":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"b":6,"v":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"b":7,"v":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"b":8,"v":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.37]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, @@ -147,8 +147,8 @@ export const results: RawResult[]=[ {"f":143,"b":[{"b":0,"v":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"b":1,"v":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"b":2,"v":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"b":3,"v":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"b":5,"v":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"b":6,"v":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"b":7,"v":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"b":8,"v":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.97]}},{"b":12,"v":{"DEFAULT":[1.83]}},{"b":13,"v":{"DEFAULT":[13.92]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, {"f":144,"b":[{"b":0,"v":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"b":1,"v":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"b":2,"v":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"b":3,"v":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"b":4,"v":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"b":5,"v":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"b":6,"v":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"b":7,"v":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"b":8,"v":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.59]}},{"b":12,"v":{"DEFAULT":[4.95]}},{"b":13,"v":{"DEFAULT":[47.09]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[255.9]}}]}, {"f":145,"b":[{"b":0,"v":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"b":2,"v":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"b":3,"v":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"b":4,"v":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"b":5,"v":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"b":6,"v":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"b":7,"v":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"b":8,"v":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.56]}},{"b":11,"v":{"DEFAULT":[6.83]}},{"b":12,"v":{"DEFAULT":[5.13]}},{"b":13,"v":{"DEFAULT":[48.33]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[262.2]}}]}, -{"f":146,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, -{"f":147,"b":[]}, +{"f":146,"b":[{"b":0,"v":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"b":1,"v":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"b":2,"v":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"b":3,"v":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"b":4,"v":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"b":6,"v":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"b":7,"v":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"b":8,"v":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.06]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[24.1]}},{"b":14,"v":{"DEFAULT":[11.1]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, +{"f":147,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, {"f":148,"b":[]}, {"f":149,"b":[]}, {"f":150,"b":[]}, @@ -211,6 +211,7 @@ export const results: RawResult[]=[ {"f":207,"b":[]}, {"f":208,"b":[]}, {"f":209,"b":[]}, -{"f":210,"b":[]},]; -export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.31-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":210,"b":[]}, +{"f":211,"b":[]},]; +export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.1-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v1.0.8-keyed","dir":"keyed/hellajs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zess-v1.0.8-keyed","dir":"keyed/zess","keyed":true,"frameworkHomeURL":"https://rpsffx.github.io/zess/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index 94ef759cb..e69a008a3 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.7,28.8,29.2,29.1,28.7,29.5,28.8,28.8,28.9,28.6,29.2,28.9,28.6,29.4],"script":[6.4,6.5,6.4,6.8,7.1,6.5,6.7,6.6,6.6,6.5,6.7,6.6,6.5,6.5,6.8],"paint":[21.6,21.7,21.9,21.8,21.5,21.6,22.3,21.7,21.7,21.8,21.4,22.1,21.8,21.6,22]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.2,31.9,33.7,34.4,33.7,32.1,32.2,32.6,32.1,32.9,31.3,31.9,32.1,31.9],"script":[9,8.9,9,9.3,9,9.1,8.7,8.7,9.3,8.7,9.2,8.7,9,8.6,9.2],"paint":[22.7,22.7,22.4,23.8,24.8,24,22.9,22.9,22.7,22.9,23.1,22.2,22.4,22.9,22.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.5,13,13.4,12.6,13.2,13.7,13.6,12.5,13,13.9,13,13.6,13.7,13.6],"script":[3.2,2.9,3.2,3.1,2.5,2.5,3.1,3.4,3.3,2.8,3.6,2.5,3,3,2.6],"paint":[8.6,7.6,8.4,9,8.6,9.9,9.4,8.7,8.3,9.6,8,9.5,9.2,9.7,9.8]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.9,3.3,3.1,2.8,3.9,3.3,3.8,3.6,3.6,3.3,3.1,3.3,3.6,2.9,3.1,3.2,3.5,3,3.5,3.3,3.5,3.7,2.9,4.5],"script":[1.4,1.1,1.2,1.2,1.2,1.5,0.3,1.2,1.5,1.1,1.2,1,1.4,0.9,1,0.6,0.9,0.6,1.6,1.1,1.3,1.4,1.3,1.1,1.8],"paint":[1.3,1.5,2,1.8,1,1.4,2.1,1.5,1.5,1.9,0.7,1.7,1.8,1.6,1.1,1.4,1.3,2.6,1.3,1.6,1.4,2,2.2,1.7,2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.8,14.7,14.2,13.7,14.9,15.1,14.5,15,14.2,15.2,13.8,13.9,13.4],"script":[0.3,1,1,1.2,1.1,1.1,0.9,1.2,1.2,1,0.6,1.8,1.1,0.7,0.7],"paint":[12.8,11.9,12.2,12,11.2,11.5,13.1,12.7,12.3,12.8,12.3,12.3,11.8,12.1,11.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.7,11,10.9,11,11,11.3,10.7,10.9,10.9,11,10.6,10.9,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6],"paint":[9.9,9.5,9.9,9.6,9.2,9.8,9.9,9.4,9.8,9.7,9.7,9.6,9.7,9.4,9.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[291.7,290.6,297,295.5,293.2,294.3,293.2,293.2,292.5,293.9,296.1,292.7,292.9,295.4,294.5],"script":[68.7,69.9,72.1,71.8,71,72.3,71.2,70.8,69.9,70.8,72.6,71.3,71.2,72.4,71.9],"paint":[215.7,213.7,217.1,216.6,215.2,214.9,214.7,215.2,215.3,216,215.8,214.1,214.5,215.8,215]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,32.6,32.4,33.3,32.5,32.7,32.5,32.4,32.4,32.8,33.3,32.6,32.7,32.9,32.7],"script":[6.5,6.5,6.8,7,6.7,6.8,6.6,6.6,6.5,6.6,7,6.6,6.6,6.6,6.7],"paint":[25.3,25.2,24.7,25.3,24.9,25,25,24.9,24.9,25.3,25.4,25.1,25.1,25.3,25.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.2,11.9,11.7,12.4,11.8,11.3,10.8,10.6,12.4,11.2,10.8,11.2,10.7,12.9],"script":[9.4,9.3,10.2,9.7,10.1,10.1,9.2,9.3,8.7,10.1,9.3,9.6,8.7,8.6,10.4],"paint":[1.5,1.6,1.1,1.6,1.3,0.3,0.3,0.6,0.3,1.1,0.8,0.4,2.2,1.2,1.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5711421966552734]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4149084091186523]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.448976516723633]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7070350646972656]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95517349243164]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,31.2,31,31.1,31.5,31,31.3,31.1,31.3,31.1,30.9,31.3,31.6,31.6],"script":[8.7,8.6,8.8,9,8.9,9,8.8,8.8,8.8,8.9,9,8.9,9.1,9.1,9.1],"paint":[22,21.7,21.8,21.4,21.7,21.9,21.6,21.9,21.7,21.8,21.5,21.3,21.5,21.8,21.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[39.8,40.6,40.9,40.6,40.5,41.1,40.2,40.1,41.6,40.3,39.6,40.2,40.9,40.2,40.2],"script":[16.2,16.2,17,16.8,16.8,17.4,16.3,16.4,17.2,16.8,16.2,16.4,16.8,16.8,16.7],"paint":[23,23.8,23.3,23.1,23.1,23.1,23.3,23.1,23.8,22.9,22.8,23.2,23.5,22.8,22.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,13.1,11.9,11.7,11.7,12.3,11.3,12.1,13.1,12.2,12.7,12.7,12.1,12,11.8],"script":[1.5,1,1.5,1,0.7,1,1.5,1.5,1.3,1.8,1.8,2,1.5,1.6,0.9],"paint":[9.6,11.5,9.5,9.8,10,10.4,8.2,9.6,10.3,9.5,8.8,9.6,9.9,8.9,8.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.6,4.6,3.5,3.4,4.5,3.1,3,3.1,3.9,2.7,3.4,3.4,3.6,4.4,4.8,4.2,3.3,3.4,3.7,4.2,4.1,3,3.1,3.7],"script":[1.8,1.7,1.9,0.8,1,2.2,0.7,1.2,0.7,1.5,1.2,0.9,1.2,1.5,1.9,1.9,2.1,1.5,0.6,1.3,1.9,1.6,1.3,0.7,1.5],"paint":[1.8,1.1,1.8,1.6,2.3,1.8,1.9,1,2.3,1.5,1.4,1.6,1.5,1.4,2.4,2.7,0.8,1.6,1.6,1.7,2.1,2.3,1.5,1.9,1.8]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.4,15.9,15.1,16.5,16.5,16.5,16.1,17.1,16.5,16,16.4,15.8,15.7],"script":[3.2,2.6,3.3,3.1,3.1,3.5,2.8,3.5,3.1,3.5,2.8,2.9,2.6,3.3,2.7],"paint":[12.4,11.7,12.1,12.1,10.7,11.9,12.6,11.8,12.1,12.7,11.8,12.2,12.1,11.5,12.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,13,12.4,12.5,12.1,12.1,12,12.7,12.1,12.1,12.1,12.6,12.2,12.2],"script":[1.9,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.5],"paint":[10,10.1,10.4,9.7,9.9,9.6,9.6,9.3,10.2,9.7,9.6,9.6,10.2,9.9,10.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[316.1,314.4,317.7,316.5,318.8,317.3,316.9,316.4,317.4,318.4,319.7,317.6,318.6,322.3,316.3],"script":[88.8,87.4,89.6,89,91,91,89.8,90.3,91.6,88.9,91.5,89.3,91.6,90.3,90.1],"paint":[219.4,219.4,220.3,219.6,220.1,218.8,219.7,218.5,218.2,221.4,220.5,220.6,219.4,224.3,218.5]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.3,38.1,37.9,38.3,38.2,37.5,38.3,37.8,38.2,37.8,38.5,37.9,39.6,37.4],"script":[9.7,9.9,9.9,10.1,9.6,10.3,9.6,9.8,9.7,9.8,10,9.9,9.9,10.6,9.6],"paint":[27.4,27.4,27.2,26.7,27.5,27,26.8,27.4,27.1,27.4,26.8,27.6,27,27.9,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,25.8,24.7,26.3,24.1,24.6,24,24.5,23.9,24.2,25.7,27.8,24,24,24.3],"script":[21.5,23.5,22.4,23.9,22.3,22.4,21.7,23,21.8,21.9,23.6,25.4,21.7,22.2,22],"paint":[2,1.6,2,1.2,0.9,2,1.1,0.8,0.9,0.7,1.4,1.5,1.5,1,2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.580047607421875]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2467422485351562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1811952590942383]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8026542663574219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.7640380859375]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.761427879333496]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.528393745422363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.534985542297363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.5551347732543945]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.22614765167236]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5939311981201172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0459794998168945]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.073793411254883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6935033798217773]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.88069725036621]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6121883392333984]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.617323875427246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.631587028503418]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8059463500976562]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.044757843017578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24.2,24.5,24.1,23.8,24.7,24.3,24.2,26.1,24.4,24,24.1,24.2,24.6],"script":[2.6,2.5,2.6,2.5,2.6,2.5,2.7,2.5,2.7,2.6,2.5,2.6,2.6,2.5,2.6],"paint":[21.4,21.2,21.2,21.6,21.2,21,21.6,21.4,21.2,23.1,21.5,21,21.1,21.3,21.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27,27,27.1,26.7,26.9,26.8,27.1,27.1,26.7,27.3,27.6,27,27.4,27],"script":[4.3,4.4,4.4,4.6,4.6,4.5,4.5,4.4,5,4.4,4.6,4.9,4.4,4.5,4.5],"paint":[22,22.1,22.1,22.1,21.7,22,21.9,22.2,21.7,21.9,22.3,22.3,22.1,22.5,22.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.9,10.1,10.9,10.4,10.1,10.6,11,10.4,10.4,10.6,9.9,11.2,10.7,10.6],"script":[0.2,0.6,0.1,0.7,0.1,0.8,0.7,1.2,1,0.6,0.6,0.1,0.9,0.8,0.7],"paint":[9.3,9.4,8.3,8.4,9.2,7.8,9.2,8.7,8,8.4,9.1,8.7,9.1,8.8,8.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[5.8,3.4,2.2,3,3.2,3.3,3,2.5,3,2.5,2.7,3.2,3.1,3.2,2.7,3,2.7,2.9,2.4,3.2,3.3,2.9,2.6,2.5,2.9],"script":[0.7,1.1,0.6,0.8,0.8,0.9,0.9,0.5,1.1,0.7,0.2,0.2,1,1,0.1,0.9,0.5,0.2,0.6,0.6,1.3,0.5,0.2,0.6,0.8],"paint":[1.4,2.2,1.4,2,1.6,2.2,1.4,1,1.1,1.6,1.2,2.3,2,1.8,1.7,1.6,2.1,2.3,1,2,1.8,1.1,1.3,1.1,1.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.7,13.1,14.6,14.3,13.3,13.6,13.1,14.1,13.6,14.3,13.8,13.5,13.7,13.3],"script":[0.2,0.9,0.6,1.2,1,0.6,0.2,1,0.9,0.8,1.1,1,1.3,0.6,0.9],"paint":[12.3,11,11.4,12.3,12.1,11.8,12.4,10.6,11.6,11.2,12.2,11.8,10.8,12.2,10.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.5,10.7,10.7,10.4,10.1,10.4,10.4,10.5,10.3,10.9,10.3,10.6,10.2],"script":[0.3,0.3,0.2,0.3,0.5,0.4,0.4,0.3,0.4,0.3,0.2,0.2,0.5,0.3,0.5],"paint":[10.2,9.3,9.7,9.8,9.9,9.4,9.3,9.4,9.2,9.4,9.5,10.2,9.1,9.4,9.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[257.6,258,253.4,257.3,256.3,257.1,256.4,256.6,258,256.9,257.1,256.7,256.1,256.4,256.2],"script":[26.2,27.1,26,26.5,26.9,27,26.4,27,27,26.7,26.2,26.4,27,26.1,26.2],"paint":[223.7,223.8,220.1,223.5,222.2,222.8,222.8,222.5,223.8,223.1,223.6,223.1,222.1,223,222.7]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.5,29,27.7,28.9,27.7,28.9,27.6,27.7,28.3,28,28.1,28,28.4,28.4],"script":[2.4,2.5,2.7,2.4,2.7,2.5,2.6,2.5,2.4,2.5,2.5,2.5,2.6,2.5,2.6],"paint":[24.5,24.3,25.5,24.6,25.5,24.5,25.5,24.3,24.5,25,24.8,24.8,24.6,25.1,25.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.2,9.2,9.1,10.2,8.8,9,9.7,9,8.9,9.8,9.2,9.2,9.5,8.6],"script":[8.1,6.4,7.4,7.3,8.1,7,7,7.5,6.9,7.5,7.5,7.4,7.1,7.6,7.1],"paint":[1.1,1.2,0.3,1.6,1.4,1,1.2,1,1,0.3,2.1,0.9,1,1.7,0.6]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5924558639526367]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56630802154541]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6200637817382812]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.76953125]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.017321586608887]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.1,23.5,23.4,23.3,23.4,23.1,23.4,23.3,23.2,23.1,23.3,23],"script":[1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.5,1.4,1.4,1.4,1.4,1.4],"paint":[21.3,21.2,21.3,21.3,21.7,21.6,21.5,21.6,21.3,21.5,21.5,21.4,21.3,21.5,21.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.5,25.9,26,25.8,26.1,25.9,25.7,25.6,25.7,25.6,26,25.6,25.9],"script":[3.4,3.3,3.3,3.3,3.3,3.3,3.5,3.4,3.5,3.3,3.4,3.5,3.5,3.3,3.3],"paint":[22.1,22,21.8,22.2,22.4,22.1,22.1,22.1,21.8,21.9,21.9,21.8,22.1,21.9,22.2]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.7,10.4,9.8,9.6,10.1,10.1,10,9.8,9.8,10.3,10.5,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.3,0.1],"paint":[9.2,9.3,8.8,9.1,8,8.5,9.1,8.4,8.4,8.2,8.5,8.7,9.1,9.3,9]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.6,2.4,2.7,2.6,3.3,2.3,2.8,1.9,2.7,2.4,2,2.8,1.6,2.4,2,2.9,2.2,1.9,2.7,2.1,2.4,2.4,2.5,2],"script":[0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.5,0.1,0.4,0.1,0.1,0.3,0.1,0.5,0.1,0.7,0.1,0.1,0.1,0.2,0.9,0.1,0.1,0.1],"paint":[1.5,1.7,1.9,2.2,2,2,1.1,1.6,1,2.1,0.8,1.8,2.4,0.7,1.8,1.8,2,1.4,1.1,2.3,1.3,1,2.1,2.3,1.1]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[11.7,12.5,12.5,11.9,12.8,12,12.3,12,13,12.9,13.1,13,12.3,11.9,12.2],"script":[0,0.1,0,0,0,0.1,0,0,0.4,0.1,0.9,0.6,0.1,0.1,0],"paint":[10.2,11.6,11.2,10.9,11.6,10.4,11.6,11.3,11.7,11.8,11.4,11,11.3,10.3,10.4]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10,10.4,10.4,10.2,10.5,10.4,11.5,10.1,10,10.3,10.2,11,10.8,10.2],"script":[0.2,0.2,0.3,0.3,0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.1,0.3,0.1,0.1],"paint":[9.3,9.2,9.5,9.6,9.5,9.6,8.9,10.3,9.6,9.5,9.3,9.6,10.1,10.1,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[239,237.3,239.6,240.4,237.9,237.9,238.5,237,242.4,238.2,237.5,239.7,241.3,240.2,239.3],"script":[15.4,15,15.2,15.3,15.3,15.4,15.1,14.9,15.2,15.5,15.5,15.2,15.3,15,15.4],"paint":[216.4,215,217.1,217.7,215.3,215.3,216.2,214.7,219.5,215.4,214.8,217.2,218.8,217.7,216.4]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.1,27.4,27,27.2,28.1,26.7,27.8,27.4,26.7,27.8,27.4,26.8,27.8,29.1],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.3,1.4,1.3],"paint":[24.8,24.9,25.3,24.9,25.1,25.9,24.6,25.6,25.2,24.6,25.7,25.2,24.7,25.6,27]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,8.7,8.9,9.1,8.9,8.7,9.4,9.1,8.9,9.3,9.3,10,8.6,9.4],"script":[7.2,7.6,6.6,7.4,7.3,7.3,6.7,7.2,6.8,7.4,7.1,7.5,7.7,6.9,7.3],"paint":[0.2,1.6,1.4,0.2,0.6,1.4,0.8,1.3,2.1,0.8,1.9,1,1.2,0.9,1.9]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5546140670776367]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.927647590637207]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9422225952148438]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6173362731933594]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.010297775268555]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}}] \ No newline at end of file +[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"framework":"endr-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"framework":"endr-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5984573364257812]}},{"framework":"endr-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.399202346801758]}},{"framework":"endr-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4502687454223633]}},{"framework":"endr-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6829929351806641]}},{"framework":"endr-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.966672897338867]}},{"framework":"endr-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902833938598633]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.638214111328125]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.687821388244629]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6624860763549805]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.004850387573242]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.761427879333496]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.528393745422363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.534985542297363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.5551347732543945]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.22614765167236]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5939311981201172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0459794998168945]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.073793411254883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6935033798217773]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.88069725036621]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6121883392333984]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.617323875427246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.631587028503418]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8059463500976562]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.044757843017578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6048908233642578]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4003725051879883]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4941368103027344]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7644691467285156]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.955724716186523]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.5,23.4,23.2,23.2,23.5,23.6,23,23.5,23.4,23.2,23.5,23.7,23],"script":[1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.5,1.5,1.4],"paint":[21.8,21.8,21.6,21.5,21.4,21.4,21.6,21.7,21.2,21.6,21.6,21.4,21.6,21.9,21.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.8,25.9,25.7,26,26.1,25.9,25.7,25.8,25.8,26,25.6,26.1,26.2,26.4,26.3],"script":[3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.1,3.3,3.3,3.4,3.4,3.6,3.5],"paint":[22.1,22.2,22,22.4,22.4,22.1,22,22.1,22.2,22.3,21.9,22.3,22.4,22.4,22.4]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.2,9.8,10.7,9.7,10.3,11,10.3,10.4,12.3,10.8,11.3,10.8,10.4,10.8],"script":[0.1,0.1,0.1,1,0.1,0.7,1,0.3,0.1,0.1,0.5,0.4,0.6,0.1,0.3],"paint":[8.3,9.2,8.8,8.7,7.7,8.1,8.9,8.9,8.4,11.3,9.7,9.7,9.7,8.6,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[3,2.2,1.9,2.4,1.9,2.2,2.1,2.8,3,2.3,2.4,2.3,2.7,3.2,2.3,2.4,2.4,2.4,2.7,2.3,2.2,1.8,2.4,2.4,2.9],"script":[0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,1.1,0.3,0.2,0.7,0.5,0.5,0.3,0.1,0.2,0.5,0.7,0.8],"paint":[2.3,2,1.1,1.6,1.7,1.6,1.3,2,2.8,2.1,2.2,1.4,2.5,1.5,1.3,1.8,1.5,1.4,1.5,1.6,1.3,1.1,1.8,1.6,1.5]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.4,14.8,13.4,12.7,12.4,12.3,12,12.3,13.3,12.4,12.7,12.6,12.7,11.9],"script":[0.1,0,0.1,0.1,0,0.3,0.1,0,0,0.1,0,0.1,0,0,0],"paint":[11.4,10.9,12.7,10.7,11.2,10.9,11.3,10.4,11.3,12,9.9,11.6,11.4,12.2,10.8]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,11.4,10.8,10.9,10.9,11.1,10.9,10.9,10.7,10.5,10.9,10.9,11,10.4],"script":[0.2,0.2,0.3,0.4,0.3,0.5,0.1,0.3,0.5,0.3,0.1,0.5,0.3,0.2,0.4],"paint":[9.4,9.7,10.4,9.7,9.9,9.8,10.1,9.9,9.8,9.5,9.8,9.3,9.8,10.3,9.6]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[245.1,244.4,241.6,243,244.3,241.9,242.4,260.3,241.5,240.4,241.7,243.4,245.3,242.7,241.7],"script":[15.1,15.3,15,15.4,15.2,15,15,15.3,15.3,14.6,15.4,15,15.1,15.2,15.2],"paint":[222.4,221.5,219,220,221.7,219.1,220,237.3,218.6,218.2,218.8,220.9,222.3,219.9,218.7]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.4,27.8,27.6,27,26.9,27.3,27.7,27.6,27.7,27.1,26.8,27.6,28.2],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.4,1.3,1.4,1.5],"paint":[25.2,25.3,25.3,25.6,25.4,24.9,24.8,25.2,25.5,25.4,25.5,25,24.7,25.5,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,10.2,9.6,9.6,9.6,9.6,9,9.4,10.6,10.3,9.4,9.2,8.6,9.9,9.3],"script":[7.5,7.9,7.7,7.3,7.9,7.4,7.1,7,8.1,8.1,7.9,7.3,6.9,8.3,7.6],"paint":[0.3,0.5,0.3,2.1,1.1,1.3,1,1.2,1.1,1.2,0.3,0.6,0.3,0.2,1]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4691810607910156]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9343862533569336]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9426498413085938]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5968742370605469]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.009733200073242]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"framework":"zess-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"framework":"zess-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"framework":"zess-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"framework":"zess-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"framework":"zess-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5937604904174805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0592880249023438]}},{"framework":"zess-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763320922851562]}},{"framework":"zess-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325544357299805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.096689224243164]}},{"framework":"zess-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"zess-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}}] \ No newline at end of file From 3ee17ffb31cc942b667adab08759ab3321430ea3 Mon Sep 17 00:00:00 2001 From: Michael Scherbakow Date: Thu, 9 Oct 2025 22:12:38 +0200 Subject: [PATCH 20/39] update vode to 1.2.0 --- frameworks/non-keyed/vode/index.html | 1 + frameworks/non-keyed/vode/main.mjs | 2 +- frameworks/non-keyed/vode/package-lock.json | 228 ++++++++++---------- frameworks/non-keyed/vode/package.json | 6 +- frameworks/non-keyed/vode/src/main.ts | 2 +- 5 files changed, 120 insertions(+), 119 deletions(-) diff --git a/frameworks/non-keyed/vode/index.html b/frameworks/non-keyed/vode/index.html index feec7cfea..aa56f4e61 100644 --- a/frameworks/non-keyed/vode/index.html +++ b/frameworks/non-keyed/vode/index.html @@ -7,6 +7,7 @@ +
diff --git a/frameworks/non-keyed/vode/main.mjs b/frameworks/non-keyed/vode/main.mjs index 6d4862e4d..a566a842f 100644 --- a/frameworks/non-keyed/vode/main.mjs +++ b/frameworks/non-keyed/vode/main.mjs @@ -1 +1 @@ -(()=>{function V(e,o,r,...a){if(!e)throw new Error("container must be a valid HTMLElement");if(!o||typeof o!="object")throw new Error("given state must be an object");if(typeof r!="function")throw new Error("dom must be a function that returns a vode");let t={};t.stats={lastRenderTime:0,renderCount:0,liveEffectCount:0,patchCount:0,renderPatchCount:0},Object.defineProperty(o,"patch",{enumerable:!1,configurable:!0,writable:!1,value:async c=>{if(!(!c||typeof c!="function"&&typeof c!="object"))if(t.stats.patchCount++,c?.next){let d=c;t.stats.liveEffectCount++;try{let i=await d.next();for(;i.done===!1;){t.stats.liveEffectCount++;try{t.patch(i.value),i=await d.next()}finally{t.stats.liveEffectCount--}}t.patch(i.value)}finally{t.stats.liveEffectCount--}}else if(c.then){t.stats.liveEffectCount++;try{let d=await c;t.patch(d)}finally{t.stats.liveEffectCount--}}else Array.isArray(c)?typeof c[0]=="function"?c.length>1?t.patch(c[0](t.state,...c.slice(1))):t.patch(c[0](t.state)):t.stats.patchCount--:typeof c=="function"?t.patch(c(t.state)):(t.stats.renderPatchCount++,t.q=m(t.q||{},c,!1),t.isRendering||t.render())}}),Object.defineProperty(t,"render",{enumerable:!1,configurable:!0,writable:!1,value:()=>requestAnimationFrame(()=>{if(t.isRendering||!t.q)return;t.isRendering=!0;let c=Date.now();try{t.state=m(t.state,t.q,!0),t.q=null,t.vode=C(t.state,t.patch,e,0,t.vode,r(t.state))}finally{t.isRendering=!1,t.stats.renderCount++,t.stats.lastRenderTime=Date.now()-c,t.q&&t.render()}})}),t.patch=o.patch,t.state=o,t.q=null;let n=e;n._vode=t;let s=r(o);t.vode=s,t.vode=C(o,t.patch,e,0,void 0,s);for(let c of a)t.patch(c);return t.patch}function G(e,o){return o.__memo=e,o}function y(e){if(Array.isArray(e)&&e.length>1&&e[1]&&!Array.isArray(e[1])&&typeof e[1]=="object"&&e[1].nodeType!==Node.TEXT_NODE)return e[1]}function O(e){let o=w(e);return o>0?e.slice(o):null}function w(e){return y(e)?2:1}function m(e,o,r){if(!o)return e;for(let a in o){let t=o[a];if(t&&typeof t=="object"){let n=e[a];n?Array.isArray(t)?e[a]=[...t]:t instanceof Date&&n!==t?e[a]=new Date(t):Array.isArray(n)?e[a]=m({},t,r):typeof n=="object"?m(e[a],t,r):e[a]=m({},t,r):Array.isArray(t)?e[a]=[...t]:t instanceof Date?e[a]=new Date(t):e[a]=m({},t,r)}else t===void 0&&r?delete e[a]:e[a]=t}return e}function C(e,o,r,a,t,n,s){n=R(e,n,t);let c=!n||typeof n=="number"||typeof n=="boolean";if(n===t||!t&&c)return t;let d=t?.nodeType===Node.TEXT_NODE,i=d?t:t?.node;if(c){i?.onUnmount&&o(i.onUnmount(i)),i?.remove();return}let A=!c&&J(n),b=!c&&W(n),N=!!n&&typeof n!="string"&&!!(n?.node||n?.nodeType===Node.TEXT_NODE);if(!A&&!b&&!N&&!t)throw new Error("Invalid vode: "+typeof n+" "+JSON.stringify(n));if(N&&A?n=n.wholeText:N&&b&&(n=[...n]),d&&A)return i.nodeValue!==n&&(i.nodeValue=n),t;if(A&&(!i||!d)){let l=document.createTextNode(n);return i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[a]?r.insertBefore(l,r.childNodes[a]):r.appendChild(l),l}if(b&&(!i||d||t[0]!==n[0])){s=s||n[0]==="svg";let l=s?document.createElementNS("http://www.w3.org/2000/svg",n[0]):document.createElement(n[0]);n.node=l;let E=n;1 in E&&(E[1]=R(e,E[1],void 0));let g=y(n);D(o,l,void 0,g,s),i?(i.onUnmount&&o(i.onUnmount(i)),i.replaceWith(l)):r.childNodes[a]?r.insertBefore(l,r.childNodes[a]):r.appendChild(l);let u=O(n);if(u)for(let T=0;T0&&typeof e[0]=="string"}function J(e){return typeof e=="string"||e?.nodeType===Node.TEXT_NODE}function R(e,o,r){if(typeof o!="function")return o;let a=o?.__memo,t=r?.__memo;if(Array.isArray(a)&&Array.isArray(t)&&a.length===t.length){let s=!0;for(let c=0;ce([c,d])}else if(Array.isArray(t)){let c=t,d=t[0];c.length>1?s=()=>e([d,...c.slice(1)]):s=i=>e([d,i])}else typeof t=="object"&&(s=()=>e(t));o[r]=s}else o[r]=null;else t!=null&&t!==!1?o.setAttribute(r,t):o.removeAttribute(r);return t}function L(e){return typeof e=="string"?e:Array.isArray(e)?e.map(L).join(" "):typeof e=="object"?Object.keys(e).filter(o=>e[o]).join(" "):""}var v="a";var S="button";var f="div";var U="h1";var I="span";var j="table",B="tbody",h="td";var _="tr";var z=1,K=["pretty","large","big","small","tall","short","long","handsome","plain","quaint","clean","elegant","easy","angry","crazy","helpful","mushy","odd","unsightly","adorable","important","inexpensive","cheap","expensive","fancy"],X=["red","yellow","blue","green","pink","brown","purple","brown","white","black","orange"],q=["table","chair","house","bbq","desk","car","pony","cookie","sandwich","burger","pizza","mouse","keyboard"];function k(e){return Math.round(Math.random()*1e3)%e}function M(e){let o=new Array(e);for(let r=0;r[f,{class:"container",id:"main"},[f,{class:"jumbotron"},[f,{class:"row"},[f,{class:"col-md-6"},[U,`[V,{},d,e] ${$.dependencies["@ryupold/vode"]} (non-keyed)`]],[f,{class:"col-md-6"},[f,{class:"row"},[f,{class:"col-sm-6 smallpad"},[S,{id:"run",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e3),selected:null})},"Create 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"runlots",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e4),selected:null})},"Create 10,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"add",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.concat(M(1e3))})},"Append 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"update",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.map((o,r)=>r%10===0?{id:o.id,label:o.label+" !!!"}:o)})},"Update every 10th row"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"clear",type:"button",class:"btn btn-primary btn-block",onclick:{data:[],selected:null}},"Clear"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"swaprows",type:"button",class:"btn btn-primary btn-block",onclick:()=>{if(e.data.length>998){let o=e.data[998];e.data[998]=e.data[1],e.data[1]=o}return{}}},"Swap Rows"]]]]]],[j,{class:"table table-hover table-striped test-data"},[B,...e.data.map(o=>G([o.id,o.label,e.selected===o.id],r=>[_,{class:{danger:r.selected===o.id}},[h,{class:"col-md-1"},o.id],[h,{class:"col-md-4"},[v,{onclick:{selected:o.id}},o.label]],[h,{class:"col-md-1"},[v,{onclick:()=>({data:r.data.filter(a=>a.id!==o.id),selected:r.selected===o.id?null:r.selected})},[I,{class:"glyphicon glyphicon-remove","aria-hidden":"true"}]]],[h,{class:"col-md-6"}]]))]],[I,{class:"preloadicon glyphicon glyphicon-remove","aria-hidden":"true"}]]);})(); +(()=>{function F(e,s,a,...n){if(!e?.parentElement)throw new Error("first argument to app() must be a valid HTMLElement inside the document");if(!s||typeof s!="object")throw new Error("second argument to app() must be a state object");if(typeof a!="function")throw new Error("third argument to app() must be a function that returns a vode");let t={};t.stats={lastRenderTime:0,renderCount:0,liveEffectCount:0,patchCount:0,renderPatchCount:0},Object.defineProperty(s,"patch",{enumerable:!1,configurable:!0,writable:!1,value:async r=>{if(!(!r||typeof r!="function"&&typeof r!="object"))if(t.stats.patchCount++,r?.next){let i=r;t.stats.liveEffectCount++;try{let u=await i.next();for(;u.done===!1;){t.stats.liveEffectCount++;try{t.patch(u.value),u=await i.next()}finally{t.stats.liveEffectCount--}}t.patch(u.value)}finally{t.stats.liveEffectCount--}}else if(r.then){t.stats.liveEffectCount++;try{let i=await r;t.patch(i)}finally{t.stats.liveEffectCount--}}else Array.isArray(r)?typeof r[0]=="function"?r.length>1?t.patch(r[0](t.state,...r.slice(1))):t.patch(r[0](t.state)):t.stats.patchCount--:typeof r=="function"?t.patch(r(t.state)):(t.stats.renderPatchCount++,t.q=m(t.q||{},r,!1),t.isRendering||t.render())}}),Object.defineProperty(t,"render",{enumerable:!1,configurable:!0,writable:!1,value:()=>requestAnimationFrame(()=>{if(t.isRendering||!t.q)return;t.isRendering=!0;let r=Date.now();try{t.state=m(t.state,t.q,!0),t.q=null;let i=a(t.state);t.vode=C(t.state,t.patch,e.parentElement,0,t.vode,i),e.tagName.toUpperCase()!==i[0].toUpperCase()&&(e=t.vode.node,e._vode=t)}finally{t.isRendering=!1,t.stats.renderCount++,t.stats.lastRenderTime=Date.now()-r,t.q&&t.render()}})}),t.patch=s.patch,t.state=s,t.q=null;let o=e;o._vode=t,t.vode=C(s,t.patch,e.parentElement,Array.from(e.parentElement.children).indexOf(e),H(e,!0),a(s));for(let r of n)t.patch(r);return t.patch}function H(e,s){if(e?.nodeType===Node.TEXT_NODE)return e.nodeValue?.trim()!==""?s?e:e.nodeValue:void 0;if(e.nodeType===Node.COMMENT_NODE)return;if(e.nodeType===Node.ELEMENT_NODE){let n=[e.tagName.toLowerCase()];if(s&&(n.node=e),e?.hasAttributes()){let t={},o=e.attributes;for(let r of o)t[r.name]=r.value;n.push(t)}if(e.hasChildNodes()){let t=[];for(let o of e.childNodes){let r=o&&H(o,s);r?n.push(r):o&&s&&t.push(o)}for(let o of t)o.remove()}return n}else return}function U(e,s){if(!e||!Array.isArray(e))throw new Error("first argument to memo() must be an array of values to compare");if(typeof s!="function")throw new Error("second argument to memo() must be a function that returns a vode or props object");return s.__memo=e,s}function V(e){if(!e||typeof e!="object")throw new Error("createState() must be called with a state object");return e}function x(e){if(Array.isArray(e)&&e.length>1&&e[1]&&!Array.isArray(e[1])&&typeof e[1]=="object"&&e[1].nodeType!==Node.TEXT_NODE)return e[1]}function O(e){let s=J(e);return s>0?e.slice(s):null}function J(e){return x(e)?2:1}function m(e,s,a){if(!s)return e;for(let n in s){let t=s[n];if(t&&typeof t=="object"){let o=e[n];o?Array.isArray(t)?e[n]=[...t]:t instanceof Date&&o!==t?e[n]=new Date(t):Array.isArray(o)?e[n]=m({},t,a):typeof o=="object"?m(e[n],t,a):e[n]=m({},t,a):Array.isArray(t)?e[n]=[...t]:t instanceof Date?e[n]=new Date(t):e[n]=m({},t,a)}else t===void 0&&a?delete e[n]:e[n]=t}return e}function C(e,s,a,n,t,o,r){o=R(e,o,t);let i=!o||typeof o=="number"||typeof o=="boolean";if(o===t||!t&&i)return t;let u=t?.nodeType===Node.TEXT_NODE,p=u?t:t?.node;if(i){p?.onUnmount&&s(p.onUnmount(p)),p?.remove();return}let A=!i&&Q(o),b=!i&&z(o),N=!!o&&typeof o!="string"&&!!(o?.node||o?.nodeType===Node.TEXT_NODE);if(!A&&!b&&!N&&!t)throw new Error("Invalid vode: "+typeof o+" "+JSON.stringify(o));if(N&&A?o=o.wholeText:N&&b&&(o=[...o]),u&&A)return p.nodeValue!==o&&(p.nodeValue=o),t;if(A&&(!p||!u)){let T=document.createTextNode(o);return p?(p.onUnmount&&s(p.onUnmount(p)),p.replaceWith(T)):a.childNodes[n]?a.insertBefore(T,a.childNodes[n]):a.appendChild(T),T}if(b&&(!p||u||t[0]!==o[0])){let T=o;1 in T&&(T[1]=R(e,T[1],void 0));let E=x(o);r=E?.xmlns||r;let d=r?document.createElementNS(r,o[0]):document.createElement(o[0]);o.node=d,v(s,d,void 0,E),p?(p.onUnmount&&s(p.onUnmount(p)),p.replaceWith(d)):a.childNodes[n]?a.insertBefore(d,a.childNodes[n]):a.appendChild(d);let g=O(o);if(g)for(let l=0;l0&&typeof e[0]=="string"}function Q(e){return typeof e=="string"||e?.nodeType===Node.TEXT_NODE}function R(e,s,a){if(typeof s!="function")return s;let n=s?.__memo,t=a?.__memo;if(Array.isArray(n)&&Array.isArray(t)&&n.length===t.length){let r=!0;for(let i=0;ie([r,i])}else if(Array.isArray(t)){let r=t,i=t[0];r.length>1?o=()=>e([i,...r.slice(1)]):o=u=>e([i,u])}else typeof t=="object"&&(o=()=>e(t));s[a]=o}else s[a]=null;else t!=null&&t!==!1?s.setAttribute(a,t):s.removeAttribute(a);return t}function j(e){return typeof e=="string"?e:Array.isArray(e)?e.map(j).join(" "):typeof e=="object"?Object.keys(e).filter(s=>e[s]).join(" "):""}var D="a";var S="button";var f="div";var B="h1";var L="span";var _="table",K="tbody",h="td";var X="tr";var Z=1,q=["pretty","large","big","small","tall","short","long","handsome","plain","quaint","clean","elegant","easy","angry","crazy","helpful","mushy","odd","unsightly","adorable","important","inexpensive","cheap","expensive","fancy"],w=["red","yellow","blue","green","pink","brown","purple","brown","white","black","orange"],$=["table","chair","house","bbq","desk","car","pony","cookie","sandwich","burger","pizza","mouse","keyboard"];function I(e){return Math.round(Math.random()*1e3)%e}function M(e){let s=new Array(e);for(let a=0;a[f,{class:"container",id:"main"},[f,{class:"jumbotron"},[f,{class:"row"},[f,{class:"col-md-6"},[B,`[V,{},d,e] ${Y.dependencies["@ryupold/vode"]} (non-keyed)`]],[f,{class:"col-md-6"},[f,{class:"row"},[f,{class:"col-sm-6 smallpad"},[S,{id:"run",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e3),selected:null})},"Create 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"runlots",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:M(1e4),selected:null})},"Create 10,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"add",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.concat(M(1e3))})},"Append 1,000 rows"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"update",type:"button",class:"btn btn-primary btn-block",onclick:()=>({data:e.data.map((s,a)=>a%10===0?{id:s.id,label:s.label+" !!!"}:s)})},"Update every 10th row"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"clear",type:"button",class:"btn btn-primary btn-block",onclick:{data:[],selected:null}},"Clear"]],[f,{class:"col-sm-6 smallpad"},[S,{id:"swaprows",type:"button",class:"btn btn-primary btn-block",onclick:()=>{if(e.data.length>998){let s=e.data[998];e.data[998]=e.data[1],e.data[1]=s}return{}}},"Swap Rows"]]]]]],[_,{class:"table table-hover table-striped test-data"},[K,...e.data.map(s=>U([s.id,s.label,e.selected===s.id],a=>[X,{class:{danger:a.selected===s.id}},[h,{class:"col-md-1"},s.id],[h,{class:"col-md-4"},[D,{onclick:{selected:s.id}},s.label]],[h,{class:"col-md-1"},[D,{onclick:()=>({data:a.data.filter(n=>n.id!==s.id),selected:a.selected===s.id?null:a.selected})},[L,{class:"glyphicon glyphicon-remove","aria-hidden":"true"}]]],[h,{class:"col-md-6"}]]))]],[L,{class:"preloadicon glyphicon glyphicon-remove","aria-hidden":"true"}]]);})(); diff --git a/frameworks/non-keyed/vode/package-lock.json b/frameworks/non-keyed/vode/package-lock.json index 141c20a04..b88d344e0 100644 --- a/frameworks/non-keyed/vode/package-lock.json +++ b/frameworks/non-keyed/vode/package-lock.json @@ -1,24 +1,24 @@ { "name": "js-framework-benchmark-vode", - "version": "1.0.1", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "js-framework-benchmark-vode", - "version": "1.0.1", + "version": "1.2.0", "license": "MIT", "dependencies": { - "@ryupold/vode": "1.0.2" + "@ryupold/vode": "1.2.0" }, "devDependencies": { - "esbuild": "0.25.9" + "esbuild": "0.25.10" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz", - "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", + "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", "cpu": [ "ppc64" ], @@ -33,9 +33,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz", - "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz", + "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", "cpu": [ "arm" ], @@ -50,9 +50,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz", - "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", + "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", "cpu": [ "arm64" ], @@ -67,9 +67,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz", - "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz", + "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", "cpu": [ "x64" ], @@ -84,9 +84,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz", - "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", + "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", "cpu": [ "arm64" ], @@ -101,9 +101,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz", - "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", + "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", "cpu": [ "x64" ], @@ -118,9 +118,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz", - "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", + "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", "cpu": [ "arm64" ], @@ -135,9 +135,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz", - "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", + "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", "cpu": [ "x64" ], @@ -152,9 +152,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz", - "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", + "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", "cpu": [ "arm" ], @@ -169,9 +169,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz", - "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", + "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", "cpu": [ "arm64" ], @@ -186,9 +186,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz", - "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", + "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", "cpu": [ "ia32" ], @@ -203,9 +203,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz", - "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", + "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", "cpu": [ "loong64" ], @@ -220,9 +220,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz", - "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", + "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", "cpu": [ "mips64el" ], @@ -237,9 +237,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz", - "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", + "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", "cpu": [ "ppc64" ], @@ -254,9 +254,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz", - "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", + "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", "cpu": [ "riscv64" ], @@ -271,9 +271,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz", - "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", + "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", "cpu": [ "s390x" ], @@ -288,9 +288,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz", - "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", + "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", "cpu": [ "x64" ], @@ -305,9 +305,9 @@ } }, "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz", - "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", + "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", "cpu": [ "arm64" ], @@ -322,9 +322,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz", - "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", + "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", "cpu": [ "x64" ], @@ -339,9 +339,9 @@ } }, "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz", - "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", + "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", "cpu": [ "arm64" ], @@ -356,9 +356,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz", - "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", + "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", "cpu": [ "x64" ], @@ -373,9 +373,9 @@ } }, "node_modules/@esbuild/openharmony-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz", - "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", + "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", "cpu": [ "arm64" ], @@ -390,9 +390,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz", - "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", + "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", "cpu": [ "x64" ], @@ -407,9 +407,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz", - "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", + "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", "cpu": [ "arm64" ], @@ -424,9 +424,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz", - "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", + "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", "cpu": [ "ia32" ], @@ -441,9 +441,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz", - "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", + "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", "cpu": [ "x64" ], @@ -458,15 +458,15 @@ } }, "node_modules/@ryupold/vode": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@ryupold/vode/-/vode-1.0.2.tgz", - "integrity": "sha512-2P005pPnfHNSsMh+W1Wp6DLRDFBVJE1Iaco3duMdF5Ncu52BC41equlULk+zGkhgrjxVPzP8xqotQA6rpmsE0w==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ryupold/vode/-/vode-1.2.0.tgz", + "integrity": "sha512-3i5Jniy82dHJWgN0l6LAMDoVuBlsRHK5gLb9CfApkhrZE0lRmjFPVFK6mXv1iwSzPqujriTIKSPnYvs2bC1zZQ==", "license": "MIT" }, "node_modules/esbuild": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", - "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==", + "version": "0.25.10", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", + "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -477,32 +477,32 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.9", - "@esbuild/android-arm": "0.25.9", - "@esbuild/android-arm64": "0.25.9", - "@esbuild/android-x64": "0.25.9", - "@esbuild/darwin-arm64": "0.25.9", - "@esbuild/darwin-x64": "0.25.9", - "@esbuild/freebsd-arm64": "0.25.9", - "@esbuild/freebsd-x64": "0.25.9", - "@esbuild/linux-arm": "0.25.9", - "@esbuild/linux-arm64": "0.25.9", - "@esbuild/linux-ia32": "0.25.9", - "@esbuild/linux-loong64": "0.25.9", - "@esbuild/linux-mips64el": "0.25.9", - "@esbuild/linux-ppc64": "0.25.9", - "@esbuild/linux-riscv64": "0.25.9", - "@esbuild/linux-s390x": "0.25.9", - "@esbuild/linux-x64": "0.25.9", - "@esbuild/netbsd-arm64": "0.25.9", - "@esbuild/netbsd-x64": "0.25.9", - "@esbuild/openbsd-arm64": "0.25.9", - "@esbuild/openbsd-x64": "0.25.9", - "@esbuild/openharmony-arm64": "0.25.9", - "@esbuild/sunos-x64": "0.25.9", - "@esbuild/win32-arm64": "0.25.9", - "@esbuild/win32-ia32": "0.25.9", - "@esbuild/win32-x64": "0.25.9" + "@esbuild/aix-ppc64": "0.25.10", + "@esbuild/android-arm": "0.25.10", + "@esbuild/android-arm64": "0.25.10", + "@esbuild/android-x64": "0.25.10", + "@esbuild/darwin-arm64": "0.25.10", + "@esbuild/darwin-x64": "0.25.10", + "@esbuild/freebsd-arm64": "0.25.10", + "@esbuild/freebsd-x64": "0.25.10", + "@esbuild/linux-arm": "0.25.10", + "@esbuild/linux-arm64": "0.25.10", + "@esbuild/linux-ia32": "0.25.10", + "@esbuild/linux-loong64": "0.25.10", + "@esbuild/linux-mips64el": "0.25.10", + "@esbuild/linux-ppc64": "0.25.10", + "@esbuild/linux-riscv64": "0.25.10", + "@esbuild/linux-s390x": "0.25.10", + "@esbuild/linux-x64": "0.25.10", + "@esbuild/netbsd-arm64": "0.25.10", + "@esbuild/netbsd-x64": "0.25.10", + "@esbuild/openbsd-arm64": "0.25.10", + "@esbuild/openbsd-x64": "0.25.10", + "@esbuild/openharmony-arm64": "0.25.10", + "@esbuild/sunos-x64": "0.25.10", + "@esbuild/win32-arm64": "0.25.10", + "@esbuild/win32-ia32": "0.25.10", + "@esbuild/win32-x64": "0.25.10" } } } diff --git a/frameworks/non-keyed/vode/package.json b/frameworks/non-keyed/vode/package.json index 5453fcc78..8a190bde1 100644 --- a/frameworks/non-keyed/vode/package.json +++ b/frameworks/non-keyed/vode/package.json @@ -1,6 +1,6 @@ { "name": "js-framework-benchmark-vode", - "version": "1.0.1", + "version": "1.2.0", "description": "vode framework benchmark", "main": "main.mjs", "js-framework-benchmark": { @@ -8,10 +8,10 @@ "frameworkHomeURL": "https://github.com/ryupold/vode" }, "dependencies": { - "@ryupold/vode": "1.0.2" + "@ryupold/vode": "1.2.0" }, "devDependencies": { - "esbuild": "0.25.9" + "esbuild": "0.25.10" }, "scripts": { "build-prod": "npm run bundle", diff --git a/frameworks/non-keyed/vode/src/main.ts b/frameworks/non-keyed/vode/src/main.ts index 50f5c9227..d1f3bccab 100644 --- a/frameworks/non-keyed/vode/src/main.ts +++ b/frameworks/non-keyed/vode/src/main.ts @@ -9,7 +9,7 @@ const s = createState({ type State = typeof s; -app(document.body, s, (s: State) => [DIV, { class: "container", id: 'main' }, +app(document.getElementById("app")!, s, (s: State) => [DIV, { class: "container", id: 'main' }, [DIV, { class: "jumbotron" }, [DIV, { class: "row" }, [DIV, { class: "col-md-6" }, From 86bc65cc480e95acd686e58f6ba55c9968c5dde9 Mon Sep 17 00:00:00 2001 From: daniel-pfeiffer Date: Sun, 12 Oct 2025 19:41:42 +0200 Subject: [PATCH 21/39] Shorten build_data to more idiomatic Rust --- frameworks/keyed/leptos/src/lib.rs | 36 ++++++++++-------------------- 1 file changed, 12 insertions(+), 24 deletions(-) diff --git a/frameworks/keyed/leptos/src/lib.rs b/frameworks/keyed/leptos/src/lib.rs index cf72c6890..2240635eb 100644 --- a/frameworks/keyed/leptos/src/lib.rs +++ b/frameworks/keyed/leptos/src/lib.rs @@ -50,30 +50,18 @@ static ID_COUNTER: AtomicUsize = AtomicUsize::new(1); fn build_data(count: usize) -> Vec { let mut thread_rng = thread_rng(); - let mut data = Vec::new(); - data.reserve_exact(count); - - for _i in 0..count { - let adjective = ADJECTIVES.choose(&mut thread_rng).unwrap(); - let colour = COLOURS.choose(&mut thread_rng).unwrap(); - let noun = NOUNS.choose(&mut thread_rng).unwrap(); - let capacity = adjective.len() + colour.len() + noun.len() + 2; - let mut label = String::with_capacity(capacity); - label.push_str(adjective); - label.push(' '); - label.push_str(colour); - label.push(' '); - label.push_str(noun); - - data.push(RowData { - id: ID_COUNTER.load(Ordering::Relaxed), - label: ArcRwSignal::new(label), - }); - - ID_COUNTER.store(ID_COUNTER.load(Ordering::Relaxed) + 1, Ordering::Relaxed); - } - - data + let mut choose = + |slice: &[&'static str]| slice.choose(&mut thread_rng).unwrap(); + + (0..count) + .map(|_| RowData { + id: ID_COUNTER.fetch_add(1, Ordering::Relaxed), + label: ArcRwSignal::new(format!("{} {} {}", + choose(ADJECTIVES), + choose(COLOURS), + choose(NOUNS))), + }) + .collect() } /// Button component. From 46f2221166bba2a9dfd33e97d0a683a5ff1460c0 Mon Sep 17 00:00:00 2001 From: daniel-pfeiffer Date: Sun, 12 Oct 2025 21:16:09 +0200 Subject: [PATCH 22/39] map strs as well --- frameworks/keyed/leptos/src/lib.rs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/frameworks/keyed/leptos/src/lib.rs b/frameworks/keyed/leptos/src/lib.rs index 2240635eb..7ecc1a119 100644 --- a/frameworks/keyed/leptos/src/lib.rs +++ b/frameworks/keyed/leptos/src/lib.rs @@ -50,16 +50,12 @@ static ID_COUNTER: AtomicUsize = AtomicUsize::new(1); fn build_data(count: usize) -> Vec { let mut thread_rng = thread_rng(); - let mut choose = - |slice: &[&'static str]| slice.choose(&mut thread_rng).unwrap(); - (0..count) .map(|_| RowData { id: ID_COUNTER.fetch_add(1, Ordering::Relaxed), - label: ArcRwSignal::new(format!("{} {} {}", - choose(ADJECTIVES), - choose(COLOURS), - choose(NOUNS))), + label: ArcRwSignal::new([ADJECTIVES, COLOURS, NOUNS] + .map(|slice| slice.choose(&mut thread_rng).unwrap()) + .join(" ")) }) .collect() } From 678440b6e1e6d934ad5839487d90553653ca3776 Mon Sep 17 00:00:00 2001 From: daniel-pfeiffer Date: Sun, 12 Oct 2025 21:30:01 +0200 Subject: [PATCH 23/39] more readable --- frameworks/keyed/leptos/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frameworks/keyed/leptos/src/lib.rs b/frameworks/keyed/leptos/src/lib.rs index 7ecc1a119..ddfa7e8a3 100644 --- a/frameworks/keyed/leptos/src/lib.rs +++ b/frameworks/keyed/leptos/src/lib.rs @@ -50,12 +50,14 @@ static ID_COUNTER: AtomicUsize = AtomicUsize::new(1); fn build_data(count: usize) -> Vec { let mut thread_rng = thread_rng(); + let mut label = || [ADJECTIVES, COLOURS, NOUNS] + .map(|slice| slice.choose(&mut thread_rng).unwrap()) + .join(" "); + (0..count) .map(|_| RowData { id: ID_COUNTER.fetch_add(1, Ordering::Relaxed), - label: ArcRwSignal::new([ADJECTIVES, COLOURS, NOUNS] - .map(|slice| slice.choose(&mut thread_rng).unwrap()) - .join(" ")) + label: ArcRwSignal::new(label()) }) .collect() } From 1d548cc9ddc218880dd0262fc63dc1d5c5bc0d8d Mon Sep 17 00:00:00 2001 From: Tito Date: Mon, 13 Oct 2025 03:04:03 -0300 Subject: [PATCH 24/39] Update pota --- frameworks/keyed/pota/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/keyed/pota/package.json b/frameworks/keyed/pota/package.json index c6ab0b92f..ce60dc4d9 100644 --- a/frameworks/keyed/pota/package.json +++ b/frameworks/keyed/pota/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/krausest/js-framework-benchmark.git" }, "dependencies": { - "pota": "^0.19.204" + "pota": "^0.19.206" }, "devDependencies": { "@babel/core": "7.26.0", From 9156eb7f78f3713aa7999f38a69ad4cdb334bd4b Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Mon, 13 Oct 2025 20:30:18 +0200 Subject: [PATCH 25/39] rename issue 1139 --- webdriver-ts-results/src/helpers/issues.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webdriver-ts-results/src/helpers/issues.ts b/webdriver-ts-results/src/helpers/issues.ts index 3727df191..b2784f3ec 100644 --- a/webdriver-ts-results/src/helpers/issues.ts +++ b/webdriver-ts-results/src/helpers/issues.ts @@ -44,7 +44,7 @@ export const knownIssues: Issue[] = [ { number: 1139, severity: Severity.NOTE, - text: "[Note]: Implementation uses runtime code generation", + text: "[Note]: Implementation doesn't pass strict CSP", link: "https://github.com/krausest/js-framework-benchmark/issues/1139", }, { From 5a0b9523fd4036310bbe6b9b454a9f51fb49b1b2 Mon Sep 17 00:00:00 2001 From: daniel-pfeiffer Date: Wed, 15 Oct 2025 09:03:28 +0200 Subject: [PATCH 26/39] Almost eliminate atomics Another even more massive reduction of atomic ops. If your test needs build_data to run in parallel, this would change behaviour: the ids would no longer be intertwined. Instead now each loop assigns its contiguous block of ids. --- frameworks/keyed/leptos/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frameworks/keyed/leptos/src/lib.rs b/frameworks/keyed/leptos/src/lib.rs index ddfa7e8a3..58d0e143b 100644 --- a/frameworks/keyed/leptos/src/lib.rs +++ b/frameworks/keyed/leptos/src/lib.rs @@ -54,9 +54,11 @@ fn build_data(count: usize) -> Vec { .map(|slice| slice.choose(&mut thread_rng).unwrap()) .join(" "); - (0..count) - .map(|_| RowData { - id: ID_COUNTER.fetch_add(1, Ordering::Relaxed), + let id = ID_COUNTER.fetch_add(count, Ordering::Relaxed); + + (id..id + count) + .map(|id| RowData { + id, label: ArcRwSignal::new(label()) }) .collect() From dd0fd7307d699e4882cf7af3c931214b972514f3 Mon Sep 17 00:00:00 2001 From: L3P3 Date: Wed, 15 Oct 2025 20:12:03 +0200 Subject: [PATCH 27/39] update lui, adding noeval variant --- frameworks/keyed/lui-noeval/.gitignore | 1 + frameworks/keyed/lui-noeval/index.html | 12 + frameworks/keyed/lui-noeval/package-lock.json | 191 ++++++++++++++++ frameworks/keyed/lui-noeval/package.json | 16 ++ frameworks/keyed/lui-noeval/src/app.js | 209 ++++++++++++++++++ frameworks/keyed/lui-noeval/src/lui.noeval.js | 15 ++ frameworks/keyed/lui/.gitignore | 1 + frameworks/keyed/lui/index.html | 4 +- frameworks/keyed/lui/package-lock.json | 183 ++++++++++++++- frameworks/keyed/lui/package.json | 13 +- frameworks/keyed/lui/src/app.js | 119 ++++------ frameworks/keyed/lui/src/lui.js | 28 +-- 12 files changed, 696 insertions(+), 96 deletions(-) create mode 100644 frameworks/keyed/lui-noeval/.gitignore create mode 100644 frameworks/keyed/lui-noeval/index.html create mode 100644 frameworks/keyed/lui-noeval/package-lock.json create mode 100644 frameworks/keyed/lui-noeval/package.json create mode 100644 frameworks/keyed/lui-noeval/src/app.js create mode 100644 frameworks/keyed/lui-noeval/src/lui.noeval.js create mode 100644 frameworks/keyed/lui/.gitignore diff --git a/frameworks/keyed/lui-noeval/.gitignore b/frameworks/keyed/lui-noeval/.gitignore new file mode 100644 index 000000000..aa6b49561 --- /dev/null +++ b/frameworks/keyed/lui-noeval/.gitignore @@ -0,0 +1 @@ +src/app.min.js diff --git a/frameworks/keyed/lui-noeval/index.html b/frameworks/keyed/lui-noeval/index.html new file mode 100644 index 000000000..8816a077e --- /dev/null +++ b/frameworks/keyed/lui-noeval/index.html @@ -0,0 +1,12 @@ + + + + + lui + + + + + + + diff --git a/frameworks/keyed/lui-noeval/package-lock.json b/frameworks/keyed/lui-noeval/package-lock.json new file mode 100644 index 000000000..62765713a --- /dev/null +++ b/frameworks/keyed/lui-noeval/package-lock.json @@ -0,0 +1,191 @@ +{ + "name": "js-framework-benchmark-lui", + "version": "2.2.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "js-framework-benchmark-lui", + "version": "2.2.0", + "devDependencies": { + "bun": "latest" + } + }, + "node_modules/@oven/bun-darwin-aarch64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-aarch64/-/bun-darwin-aarch64-1.3.0.tgz", + "integrity": "sha512-WeXSaL29ylJEZMYHHW28QZ6rgAbxQ1KuNSZD9gvd3fPlo0s6s2PglvPArjjP07nmvIK9m4OffN0k4M98O7WmAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-darwin-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64/-/bun-darwin-x64-1.3.0.tgz", + "integrity": "sha512-CFKjoUWQH0Oz3UHYfKbdKLq0wGryrFsTJEYq839qAwHQSECvVZYAnxVVDYUDa0yQFonhO2qSHY41f6HK+b7xtw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-darwin-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64-baseline/-/bun-darwin-x64-baseline-1.3.0.tgz", + "integrity": "sha512-+FSr/ub5vA/EkD3fMhHJUzYioSf/sXd50OGxNDAntVxcDu4tXL/81Ka3R/gkZmjznpLFIzovU/1Ts+b7dlkrfw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-linux-aarch64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64/-/bun-linux-aarch64-1.3.0.tgz", + "integrity": "sha512-WHthS/eLkCNcp9pk4W8aubRl9fIUgt2XhHyLrP0GClB1FVvmodu/zIOtG0NXNpzlzB8+gglOkGo4dPjfVf4Z+g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-aarch64-musl": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64-musl/-/bun-linux-aarch64-musl-1.3.0.tgz", + "integrity": "sha512-HT5sr7N8NDYbQRjAnT7ISpx64y+ewZZRQozOJb0+KQObKvg4UUNXGm4Pn1xA4/WPMZDDazjO8E2vtOQw1nJlAQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64/-/bun-linux-x64-1.3.0.tgz", + "integrity": "sha512-sGEWoJQXO4GDr0x4t/yJQ/Bq1yNkOdX9tHbZZ+DBGJt3z3r7jeb4Digv8xQUk6gdTFC9vnGHuin+KW3/yD1Aww==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-baseline/-/bun-linux-x64-baseline-1.3.0.tgz", + "integrity": "sha512-OmlEH3nlxQyv7HOvTH21vyNAZGv9DIPnrTznzvKiOQxkOphhCyKvPTlF13ydw4s/i18iwaUrhHy+YG9HSSxa4Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-musl": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl/-/bun-linux-x64-musl-1.3.0.tgz", + "integrity": "sha512-rtzUEzCynl3Rhgn/iR9DQezSFiZMcAXAbU+xfROqsweMGKwvwIA2ckyyckO08psEP8XcUZTs3LT9CH7PnaMiEA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-musl-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl-baseline/-/bun-linux-x64-musl-baseline-1.3.0.tgz", + "integrity": "sha512-hrr7mDvUjMX1tuJaXz448tMsgKIqGJBY8+rJqztKOw1U5+a/v2w5HuIIW1ce7ut0ZwEn+KIDvAujlPvpH33vpQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-windows-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64/-/bun-windows-x64-1.3.0.tgz", + "integrity": "sha512-xXwtpZVVP7T+vkxcF/TUVVOGRjEfkByO4mKveKYb4xnHWV4u4NnV0oNmzyMKkvmj10to5j2h0oZxA4ZVVv4gfA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@oven/bun-windows-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64-baseline/-/bun-windows-x64-baseline-1.3.0.tgz", + "integrity": "sha512-/jVZ8eYjpYHLDFNoT86cP+AjuWvpkzFY+0R0a1bdeu0sQ6ILuy1FV6hz1hUAP390E09VCo5oP76fnx29giHTtA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/bun": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bun/-/bun-1.3.0.tgz", + "integrity": "sha512-YI7mFs7iWc/VsGsh2aw6eAPD2cjzn1j+LKdYVk09x1CrdTWKYIHyd+dG5iQoN9//3hCDoZj8U6vKpZzEf5UARA==", + "cpu": [ + "arm64", + "x64" + ], + "dev": true, + "hasInstallScript": true, + "os": [ + "darwin", + "linux", + "win32" + ], + "bin": { + "bun": "bin/bun.exe", + "bunx": "bin/bunx.exe" + }, + "optionalDependencies": { + "@oven/bun-darwin-aarch64": "1.3.0", + "@oven/bun-darwin-x64": "1.3.0", + "@oven/bun-darwin-x64-baseline": "1.3.0", + "@oven/bun-linux-aarch64": "1.3.0", + "@oven/bun-linux-aarch64-musl": "1.3.0", + "@oven/bun-linux-x64": "1.3.0", + "@oven/bun-linux-x64-baseline": "1.3.0", + "@oven/bun-linux-x64-musl": "1.3.0", + "@oven/bun-linux-x64-musl-baseline": "1.3.0", + "@oven/bun-windows-x64": "1.3.0", + "@oven/bun-windows-x64-baseline": "1.3.0" + } + } + } +} diff --git a/frameworks/keyed/lui-noeval/package.json b/frameworks/keyed/lui-noeval/package.json new file mode 100644 index 000000000..25a7f38bd --- /dev/null +++ b/frameworks/keyed/lui-noeval/package.json @@ -0,0 +1,16 @@ +{ + "name": "js-framework-benchmark-lui", + "version": "2.2.0", + "description": "Benchmark for lui, without code generation", + "js-framework-benchmark": { + "frameworkVersion": "2.2.0", + "frameworkHomeURL": "https://github.com/L3P3/lui" + }, + "devDependencies": { + "bun": "latest" + }, + "scripts": { + "dev": "echo 0", + "build-prod": "bun build --minify --outfile=src/app.min.js src/app.js" + } +} diff --git a/frameworks/keyed/lui-noeval/src/app.js b/frameworks/keyed/lui-noeval/src/app.js new file mode 100644 index 000000000..c1ca2f65e --- /dev/null +++ b/frameworks/keyed/lui-noeval/src/app.js @@ -0,0 +1,209 @@ +const { + hook_dom, + hook_model, + hook_static, + init, + node, + node_dom, + node_map, +} = lui; + + +/// STORE /// + +const adjectives = 'pretty,large,big,small,tall,short,long,handsome,plain,quaint,clean,elegant,easy,angry,crazy,helpful,mushy,odd,unsightly,adorable,important,inexpensive,cheap,expensive,fancy'.split(','); +const colors = 'red,yellow,blue,green,pink,brown,purple,brown,white,black,orange'.split(','); +const nouns = 'table,chair,house,bbq,desk,car,pony,cookie,sandwich,burger,pizza,mouse,keyboard'.split(','); + +const pick = options => ( + options[ + Math.round( + Math.random() * + (options.length - 1) + ) + ] +); + +let id_counter = 0; + +const todo_create = () => ({ + id: ++id_counter, + label: `${pick(adjectives)} ${pick(colors)} ${pick(nouns)}`, +}); + +const model = { + init: () => ({ + todos: [], + selected: null, + }), + create: (state, count) => ({ + ...state, + todos: ( + new Array(count) + .fill(null) + .map(todo_create) + ), + selected: null, + }), + add: (state, count) => ({ + ...state, + todos: [ + ...state.todos, + ...( + new Array(count) + .fill(null) + .map(todo_create) + ), + ], + }), + remove: (state, id) => ({ + ...state, + todos: state.todos.filter(item => item.id !== id), + selected: ( + state.selected === id + ? null + : state.selected + ), + }), + select: (state, id) => ({ + ...state, + selected: id, + }), + update: (state, mod) => ({ + ...state, + todos: state.todos.map((item, index) => + index % mod > 0 + ? item + : { + ...item, + label: item.label + ' !!!', + } + ), + }), + swap: (state) => ({ + ...state, + todos: ( + state.todos.length > 998 + ? [ + state.todos[0], + state.todos[998], + ...state.todos.slice(2, 998), + state.todos[1], + ...state.todos.slice(999), + ] + : state.todos + ), + }), +}; + + +/// COMPONENTS /// + +const Jumbotron = ({ + actions, +}) => ( + hook_dom('div[className=jumbotron]'), + [ + node_dom('div[className=row]', null, [ + node_dom('td[className=col-md-6]', null, [ + node_dom('h1[innerText=lui]'), + ]), + node_dom('td[className=col-md-6]', null, + [ + { + id: 'run', label: 'Create 1,000 rows', + click: () => actions.create(1e3), + }, { + id: 'runlots', label: 'Create 10,000 rows', + click: () => actions.create(1e4), + }, { + id: 'add', label: 'Append 1,000 rows', + click: () => actions.add(1e3), + }, { + id: 'update', label: 'Update every 10th row', + click: () => actions.update(10), + }, { + id: 'clear', label: 'Clear', + click: () => actions.init(), + }, { + id: 'swaprows', label: 'Swap Rows', + click: () => actions.swap(), + }, + ].map(item => + node_dom('div[className=col-sm-6 smallpad]', null, [ + node_dom('button[type=button][className=btn btn-primary btn-block]', { + id: item.id, + innerText: item.label, + onclick: item.click, + }), + ]) + ) + ), + ]), + ] +); + +const Row = ({ + I: { + id, + label, + }, + actions, + selected, +}) => ( + hook_dom('tr', { + F: { + danger: selected === id, + }, + }), + [ + node_dom('td[className=col-md-1]', { + innerText: id, + }), + node_dom('td[className=col-md-4]', null, [ + node_dom('a', { + innerText: label, + onclick: hook_static(() => { + actions.select(id); + }), + }), + ]), + node_dom('td[className=col-md-1]', null, [ + node_dom('a', { + onclick: hook_static(() => { + actions.remove(id); + }), + }, [ + node_dom('span[className=glyphicon glyphicon-remove][ariaHidden]'), + ]), + ]), + node_dom('td[className=col-md-6]'), + ] +); + +init(() => { + const [ + { + todos, + selected, + }, + actions, + ] = hook_model(model); + + return [ + node_dom('div[className=container]', null, [ + node(Jumbotron, { + actions, + }), + node_dom('table[className=table table-hover table-striped test-data]', null, [ + node_dom('tbody', null, [ + node_map(Row, todos, { + actions, + selected, + }), + ]), + ]), + node_dom('span[className=preloadicon glyphicon glyphicon-remove][ariaHidden]'), + ]), + ]; +}); diff --git a/frameworks/keyed/lui-noeval/src/lui.noeval.js b/frameworks/keyed/lui-noeval/src/lui.noeval.js new file mode 100644 index 000000000..81fad63a0 --- /dev/null +++ b/frameworks/keyed/lui-noeval/src/lui.noeval.js @@ -0,0 +1,15 @@ +'use strict';/* + lui.js web frame work 2.2.0 + inspired by react and mithril + L3P3.de 2024 +*/ +{let e=null,g=!e,h=e,l=0,v=0,w=0,x=!g,y=[],z=[]; +const A={},C={},D={},aa=[e,(a,b)=>a!==b&&a[0]!==b[0],(a,b)=>a!==b&&(a[0]!==b[0]||a[1]!==b[1]),(a,b)=>a!==b&&(a[0]!==b[0]||a[1]!==b[1]||a[2]!==b[2])],E=[],ba={},F=e,G=g,I=x,J=Array,K=Object,L=K.assign,M=K.keys,N=document,ca=window,ea=ca.performance||Date,O=a=>{const b=(a=M(a)).join(",");return D[b]||(D[b]=a)},Q=(a,b,c)=>{if(a===b)return!1;for(const d of c)if(a[d]!==b[d])return!0;return!1},fa=(a,b)=>a===b?E:M(a).filter(c=>a[c]!==b[c]),R=a=>a?5>a.length?aa[a.length]:ha:F,ha=(a,b)=>{if(a===b)return!1; +for(let c=0,d=a.length;c{const c=e,d=b,n=c.s+1;h=c.M;l=0;c.u=I;if(c.o.A!==S){var f=F;try{f=(0,c.o.A)(c.o.l||ba)}catch(P){}var q=c.g;if(f){q&&(a=q,b=F);var r=f.length,k,t=c.j||(c.j=(new J(r)).fill(F));do{var m=t[--r];(k=f[r])&&k!==G?((g=!m)?(t[r]=e=m={o:k,J:k.l&&O(k.l),G:c,s:n,L:r,M:[],j:F,g:F,h:F,u:I},S(a,b),m.g&&a.insertBefore(m.h=m.g,b)):k.l&&Q(m.o.l,k.l,m.J)&&((e=m).o=k,S(a,b)),m.h&&(b=m.h)):m&&(T(m,a),t[r]=F)}while(0=U(t,t)+t)){k=ia();f={};q=[];var p;if(p=0{b&&a.g&&(a.g.remove(),b=F);if(a.j)for(var c of a.j)c&&T(c,b);b=a.M;let d=b.length;for(;1(n=f.indexOf(a)))&&(!(f=z[n])||0>(n=f.indexOf(a)))||f.splice(n,1)}},ja=a=>{if(a.g)return a.g;let b;a=(b=a.j)?b.length:0;let c,d;for(;0{if(a.g)return b.insertBefore(a.g,c);if(a.h){let d=a.j.length;do a.j[--d]&&(c=ka(a.j[d],b,c));while(0!a.u&&(a.u=G,y[a.s]?y[a.s].push(a):y[a.s]=[a],x||V()),ia=a=>(l(l{const b=U(a,F);return b?fa(b,a):M(a)},la=a=>{const b=e.g;if(a){for(const c of X(a)){switch(c.charCodeAt(0)){case 70:b.className=M(a.F).filter(d=>a.F[d]).join(" "); +continue;case 82:a.R(b);case 67:case 68:case 83:continue}b[c]=a[c]}if(a.D)for(const c of X(a.D))b.dataset[c]=a.D[c];if(a.S)for(const c of X(a.S))b.style[c]=a.S[c]}return b},Y=(a,b,c)=>({A:a,l:b?c?(b.C=c,b):b:c?{C:c}:F}),V=()=>{g=0>=v;v=ea.now();w&&cancelAnimationFrame(w);x=G;w=0;for(var a;(a=y).length;){y=[];for(const b of a)if(b)for(e of b)if(e.u){if(e.g)S(F,F);else{let c=F,d=e.h,n=e,f=e;for(;!(a=(n=n.G).g););do{let q=f.L;const {j:r}=f=f.G,k=r.length;for(;++qw||(w=requestAnimationFrame(V)),Z=a=>{let b=A[a];if(!b){const c=a.indexOf("[");A[a]=b=N.createElement(0>c?a:a.substr(0,c));if(0{let b=C[a];if(!b){const c=Z(a);C[a]=b=d=>(g&&(e.g=c.cloneNode(G)),la(d),d&&d.C||F)}return b};ca.lui={defer:()=>(x=G,ma()),defer_end:V,dom_define:(a,b,c)=>{b=Z(b);c&&(b=b.cloneNode(G),c.D&&(L(b.dataset,c.D),delete c.D),c.S&&(L(b.style,c.S),delete c.S),L(b,c));A["#"+a]=b},hook_assert:a=>{if(!a)throw A;},hook_async:(a,b,c)=>{let d;if((ld.i!==f&&d.m===b&&(d.i=f,W(n)))}return d.i},hook_dom:(a,b)=>(e.g===F&&(e.g=Z(a).cloneNode(G)),la(b||F)),hook_effect:(a,b)=>{if(l>= +h.length)h[l]={v:1,B:R(b),m:b=b||E,K:a(...b)||F};else if(b){const c=h[l];c.B(c.m,b)&&(c.K&&c.K(...c.m),c.K=a(...(c.m=b))||F)}++l},hook_memo:(a,b)=>l>=h.length?(h[l++]={v:0,B:R(b),m:b=b||E,i:a(...b)}).i:b&&h[l].B(h[l].m,b)?h[l].i=a(...(h[l++].m=b)):h[l++].i,hook_model:a=>{if(l{n=(0,a[d])(c[0],...n);c[0]!==n&&(c[0]=n,W(b))};h[l++]={v:0,i:c};return c},hook_prev:U,hook_rerender:()=>{const a=e;a.u=G;z[a.s]?z[a.s].push(a): +z[a.s]=[a]},hook_state:a=>{if(l{c[0]!==d&&(c[0]=d,W(b))},()=>c[0]];h[l++]={v:0,i:c};return c},hook_static:ia,init:(a,b=N.body,c=F)=>{b.innerHTML="";W({o:{A:a,l:c},J:F,G:F,s:0,L:0,M:[],j:F,g:b,h:b,u:I})},node:Y,node_dom:(a,b,c)=>Y(na(a),b,c),node_map:(a,b,c)=>Y(S,{A:a,T:b,l:c||F}),now:()=>v}} \ No newline at end of file diff --git a/frameworks/keyed/lui/.gitignore b/frameworks/keyed/lui/.gitignore new file mode 100644 index 000000000..aa6b49561 --- /dev/null +++ b/frameworks/keyed/lui/.gitignore @@ -0,0 +1 @@ +src/app.min.js diff --git a/frameworks/keyed/lui/index.html b/frameworks/keyed/lui/index.html index ce57b6256..51d22db85 100644 --- a/frameworks/keyed/lui/index.html +++ b/frameworks/keyed/lui/index.html @@ -1,4 +1,4 @@ - + @@ -7,6 +7,6 @@ - + diff --git a/frameworks/keyed/lui/package-lock.json b/frameworks/keyed/lui/package-lock.json index b71d8c90c..62765713a 100644 --- a/frameworks/keyed/lui/package-lock.json +++ b/frameworks/keyed/lui/package-lock.json @@ -1,12 +1,191 @@ { "name": "js-framework-benchmark-lui", - "version": "1.1.0", + "version": "2.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "js-framework-benchmark-lui", - "version": "1.1.0" + "version": "2.2.0", + "devDependencies": { + "bun": "latest" + } + }, + "node_modules/@oven/bun-darwin-aarch64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-aarch64/-/bun-darwin-aarch64-1.3.0.tgz", + "integrity": "sha512-WeXSaL29ylJEZMYHHW28QZ6rgAbxQ1KuNSZD9gvd3fPlo0s6s2PglvPArjjP07nmvIK9m4OffN0k4M98O7WmAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-darwin-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64/-/bun-darwin-x64-1.3.0.tgz", + "integrity": "sha512-CFKjoUWQH0Oz3UHYfKbdKLq0wGryrFsTJEYq839qAwHQSECvVZYAnxVVDYUDa0yQFonhO2qSHY41f6HK+b7xtw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-darwin-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-darwin-x64-baseline/-/bun-darwin-x64-baseline-1.3.0.tgz", + "integrity": "sha512-+FSr/ub5vA/EkD3fMhHJUzYioSf/sXd50OGxNDAntVxcDu4tXL/81Ka3R/gkZmjznpLFIzovU/1Ts+b7dlkrfw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@oven/bun-linux-aarch64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64/-/bun-linux-aarch64-1.3.0.tgz", + "integrity": "sha512-WHthS/eLkCNcp9pk4W8aubRl9fIUgt2XhHyLrP0GClB1FVvmodu/zIOtG0NXNpzlzB8+gglOkGo4dPjfVf4Z+g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-aarch64-musl": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-aarch64-musl/-/bun-linux-aarch64-musl-1.3.0.tgz", + "integrity": "sha512-HT5sr7N8NDYbQRjAnT7ISpx64y+ewZZRQozOJb0+KQObKvg4UUNXGm4Pn1xA4/WPMZDDazjO8E2vtOQw1nJlAQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64/-/bun-linux-x64-1.3.0.tgz", + "integrity": "sha512-sGEWoJQXO4GDr0x4t/yJQ/Bq1yNkOdX9tHbZZ+DBGJt3z3r7jeb4Digv8xQUk6gdTFC9vnGHuin+KW3/yD1Aww==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-baseline/-/bun-linux-x64-baseline-1.3.0.tgz", + "integrity": "sha512-OmlEH3nlxQyv7HOvTH21vyNAZGv9DIPnrTznzvKiOQxkOphhCyKvPTlF13ydw4s/i18iwaUrhHy+YG9HSSxa4Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-musl": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl/-/bun-linux-x64-musl-1.3.0.tgz", + "integrity": "sha512-rtzUEzCynl3Rhgn/iR9DQezSFiZMcAXAbU+xfROqsweMGKwvwIA2ckyyckO08psEP8XcUZTs3LT9CH7PnaMiEA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-linux-x64-musl-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-linux-x64-musl-baseline/-/bun-linux-x64-musl-baseline-1.3.0.tgz", + "integrity": "sha512-hrr7mDvUjMX1tuJaXz448tMsgKIqGJBY8+rJqztKOw1U5+a/v2w5HuIIW1ce7ut0ZwEn+KIDvAujlPvpH33vpQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@oven/bun-windows-x64": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64/-/bun-windows-x64-1.3.0.tgz", + "integrity": "sha512-xXwtpZVVP7T+vkxcF/TUVVOGRjEfkByO4mKveKYb4xnHWV4u4NnV0oNmzyMKkvmj10to5j2h0oZxA4ZVVv4gfA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@oven/bun-windows-x64-baseline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@oven/bun-windows-x64-baseline/-/bun-windows-x64-baseline-1.3.0.tgz", + "integrity": "sha512-/jVZ8eYjpYHLDFNoT86cP+AjuWvpkzFY+0R0a1bdeu0sQ6ILuy1FV6hz1hUAP390E09VCo5oP76fnx29giHTtA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/bun": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bun/-/bun-1.3.0.tgz", + "integrity": "sha512-YI7mFs7iWc/VsGsh2aw6eAPD2cjzn1j+LKdYVk09x1CrdTWKYIHyd+dG5iQoN9//3hCDoZj8U6vKpZzEf5UARA==", + "cpu": [ + "arm64", + "x64" + ], + "dev": true, + "hasInstallScript": true, + "os": [ + "darwin", + "linux", + "win32" + ], + "bin": { + "bun": "bin/bun.exe", + "bunx": "bin/bunx.exe" + }, + "optionalDependencies": { + "@oven/bun-darwin-aarch64": "1.3.0", + "@oven/bun-darwin-x64": "1.3.0", + "@oven/bun-darwin-x64-baseline": "1.3.0", + "@oven/bun-linux-aarch64": "1.3.0", + "@oven/bun-linux-aarch64-musl": "1.3.0", + "@oven/bun-linux-x64": "1.3.0", + "@oven/bun-linux-x64-baseline": "1.3.0", + "@oven/bun-linux-x64-musl": "1.3.0", + "@oven/bun-linux-x64-musl-baseline": "1.3.0", + "@oven/bun-windows-x64": "1.3.0", + "@oven/bun-windows-x64-baseline": "1.3.0" + } } } } diff --git a/frameworks/keyed/lui/package.json b/frameworks/keyed/lui/package.json index 641db1195..5415815f8 100644 --- a/frameworks/keyed/lui/package.json +++ b/frameworks/keyed/lui/package.json @@ -1,16 +1,17 @@ { "name": "js-framework-benchmark-lui", - "version": "1.1.0", + "version": "2.2.0", "description": "Benchmark for lui", "js-framework-benchmark": { - "frameworkVersion": "1.2.3", + "frameworkVersion": "2.2.0", "frameworkHomeURL": "https://github.com/L3P3/lui", - "issues": [ - 1139 - ] + "issues": [1139] + }, + "devDependencies": { + "bun": "latest" }, "scripts": { "dev": "echo 0", - "build-prod": "echo 0" + "build-prod": "bun build --minify --outfile=src/app.min.js src/app.js" } } diff --git a/frameworks/keyed/lui/src/app.js b/frameworks/keyed/lui/src/app.js index be651b2b1..c1ca2f65e 100644 --- a/frameworks/keyed/lui/src/app.js +++ b/frameworks/keyed/lui/src/app.js @@ -1,6 +1,6 @@ const { hook_dom, - hook_reducer, + hook_model, hook_static, init, node, @@ -11,9 +11,9 @@ const { /// STORE /// -const adjectives = ['pretty', 'large', 'big', 'small', 'tall', 'short', 'long', 'handsome', 'plain', 'quaint', 'clean', 'elegant', 'easy', 'angry', 'crazy', 'helpful', 'mushy', 'odd', 'unsightly', 'adorable', 'important', 'inexpensive', 'cheap', 'expensive', 'fancy']; -const colors = ['red', 'yellow', 'blue', 'green', 'pink', 'brown', 'purple', 'brown', 'white', 'black', 'orange']; -const nouns = ['table', 'chair', 'house', 'bbq', 'desk', 'car', 'pony', 'cookie', 'sandwich', 'burger', 'pizza', 'mouse', 'keyboard']; +const adjectives = 'pretty,large,big,small,tall,short,long,handsome,plain,quaint,clean,elegant,easy,angry,crazy,helpful,mushy,odd,unsightly,adorable,important,inexpensive,cheap,expensive,fancy'.split(','); +const colors = 'red,yellow,blue,green,pink,brown,purple,brown,white,black,orange'.split(','); +const nouns = 'table,chair,house,bbq,desk,car,pony,cookie,sandwich,burger,pizza,mouse,keyboard'.split(','); const pick = options => ( options[ @@ -26,71 +26,52 @@ const pick = options => ( let id_counter = 0; -const item_generate = () => ({ +const todo_create = () => ({ id: ++id_counter, label: `${pick(adjectives)} ${pick(colors)} ${pick(nouns)}`, }); -const ACTION_RESET = 0; -const ACTION_CREATE = 1; -const ACTION_ADD = 2; -const ACTION_REMOVE = 3; -const ACTION_SELECT = 4; -const ACTION_UPDATE = 5; -const ACTION_SWAP = 6; - -const actions = [ - // RESET - () => ({ - data: [], +const model = { + init: () => ({ + todos: [], selected: null, }), - - // CREATE - (state, count) => ({ + create: (state, count) => ({ ...state, - data: ( + todos: ( new Array(count) .fill(null) - .map(item_generate) + .map(todo_create) ), selected: null, }), - - // ADD - (state, count) => ({ + add: (state, count) => ({ ...state, - data: [ - ...state.data, + todos: [ + ...state.todos, ...( new Array(count) .fill(null) - .map(item_generate) + .map(todo_create) ), ], }), - - // REMOVE - (state, id) => ({ + remove: (state, id) => ({ ...state, - data: state.data.filter(item => item.id !== id), + todos: state.todos.filter(item => item.id !== id), selected: ( state.selected === id ? null : state.selected ), }), - - // SELECT - (state, id) => ({ + select: (state, id) => ({ ...state, selected: id, }), - - // UPDATE - (state, mod) => ({ + update: (state, mod) => ({ ...state, - data: state.data.map((item, index) => + todos: state.todos.map((item, index) => index % mod > 0 ? item : { @@ -99,29 +80,27 @@ const actions = [ } ), }), - - // SWAP - (state) => ({ + swap: (state) => ({ ...state, - data: ( - state.data.length > 998 + todos: ( + state.todos.length > 998 ? [ - state.data[0], - state.data[998], - ...state.data.slice(2, 998), - state.data[1], - ...state.data.slice(999), + state.todos[0], + state.todos[998], + ...state.todos.slice(2, 998), + state.todos[1], + ...state.todos.slice(999), ] - : state.data + : state.todos ), }), -]; +}; /// COMPONENTS /// const Jumbotron = ({ - dispatch, + actions, }) => ( hook_dom('div[className=jumbotron]'), [ @@ -133,22 +112,22 @@ const Jumbotron = ({ [ { id: 'run', label: 'Create 1,000 rows', - click: () => dispatch(ACTION_CREATE, 1e3), + click: () => actions.create(1e3), }, { id: 'runlots', label: 'Create 10,000 rows', - click: () => dispatch(ACTION_CREATE, 1e4), + click: () => actions.create(1e4), }, { id: 'add', label: 'Append 1,000 rows', - click: () => dispatch(ACTION_ADD, 1e3), + click: () => actions.add(1e3), }, { id: 'update', label: 'Update every 10th row', - click: () => dispatch(ACTION_UPDATE, 10), + click: () => actions.update(10), }, { id: 'clear', label: 'Clear', - click: () => dispatch(ACTION_RESET), + click: () => actions.init(), }, { id: 'swaprows', label: 'Swap Rows', - click: () => dispatch(ACTION_SWAP), + click: () => actions.swap(), }, ].map(item => node_dom('div[className=col-sm-6 smallpad]', null, [ @@ -169,7 +148,7 @@ const Row = ({ id, label, }, - dispatch, + actions, selected, }) => ( hook_dom('tr', { @@ -185,14 +164,14 @@ const Row = ({ node_dom('a', { innerText: label, onclick: hook_static(() => { - dispatch(ACTION_SELECT, id); + actions.select(id); }), }), ]), node_dom('td[className=col-md-1]', null, [ node_dom('a', { onclick: hook_static(() => { - dispatch(ACTION_REMOVE, id); + actions.remove(id); }), }, [ node_dom('span[className=glyphicon glyphicon-remove][ariaHidden]'), @@ -205,26 +184,26 @@ const Row = ({ init(() => { const [ { - data, + todos, selected, }, - dispatch, - ] = hook_reducer(actions); - - return [null, [ + actions, + ] = hook_model(model); + + return [ node_dom('div[className=container]', null, [ node(Jumbotron, { - dispatch, + actions, }), node_dom('table[className=table table-hover table-striped test-data]', null, [ node_dom('tbody', null, [ - node_map(Row, data, { - dispatch, + node_map(Row, todos, { + actions, selected, }), ]), ]), node_dom('span[className=preloadicon glyphicon glyphicon-remove][ariaHidden]'), ]), - ]]; + ]; }); diff --git a/frameworks/keyed/lui/src/lui.js b/frameworks/keyed/lui/src/lui.js index 14fc36bbf..8a0b2e8db 100644 --- a/frameworks/keyed/lui/src/lui.js +++ b/frameworks/keyed/lui/src/lui.js @@ -1,19 +1,15 @@ 'use strict';/* - lui.js web frame work 1.2.3 + lui.js web frame work 2.2.0 inspired by react and mithril - L3P3.de 2022 + L3P3.de 2024 */ -{let e=null,f=!e,g=e,n=0,r=0,u=0,x=f,y=[],z=[]; -const A={},B={},C={},D=[],F=[],G=e,I=f,J=!f,K=Array,L=Object,aa=L.assign,M=L.keys,ba=document,ca=window,da=ca.performance||Date,ea=a=>new Function("a","b",`return a!==b&&(${a.join("||")})`),N=a=>{const b=(a=M(a)).join(",");return C[b]||(C[b]=ea(a.map(c=>`a.${c}!==b.`+c)))},fa=(a,b)=>a===b?F:M(a).filter(c=>a[c]!==b[c]),O=a=>a?D[a.length]||(D[a.length]=ea(a.map((b,c)=>`a[${c}]!==b[${c}]`))):G,P=(a,b)=>{const c=e,d=b,l=c.v+1;g=c.u;n=1;c.B=J;if(c.s.H!==N){var k=G;try{k=(0,c.s.H)(c.s.o)}catch(R){}var p= -c.i;if(k){p&&(a=p,b=G);var q=k.length,h,t=c.l||(c.l=(new K(q)).fill(G));do{var m=t[--q];(h=k[q])&&h!==I?((f=!m)?((t[q]=e=m={s:h,N:h.o&&N(h.o),J:c,v:l,P:q,u:[],l:G,i:G,j:G,B:J}).u[0]={m:0,U:m},P(a,b),m.i&&a.insertBefore(m.j=m.i,b)):h.o&&m.N(m.s.o,h.o)&&((e=m).s=h,P(a,b)),m.j&&(b=m.j)):m&&(Q(m,a),t[q]=G)}while(0=S(t,t)+t)){h=T();k={};p=[];v=0{b&&a.i&&(b.removeChild(a.i), -b=G);if(a.l)for(const c of a.l)c&&Q(c,b);U(a.u);if(a.B){let c,d;(!(d=y[c=a.v])||0>(c=d.indexOf(a)))&&(!(d=z[c])||0>(c=d.indexOf(a)))||d.splice(c,1)}},U=a=>{let b,c=a.length;for(;1{const d="object"===typeof a[0];for(const l of a)a=d?l.id:l,b[a]=l,c.push(a);return d},ja=a=>{if(a.i)return a.i;let b;a=(b=a.l)?b.length:0;let c,d;for(;0{if(a.i)return b.insertBefore(a.i,c),a.i;if(a.j){let d=a.l.length;do a.l[--d]&&(c=ka(a.l[d],b,c));while(0{for(;0!==a[0].m;){if(!a[0].V.G)return G;a[0].V.G=J;a=a[0].ba}return a[0].U},W=a=>(a=ma(a))&&!a.B&&(a.B=I,y[a.v]?y[a.v].push(a):y[a.v]=[a],x||V()),na=()=>{const a=ma(g);a&&(a.B=I,z[a.v]?z[a.v].push(a):z[a.v]=[a])},oa=(a,b)=>{if(n>=g.length)g[n]={m:1,A:O(b),h:b=b||F,O:a(...b)||G};else if(b){const c=g[n];c.A(c.h,b)&&(c.O&&c.O(...c.h),c.O=a(...(c.h=b))||G)}++n},pa= -a=>{if(n{c[0]!==d&&(c[0]=d,W(b))},()=>c[0]];g[n++]={m:0,g:c};return c},T=a=>(nn>=g.length?(g[n++]={m:0,A:O(b),h:b=b||F,g:a(...b)}).g:b&&g[n].A(g[n].h,b)?g[n].g=a(...(g[n++].h=b)):g[n++].g,S=(a,b)=>(n(a=setTimeout(()=>b(I),a),()=>clearTimeout(a)),la=a=>{for(const b of a.Y)U(a.L[b])},sa=(a,b,c)=>({$:c.aa,fa:a,Z:r,ea:f?r:r+b}),X=a=>{const b= -S(a,G);return b?fa(b,a):M(a)},Y=a=>{const b=e.i;if(a){for(const c of X(a))switch(c.charCodeAt(0)){case 70:b.className=M(a.F).filter(d=>a.F[d]).join(" ");continue;case 82:a.R(b);case 67:case 68:case 83:continue;default:b[c]=a[c]}if(a.D)for(const c of X(a.D))b.dataset[c]=a.D[c];if(a.S)for(const c of X(a.S))b.style[c]=a.S[c]}return b},Z=(a,b,c)=>({H:a,o:b?c?(b.C=c,b):b:c?{C:c}:G}),V=()=>{f=0>=r;r=da.now();u&&cancelAnimationFrame(u);x=I;u=0;for(var a;(a=y).length;){y=[];for(const b of a)if(b)for(e of b)if(e.B){if(e.i)P(G, -G);else{let c=G,d=e.j,l=e,k=e;for(;!(a=(l=l.J).i););do{let p=k.P;const {l:q}=k=k.J,h=q.length;for(;++pu||(u=requestAnimationFrame(V)),ua=a=>{let b=A[a];if(!b){const c=a.indexOf("[");A[a]=b=ba.createElement(0>c?a.substr(0):a.substr(0,c));if(0{let b=B[a];if(!b){const c=ua(a);B[a]=b=d=>(f&&(e.i=c.cloneNode(I)),Y(d),d&&d.C||G)}return b};ca.lui={defer:()=>(x=I,ta()),defer_end:V,hook_assert:a=>{if(!a)throw A;},hook_async:(a,b,c)=>{let d;if((nd.g!==k&&d.h===b&&(d.g=k,W(l)))}return d.g},hook_callback:(a,b)=>{const c=T();c.h=b;return c.ga||(c.ga=(...d)=>a(...c.h,...d))},hook_delay:a=>{const [b,c]=pa(J);oa(ra,[a,c]);return b},hook_dom:(a,b)=>(f&&(e.i=ua(a).cloneNode(I)),Y(b||G)),hook_effect:oa,hook_first:()=> -f,hook_map:(a,b,c)=>{let d=G,l=I;if(n{if(n{d=(0,a[d])(c[0],l);c[0]!==d&&(c[0]=d,W(b))}];g[n++]={m:0,g:c};return c},hook_reducer_f:(a,b)=>{if(n{l=a(d[0],l);d[0]!==l&&(d[0]=l,W(c))}];g[n++]={m:0,g:d};return d},hook_rerender:na,hook_state:pa,hook_static:T,hook_sub:(a,b)=>{let c=G;if(n{const c=T({aa:a});a=qa(sa,[a,b,c]);return c.aa=a.ea<=r?a.fa:(na(),a.Z===r?a.$:a.$+(a.fa-a.$)*(r-a.Z)/(a.ea-a.Z))},init:a=>{let b;const c=ba.body;c.innerHTML="";(e={s:{H:()=>(Y((b=a())[0]),b[1]),o:G},N:G,J:G,v:0,P:0,u:[],l:G,i:c,j:c,B:I}).u[0]= -{m:0,U:e};y[0]=[e];V()},node:Z,node_dom:(a,b,c)=>Z(va(a),b,c),node_map:(a,b,c)=>Z(N,{H:a,M:b,o:c||G}),now:()=>r}} \ No newline at end of file +{let e=null,g=!e,h=e,l=0,v=0,w=0,x=!g,y=[],z=[]; +const A={},C={},D={},E=[],F=[],aa={},G=e,I=g,J=x,K=Array,L=Object,M=L.assign,N=L.keys,P=document,ba=window,ca=ba.performance||Date,da=a=>new Function("a","b",`return a!==b&&(${a.join("||")})`),Q=a=>{const b=(a=N(a)).join(",");return D[b]||(D[b]=da(a.map(c=>`a.${c}!==b.`+c)))},fa=(a,b)=>a===b?F:N(a).filter(c=>a[c]!==b[c]),R=a=>a?E[a.length]||(E[a.length]=da(a.map((b,c)=>`a[${c}]!==b[${c}]`))):G,S=(a,b)=>{const c=e,d=b,n=c.s+1;h=c.M;l=0;c.u=J;if(c.o.A!==S){var f=G;try{f=(0,c.o.A)(c.o.l||aa)}catch(O){}var q= +c.g;if(f){q&&(a=q,b=G);var r=f.length,k,t=c.j||(c.j=(new K(r)).fill(G));do{var m=t[--r];(k=f[r])&&k!==I?((g=!m)?(t[r]=e=m={o:k,J:k.l&&Q(k.l),G:c,s:n,L:r,M:[],j:G,g:G,h:G,u:J},S(a,b),m.g&&a.insertBefore(m.h=m.g,b)):k.l&&m.J(m.o.l,k.l)&&((e=m).o=k,S(a,b)),m.h&&(b=m.h)):m&&(T(m,a),t[r]=G)}while(0=U(t,t)+t)){k=ha();f={};q=[];var p;if(p=0{b&& +a.g&&(a.g.remove(),b=G);if(a.j)for(var c of a.j)c&&T(c,b);b=a.M;let d=b.length;for(;1(n=f.indexOf(a)))&&(!(f=z[n])||0>(n=f.indexOf(a)))||f.splice(n,1)}},ia=a=>{if(a.g)return a.g;let b;a=(b=a.j)?b.length:0;let c,d;for(;0{if(a.g)return b.insertBefore(a.g,c);if(a.h){let d=a.j.length;do a.j[--d]&&(c=ja(a.j[d],b,c));while(0 +!a.u&&(a.u=I,y[a.s]?y[a.s].push(a):y[a.s]=[a],x||V()),ha=a=>(l(l{const b=U(a,G);return b?fa(b,a):N(a)},ka=a=>{const b=e.g;if(a){for(const c of X(a)){switch(c.charCodeAt(0)){case 70:b.className=N(a.F).filter(d=>a.F[d]).join(" ");continue;case 82:a.R(b);case 67:case 68:case 83:continue}b[c]=a[c]}if(a.D)for(const c of X(a.D))b.dataset[c]=a.D[c];if(a.S)for(const c of X(a.S))b.style[c]= +a.S[c]}return b},Y=(a,b,c)=>({A:a,l:b?c?(b.C=c,b):b:c?{C:c}:G}),V=()=>{g=0>=v;v=ca.now();w&&cancelAnimationFrame(w);x=I;w=0;for(var a;(a=y).length;){y=[];for(const b of a)if(b)for(e of b)if(e.u){if(e.g)S(G,G);else{let c=G,d=e.h,n=e,f=e;for(;!(a=(n=n.G).g););do{let q=f.L;const {j:r}=f=f.G,k=r.length;for(;++qw|| +(w=requestAnimationFrame(V)),Z=a=>{let b=A[a];if(!b){const c=a.indexOf("[");A[a]=b=P.createElement(0>c?a:a.substr(0,c));if(0{let b=C[a];if(!b){const c=Z(a);C[a]=b=d=>(g&&(e.g=c.cloneNode(I)),ka(d),d&&d.C||G)}return b};ba.lui={defer:()=>(x=I,la()),defer_end:V,dom_define:(a,b,c)=>{b=Z(b);c&&(b=b.cloneNode(I),c.D&&(M(b.dataset,c.D),delete c.D),c.S&&(M(b.style,c.S),delete c.S),M(b,c));A["#"+a]=b},hook_assert:a=>{if(!a)throw A;},hook_async:(a,b,c)=>{let d;if((ld.i!==f&&d.m===b&&(d.i=f,W(n)))}return d.i},hook_dom:(a,b)=>(e.g===G&&(e.g=Z(a).cloneNode(I)),ka(b||G)),hook_effect:(a,b)=>{if(l>= +h.length)h[l]={v:1,B:R(b),m:b=b||F,K:a(...b)||G};else if(b){const c=h[l];c.B(c.m,b)&&(c.K&&c.K(...c.m),c.K=a(...(c.m=b))||G)}++l},hook_memo:(a,b)=>l>=h.length?(h[l++]={v:0,B:R(b),m:b=b||F,i:a(...b)}).i:b&&h[l].B(h[l].m,b)?h[l].i=a(...(h[l++].m=b)):h[l++].i,hook_model:a=>{if(l{n=(0,a[d])(c[0],...n);c[0]!==n&&(c[0]=n,W(b))};h[l++]={v:0,i:c};return c},hook_prev:U,hook_rerender:()=>{const a=e;a.u=I;z[a.s]?z[a.s].push(a): +z[a.s]=[a]},hook_state:a=>{if(l{c[0]!==d&&(c[0]=d,W(b))},()=>c[0]];h[l++]={v:0,i:c};return c},hook_static:ha,init:(a,b=P.body,c=G)=>{b.innerHTML="";W({o:{A:a,l:c},J:G,G,s:0,L:0,M:[],j:G,g:b,h:b,u:J})},node:Y,node_dom:(a,b,c)=>Y(ma(a),b,c),node_map:(a,b,c)=>Y(S,{A:a,T:b,l:c||G}),now:()=>v}} \ No newline at end of file From 451d3cbd61b3bbd204512a6b3fddf2af30223dc4 Mon Sep 17 00:00:00 2001 From: "Dmitry Iv." Date: Wed, 15 Oct 2025 20:18:01 -0400 Subject: [PATCH 28/39] Test sprae 12 --- frameworks/non-keyed/sprae/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/non-keyed/sprae/package.json b/frameworks/non-keyed/sprae/package.json index 002167fd5..653069682 100644 --- a/frameworks/non-keyed/sprae/package.json +++ b/frameworks/non-keyed/sprae/package.json @@ -14,10 +14,10 @@ ], "scripts": { "build-dev": "cp ./node_modules/sprae/dist/sprae.js ./src/sprae.js", - "build-prod": "cp ./node_modules/sprae/dist/sprae.min.js ./src/sprae.js" + "build-prod": "cp ./node_modules/sprae/dist/sprae.js ./src/sprae.js" }, "type": "module", "dependencies": { - "sprae": "^11.3.0" + "sprae": "^12.1.0" } } From 9de5d5b10aa3f071490c0a987a02cd5460c83e7b Mon Sep 17 00:00:00 2001 From: Mia Kanashi Date: Fri, 17 Oct 2025 12:31:46 +0300 Subject: [PATCH 29/39] fix keyed/marko and rename it to keyed/marko-classes --- broken-frameworks/keyed/marko/README.md | 23 - .../keyed/marko/package-lock.json | 2754 ------------- broken-frameworks/keyed/marko/vite.config.js | 12 - .../keyed/marko-classes}/.gitignore | 0 .../keyed/marko-classes/package-lock.json | 3555 +++++++++++++++++ .../keyed/marko-classes}/package.json | 12 +- .../src/components/content.component.js | 0 .../src/components/content.marko | 2 +- .../marko-classes}/src/components/row.marko | 0 .../marko-classes}/src/routes/+layout.marko | 2 +- .../src/routes/_index/+page.marko | 0 frameworks/keyed/marko-classes/vite.config.js | 5 + 12 files changed, 3569 insertions(+), 2796 deletions(-) delete mode 100644 broken-frameworks/keyed/marko/README.md delete mode 100644 broken-frameworks/keyed/marko/package-lock.json delete mode 100644 broken-frameworks/keyed/marko/vite.config.js rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/.gitignore (100%) create mode 100644 frameworks/keyed/marko-classes/package-lock.json rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/package.json (73%) rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/src/components/content.component.js (100%) rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/src/components/content.marko (99%) rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/src/components/row.marko (100%) rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/src/routes/+layout.marko (85%) rename {broken-frameworks/keyed/marko => frameworks/keyed/marko-classes}/src/routes/_index/+page.marko (100%) create mode 100644 frameworks/keyed/marko-classes/vite.config.js diff --git a/broken-frameworks/keyed/marko/README.md b/broken-frameworks/keyed/marko/README.md deleted file mode 100644 index f78b6ddf3..000000000 --- a/broken-frameworks/keyed/marko/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# Thanks for checking out Marko - -# Installation - -``` -npx @marko/create marko-app --template basic -cd marko-app -npm install -npm run dev -``` - -## Overview - -This project is powered by [@marko/run](https://github.com/marko-js/run). - -- Run `npm run dev` to start the development server -- Run `npm run build-prod` to build a production-ready node.js server -- Run `npm run preview` to run the production server - -## Adding Pages - -Pages map to the directory structure. You can add additional pages by creating files/directories under `src/routes` with `+page.marko` files. Learn more in the [`@marko/run` docs](https://github.com/marko-js/run/#file-based-routing). - diff --git a/broken-frameworks/keyed/marko/package-lock.json b/broken-frameworks/keyed/marko/package-lock.json deleted file mode 100644 index 36b914424..000000000 --- a/broken-frameworks/keyed/marko/package-lock.json +++ /dev/null @@ -1,2754 +0,0 @@ -{ - "name": "my-app", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "my-app", - "version": "1.0.0", - "dependencies": { - "@marko/run-adapter-static": "^0.1.5", - "marko": "^5.31.0" - }, - "devDependencies": { - "@marko/run": "^0.2.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", - "dependencies": { - "@babel/highlight": "^7.22.13", - "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz", - "integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", - "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", - "dependencies": { - "@babel/types": "^7.23.0", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/generator/node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", - "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", - "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", - "dependencies": { - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", - "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", - "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", - "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz", - "integrity": "sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz", - "integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-typescript": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", - "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.0", - "@babel/types": "^7.23.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", - "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.5.tgz", - "integrity": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz", - "integrity": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.5.tgz", - "integrity": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz", - "integrity": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz", - "integrity": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz", - "integrity": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz", - "integrity": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz", - "integrity": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz", - "integrity": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz", - "integrity": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz", - "integrity": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz", - "integrity": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz", - "integrity": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz", - "integrity": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz", - "integrity": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz", - "integrity": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz", - "integrity": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz", - "integrity": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz", - "integrity": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz", - "integrity": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz", - "integrity": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz", - "integrity": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/@fastify/busboy": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.0.0.tgz", - "integrity": "sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@marko/babel-utils": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/@marko/babel-utils/-/babel-utils-6.3.1.tgz", - "integrity": "sha512-cxYUqmnS6pG3frmZsyC358qxtzOmalzT6IcF70+OaUeQ5DDq6b4CTi6MvMcCuXFj6ZoLLUkhOCe3HDX78f92Ig==", - "dependencies": { - "@babel/runtime": "^7.16.0", - "jsesc": "^3.0.2", - "relative-import-path": "^1.0.0" - } - }, - "node_modules/@marko/compiler": { - "version": "5.33.3", - "resolved": "https://registry.npmjs.org/@marko/compiler/-/compiler-5.33.3.tgz", - "integrity": "sha512-g+M2m97Td48ce7C18wJOkJL+X1NN7/W6HIHa07cqX2/jNjPw/Vcb9yc/cSyifTnCszJNawXQmoA0SgCJuudGbg==", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "@babel/core": "^7.16.0", - "@babel/generator": "^7.16.0", - "@babel/parser": "^7.16.0", - "@babel/plugin-syntax-typescript": "^7.16.0", - "@babel/plugin-transform-modules-commonjs": "^7.16.0", - "@babel/plugin-transform-typescript": "^7.16.0", - "@babel/runtime": "^7.16.0", - "@babel/traverse": "^7.16.0", - "@babel/types": "^7.16.0", - "@marko/babel-utils": "^6.3.0", - "complain": "^1.6.0", - "he": "^1.2.0", - "htmljs-parser": "^5.4.3", - "jsesc": "^3.0.2", - "kleur": "^4.1.5", - "lasso-package-root": "^1.0.1", - "raptor-regexp": "^1.0.1", - "raptor-util": "^3.2.0", - "resolve-from": "^5.0.0", - "self-closing-tags": "^1.0.1", - "source-map-support": "^0.5.21", - "strip-ansi": "^6.0.0", - "strip-json-comments": "^3.1.1" - } - }, - "node_modules/@marko/compiler/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@marko/compiler/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@marko/run": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/@marko/run/-/run-0.2.8.tgz", - "integrity": "sha512-X1X/uZb+qkwm9l/ThIOky38UrdECAwHD48YUjhebgYFksbjNITqs05mTYUUcjg7rVG+mUAbXdFbgcGP5jyRuhQ==", - "dependencies": { - "@marko/vite": "^3.1.4", - "browserslist": "^4.22.1", - "cli-table3": "^0.6.3", - "compression": "^1.7.4", - "dotenv": "^16.0.3", - "esbuild-plugin-browserslist": "^0.9.1", - "glob": "^8.1.0", - "human-format": "^1.0.2", - "kleur": "^4.1.5", - "parse-node-args": "^1.1.2", - "sade": "^1.8.1", - "serve-static": "^1.15.0", - "strip-ansi": "^7.0.1", - "supports-color": "^9.4.0", - "undici": "^5.26.3", - "vite": "^4.5.0", - "warp10": "^2.1.0" - }, - "bin": { - "marko-run": "dist/cli/index.mjs" - }, - "peerDependencies": { - "marko": "^5" - } - }, - "node_modules/@marko/run-adapter-static": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@marko/run-adapter-static/-/run-adapter-static-0.1.5.tgz", - "integrity": "sha512-Q2qS1jJW0ikwYNb1LKCa7XtlcSU0sI2AVeOIJJbv5qdMlES7YrO6rITg7DD7p9eOBSeP8plSxamz/NtDKteKwA==", - "dependencies": { - "undici": "^5.14.0" - }, - "peerDependencies": { - "@marko/run": "^0" - } - }, - "node_modules/@marko/translator-default": { - "version": "5.31.3", - "resolved": "https://registry.npmjs.org/@marko/translator-default/-/translator-default-5.31.3.tgz", - "integrity": "sha512-2N7OQ2AMNFqBqcScg/q3L4Rsh3VToy/SL78yqtbNoom5N5rdoQWyMxOkWR1zFD8/YN9kqbX5AGg2bm5iGLL7Qw==", - "dependencies": { - "@babel/runtime": "^7.16.0", - "@marko/babel-utils": "^6.3.1", - "escape-string-regexp": "^4.0.0", - "magic-string": "^0.27.0", - "self-closing-tags": "^1.0.1" - }, - "peerDependencies": { - "@marko/compiler": "^5.16.1", - "marko": "^5.17.2" - } - }, - "node_modules/@marko/translator-default/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@marko/vite": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@marko/vite/-/vite-3.1.4.tgz", - "integrity": "sha512-Ro1mYEqiW71rgsFMoajCeX5LU61lfMQz39AXaHOhE96/rcLtFWbxTUb+YUtG3MJMOOFAvQx0/PhxNYbxQ3oGyA==", - "dependencies": { - "anymatch": "^3.1.3", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "htmlparser2": "^9.0.0" - }, - "peerDependencies": { - "@marko/compiler": "^5", - "vite": "^2 || ^3 || ^4 || ^5" - } - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/app-module-path": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz", - "integrity": "sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==" - }, - "node_modules/argly": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/argly/-/argly-1.2.0.tgz", - "integrity": "sha512-+F3InkcH2XOGK7Jf/ZQis4cwZ4wbfmpBKo5J+SAA9bglT1gVd0e9hroHWarU076pJrAfs8JKuRPwDqwPBOKHnw==" - }, - "node_modules/assertion-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", - "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", - "engines": { - "node": "*" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/browser-refresh-client": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/browser-refresh-client/-/browser-refresh-client-1.1.4.tgz", - "integrity": "sha512-FM/UzMFsG7wJ1ocxCSl6U7qGAIWASEk+tlvfJLP2Pd1JfS4kQ1r4d5f+nNmQI8fB8sXSD8+u/mWErEkAMxUu3w==" - }, - "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001551", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz", - "integrity": "sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chai": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz", - "integrity": "sha512-eRYY0vPS2a9zt5w5Z0aCeWbrXTEyvk7u/Xf71EzNObrjSCPgMm1Nku/D/u2tiqHBX5j40wWhj54YJLtgn8g55A==", - "dependencies": { - "assertion-error": "^1.0.1", - "deep-eql": "^0.1.3", - "type-detect": "^1.0.0" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/complain": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/complain/-/complain-1.6.0.tgz", - "integrity": "sha512-9oBfSEfxveaNmo2eSp/vEPkaBVxUhiJTZVgGYayzBchSAXQM6CK1PAQeV5ICShnSgfT+biYzrN7egKwwX+HkCw==", - "dependencies": { - "error-stack-parser": "^2.0.1" - } - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deep-eql": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", - "integrity": "sha512-6sEotTRGBFiNcqVoeHwnfopbSpi5NbH1VWJmYCVkmxMmaVTT0bUTrNaGyBwhgP4MZL012W/mkzIn3Da+iDYweg==", - "dependencies": { - "type-detect": "0.1.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/deep-eql/node_modules/type-detect": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", - "integrity": "sha512-5rqszGVwYgBoDkIm2oUtvkfZMQ0vk29iDMU0W2qCa3rG0vPDNczCMT4hV/bLBgLg8k8ri6+u3Zbt+S/14eMzlA==", - "engines": { - "node": "*" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.560", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.560.tgz", - "integrity": "sha512-HhJH/pWAxTaPZl7R3mJ6gCd8MfjQdil9RAWk84qHaLsmPTadydfAmq0a1x8kZtOGQ6pZrWhOYj5uZ8I0meZIgg==" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "dependencies": { - "stackframe": "^1.3.4" - } - }, - "node_modules/esbuild": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.5.tgz", - "integrity": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==", - "hasInstallScript": true, - "peer": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.19.5", - "@esbuild/android-arm64": "0.19.5", - "@esbuild/android-x64": "0.19.5", - "@esbuild/darwin-arm64": "0.19.5", - "@esbuild/darwin-x64": "0.19.5", - "@esbuild/freebsd-arm64": "0.19.5", - "@esbuild/freebsd-x64": "0.19.5", - "@esbuild/linux-arm": "0.19.5", - "@esbuild/linux-arm64": "0.19.5", - "@esbuild/linux-ia32": "0.19.5", - "@esbuild/linux-loong64": "0.19.5", - "@esbuild/linux-mips64el": "0.19.5", - "@esbuild/linux-ppc64": "0.19.5", - "@esbuild/linux-riscv64": "0.19.5", - "@esbuild/linux-s390x": "0.19.5", - "@esbuild/linux-x64": "0.19.5", - "@esbuild/netbsd-x64": "0.19.5", - "@esbuild/openbsd-x64": "0.19.5", - "@esbuild/sunos-x64": "0.19.5", - "@esbuild/win32-arm64": "0.19.5", - "@esbuild/win32-ia32": "0.19.5", - "@esbuild/win32-x64": "0.19.5" - } - }, - "node_modules/esbuild-plugin-browserslist": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.9.1.tgz", - "integrity": "sha512-3SsUo4Kb/blNDk+zOa8zrwk+IafzkYRVuHTT+ClKp2eRQfya5q/xkPKFSg6VCCF0uMuZVjhsiq8Geit4Rdqqqw==", - "dependencies": { - "debug": "^4.3.4", - "zod": "^3.21.4" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "browserslist": "^4.21.8", - "esbuild": "~0.19.2" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/events-light": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/events-light/-/events-light-1.0.5.tgz", - "integrity": "sha512-jF51LJzg5W+tkJgfZbjlbFCLcyVFEtOjU+xMCBylrXG13X5XHvfp6lNGfyBLF9u1mRTpUsMVYqSDukvpZff1mQ==", - "dependencies": { - "chai": "^3.5.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "bin": { - "he": "bin/he" - } - }, - "node_modules/htmljs-parser": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/htmljs-parser/-/htmljs-parser-5.5.0.tgz", - "integrity": "sha512-KcJ84GmLFo+EWQ1hYjgLTSro8kEMFuTTdchOUeco5N95peHMtoY5XsX7YeU4oj+tPrvl9OXHlUkJAnY5zshhaQ==" - }, - "node_modules/htmlparser2": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.0.0.tgz", - "integrity": "sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "entities": "^4.5.0" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/human-format": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/human-format/-/human-format-1.2.0.tgz", - "integrity": "sha512-GIjOefWusTiXEPezbuI59uc1G2SNMpym6w1wNfoWAG6QrTsWueuauR5We0xHHuzoJKIYTwwNtTEy0ahyji5KXw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/kleur": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/lasso-caching-fs": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lasso-caching-fs/-/lasso-caching-fs-1.0.2.tgz", - "integrity": "sha512-mudop0s8U3tLm3Fn9lhiZsiELpLeJToEo6RlDLdph7vWRxL9Sz0o+9WUw1IwlpCYXv/P0CLsMYWFgPwIKWEYvg==", - "dependencies": { - "raptor-async": "^1.1.2" - } - }, - "node_modules/lasso-package-root": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lasso-package-root/-/lasso-package-root-1.0.1.tgz", - "integrity": "sha512-j6LnauNCldqSDvOxoKpD6sTzudPGMiwcZQbySoF9KvJ0lD9Dp2t6QZF8kC0jbUDHuQPiAo5RuQ/mC3AGXscUYA==", - "dependencies": { - "lasso-caching-fs": "^1.0.0" - } - }, - "node_modules/listener-tracker": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/listener-tracker/-/listener-tracker-2.0.0.tgz", - "integrity": "sha512-U6NLzBRyrAsJs9AAjuBYifXtNYnAIDPIp81rNpxNoypXBR7qi/LhsuUWX5399zuTg1sBEQyOnWDYFrBQ28vk/w==" - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/magic-string": { - "version": "0.27.0", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", - "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/marko": { - "version": "5.31.12", - "resolved": "https://registry.npmjs.org/marko/-/marko-5.31.12.tgz", - "integrity": "sha512-r1xPrwURXdl7L16Ji9g+R83CBfOWNLc+QMZGNjLhm5hePU0UEYRNHgjVdmyx3cWgiSZ0NNkuwaeBoq0Q+EI4BQ==", - "dependencies": { - "@marko/compiler": "^5.33.3", - "@marko/translator-default": "^5.31.3", - "app-module-path": "^2.2.0", - "argly": "^1.2.0", - "browser-refresh-client": "1.1.4", - "complain": "^1.6.0", - "csstype": "^3.1.2", - "events-light": "^1.0.5", - "listener-tracker": "^2.0.0", - "minimatch": "^3.0.4", - "raptor-util": "^3.2.0", - "resolve-from": "^5.0.0", - "self-closing-tags": "^1.0.1", - "warp10": "^2.0.1" - }, - "bin": { - "markoc": "bin/markoc" - } - }, - "node_modules/marko/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/marko/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/parse-node-args": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/parse-node-args/-/parse-node-args-1.1.2.tgz", - "integrity": "sha512-kwtLiOlr5aPE78EyLGHzdhvfoVKXC/j8NuwMj53V20D09YqQ2vjkcyQKb1i9ufwzLoeKUjOyu4aoUctrVmnrwQ==", - "dependencies": { - "@babel/runtime": "7.1.2" - } - }, - "node_modules/parse-node-args/node_modules/@babel/runtime": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.1.2.tgz", - "integrity": "sha512-Y3SCjmhSupzFB6wcv1KmmFucH6gDVnI30WjOcicV10ju0cZjak3Jcs67YLIXBrmZYw1xCrVeJPbycFwrqNyxpg==", - "dependencies": { - "regenerator-runtime": "^0.12.0" - } - }, - "node_modules/parse-node-args/node_modules/regenerator-runtime": { - "version": "0.12.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz", - "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raptor-async": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/raptor-async/-/raptor-async-1.1.3.tgz", - "integrity": "sha512-VZCxygWMjW9lKqnApK9D2QbfyzRn7ehiTqnXWwMCLBXANSy+xbnYfbX/5f8YX3bZXu+g+JESmqWPchIQrZj2ig==" - }, - "node_modules/raptor-regexp": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/raptor-regexp/-/raptor-regexp-1.0.1.tgz", - "integrity": "sha512-DqC7ViHJUs3jLIxJI1/HVvCu3yPJaP8CM7PGsHvjimg7yJ3lLOdCBxlPE0G2Q8OJgUA8Pe7nvhm6lcQ3hZepow==" - }, - "node_modules/raptor-util": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/raptor-util/-/raptor-util-3.2.0.tgz", - "integrity": "sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw==" - }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "node_modules/relative-import-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/relative-import-path/-/relative-import-path-1.0.0.tgz", - "integrity": "sha512-ZvbtoduKQmD4PZeJPfH6Ql21qUWhaMxiHkIsH+FUnZqKDwNIXBtGg5zRZyHWomiGYk8n5+KMBPK7Mi4D0XWfNg==" - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/sade": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", - "dependencies": { - "mri": "^1.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/self-closing-tags": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/self-closing-tags/-/self-closing-tags-1.0.1.tgz", - "integrity": "sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", - "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/type-detect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz", - "integrity": "sha512-f9Uv6ezcpvCQjJU0Zqbg+65qdcszv3qUQsZfjdRbWiZ7AMenrX1u0lNk9EoWWX6e1F+NULyg27mtdeZ5WhpljA==", - "engines": { - "node": "*" - } - }, - "node_modules/undici": { - "version": "5.26.4", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.26.4.tgz", - "integrity": "sha512-OG+QOf0fTLtazL9P9X7yqWxQ+Z0395Wk6DSkyTxtaq3wQEjIroVe7Y4asCX/vcCxYpNGMnwz8F0qbRYUoaQVMw==", - "dependencies": { - "@fastify/busboy": "^2.0.0" - }, - "engines": { - "node": ">=14.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/vite": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", - "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/warp10": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/warp10/-/warp10-2.1.0.tgz", - "integrity": "sha512-krhkqzJdUxAZv2Cx0Gz6dN1r7TTrG9RDewkDHBbJQIqbNTCdB5ZUHVh7VkA4DgrKW4ZXPPUQKCwmI/3btDse9A==" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/zod": { - "version": "3.22.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", - "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - } - } -} diff --git a/broken-frameworks/keyed/marko/vite.config.js b/broken-frameworks/keyed/marko/vite.config.js deleted file mode 100644 index 7c80938b6..000000000 --- a/broken-frameworks/keyed/marko/vite.config.js +++ /dev/null @@ -1,12 +0,0 @@ -import { defineConfig } from "vite"; -import marko from "@marko/run/vite"; -import staticAdapter from "@marko/run-adapter-static"; - -export default defineConfig({ - base:'/frameworks/keyed/marko/dist/', - plugins: [ - marko({ - adapter: staticAdapter() - }) - ] -}); \ No newline at end of file diff --git a/broken-frameworks/keyed/marko/.gitignore b/frameworks/keyed/marko-classes/.gitignore similarity index 100% rename from broken-frameworks/keyed/marko/.gitignore rename to frameworks/keyed/marko-classes/.gitignore diff --git a/frameworks/keyed/marko-classes/package-lock.json b/frameworks/keyed/marko-classes/package-lock.json new file mode 100644 index 000000000..33400662f --- /dev/null +++ b/frameworks/keyed/marko-classes/package-lock.json @@ -0,0 +1,3555 @@ +{ + "name": "my-app", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "my-app", + "version": "1.0.0", + "dependencies": { + "@marko/run-adapter-static": "^2.0.3", + "marko": "^5.37.60" + }, + "devDependencies": { + "@marko/run": "^0.9.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", + "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", + "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.3.tgz", + "integrity": "sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.4" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz", + "integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", + "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@chialab/cjs-to-esm": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@chialab/cjs-to-esm/-/cjs-to-esm-0.18.0.tgz", + "integrity": "sha512-fm8X9NhPO5pyUB7gxOZgwxb8lVq1UD4syDJCpqh6x4zGME6RTck7BguWZ4Zgv3GML4fQ4KZtyRwP5eoDgNGrmA==", + "license": "MIT", + "dependencies": { + "@chialab/estransform": "^0.18.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@chialab/estransform": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/@chialab/estransform/-/estransform-0.18.1.tgz", + "integrity": "sha512-W/WmjpQL2hndD0/XfR0FcPBAUj+aLNeoAVehOjV/Q9bSnioz0GVSAXXhzp59S33ZynxJBBfn8DNiMTVNJmk4Aw==", + "license": "MIT", + "dependencies": { + "@parcel/source-map": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz", + "integrity": "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.11.tgz", + "integrity": "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz", + "integrity": "sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.11.tgz", + "integrity": "sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz", + "integrity": "sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz", + "integrity": "sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz", + "integrity": "sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz", + "integrity": "sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz", + "integrity": "sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz", + "integrity": "sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz", + "integrity": "sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz", + "integrity": "sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz", + "integrity": "sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz", + "integrity": "sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz", + "integrity": "sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz", + "integrity": "sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz", + "integrity": "sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz", + "integrity": "sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz", + "integrity": "sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz", + "integrity": "sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz", + "integrity": "sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz", + "integrity": "sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz", + "integrity": "sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz", + "integrity": "sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz", + "integrity": "sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz", + "integrity": "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "license": "MIT", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "license": "MIT", + "dependencies": { + "@isaacs/balanced-match": "^4.0.1" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@luxass/strip-json-comments": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@luxass/strip-json-comments/-/strip-json-comments-1.4.0.tgz", + "integrity": "sha512-Zl343to4u/t8jz1q7R/1UY6hLX+344cwPLEXsIYthVwdU5zyjuVBGcpf2E24+QZkwFfRfmnHTcscreQzWn3hiA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@marko/compiler": { + "version": "5.39.40", + "resolved": "https://registry.npmjs.org/@marko/compiler/-/compiler-5.39.40.tgz", + "integrity": "sha512-gQSdfJ5XOy01DtP7ULiqI1onp7Cix1QvnjM0KbfR2HMrWNI14V8V/2JguFAm3BzKEMZmmgvRLk0rvBzSm9FP6Q==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/core": "^7.28.0", + "@babel/generator": "^7.28.0", + "@babel/parser": "^7.28.0", + "@babel/plugin-syntax-typescript": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.0", + "@babel/runtime": "^7.28.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@luxass/strip-json-comments": "^1.4.0", + "complain": "^1.6.1", + "he": "^1.2.0", + "htmljs-parser": "^5.7.3", + "jsesc": "^3.1.0", + "kleur": "^4.1.5", + "lasso-package-root": "^1.0.1", + "raptor-regexp": "^1.0.1", + "raptor-util": "^3.2.0", + "relative-import-path": "^1.0.0", + "resolve-from": "^5.0.0", + "self-closing-tags": "^1.0.1", + "source-map-support": "^0.5.21" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@marko/run": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@marko/run/-/run-0.9.2.tgz", + "integrity": "sha512-U5eCQonzyPoitRe81ZDEOpHtnML7CbLtkPJdaJUl2GLzZ9F7y/n19/S+ATtgykoNolGDYq43XCdMhegMCUd3vw==", + "license": "MIT", + "dependencies": { + "@marko/run-explorer": "^2.0.1", + "@marko/vite": "^5.3.2", + "browserslist": "^4.24.4", + "cli-table3": "^0.6.5", + "compression": "^1.8.0", + "debug": "^4.4.0", + "dotenv": "^16.4.7", + "draftlog": "^1.0.13", + "esbuild-plugin-browserslist": "^0.16.0", + "glob": "^11.0.1", + "human-format": "^1.2.1", + "kleur": "^4.1.5", + "parse-node-args": "^1.1.2", + "sade": "^1.8.1", + "serve-static": "^1.16.2", + "supports-color": "^10.0.0", + "vite": "^7.0.0", + "warp10": "^2.1.0" + }, + "bin": { + "marko-run": "dist/cli/index.mjs" + }, + "peerDependencies": { + "marko": "5 - 6" + } + }, + "node_modules/@marko/run-adapter-static": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@marko/run-adapter-static/-/run-adapter-static-2.0.3.tgz", + "integrity": "sha512-k/z5sEVgad1T29wJydXyGGnC2JZA2IULs7OT2WU0ax5BasdBIFq1gVnoI6EbAVLfPjsqCtHwd8YcDVLwpSwNjg==", + "license": "MIT", + "dependencies": { + "compression": "^1.8.0", + "htmlparser2": "^10.0.0", + "sirv": "^1.0.15", + "undici": "^6.21.0" + }, + "peerDependencies": { + "@marko/run": "^0.7.7||^0.8||^0.9" + } + }, + "node_modules/@marko/run-explorer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@marko/run-explorer/-/run-explorer-2.0.2.tgz", + "integrity": "sha512-7oKAZP2dGKeOC2BHAwNZLe1FAkM1xm129cQaQJiQNGfni+kr610iMhBHyrmiW/D40XnyrzuAsUaWXNP65Vh2Yg==", + "license": "MIT", + "peerDependencies": { + "@marko/run": "^0.7||^0.8||^0.9" + } + }, + "node_modules/@marko/vite": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/@marko/vite/-/vite-5.3.2.tgz", + "integrity": "sha512-svJBQCjL1FYHpIztRPUNXfugnLjKWtLAvZEeo6mL4EjEQHOubzfHSd+HSauTUXi/F9WuVzfWxMJqCZtvFUsgGg==", + "license": "MIT", + "dependencies": { + "@chialab/cjs-to-esm": "^0.18.0", + "anymatch": "^3.1.3", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "fast-glob": "^3.3.3", + "htmlparser2": "^10.0.0", + "relative-import-path": "^1.0.0", + "resolve": "^1.22.10", + "resolve.exports": "^2.0.3" + }, + "peerDependencies": { + "@marko/compiler": "^5", + "vite": "4 - 7" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/source-map": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz", + "integrity": "sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==", + "license": "MIT", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": "^12.18.3 || >=14" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", + "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", + "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", + "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", + "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", + "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", + "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", + "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", + "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", + "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", + "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", + "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", + "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", + "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", + "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", + "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", + "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", + "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", + "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", + "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", + "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", + "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", + "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-module-path": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz", + "integrity": "sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==", + "license": "BSD-2-Clause" + }, + "node_modules/argly": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/argly/-/argly-1.2.0.tgz", + "integrity": "sha512-+F3InkcH2XOGK7Jf/ZQis4cwZ4wbfmpBKo5J+SAA9bglT1gVd0e9hroHWarU076pJrAfs8JKuRPwDqwPBOKHnw==", + "license": "MIT" + }, + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.17", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.17.tgz", + "integrity": "sha512-j5zJcx6golJYTG6c05LUZ3Z8Gi+M62zRT/ycz4Xq4iCOdpcxwg7ngEYD4KA0eWZC7U17qh/Smq8bYbACJ0ipBA==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-refresh-client": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/browser-refresh-client/-/browser-refresh-client-1.1.4.tgz", + "integrity": "sha512-FM/UzMFsG7wJ1ocxCSl6U7qGAIWASEk+tlvfJLP2Pd1JfS4kQ1r4d5f+nNmQI8fB8sXSD8+u/mWErEkAMxUu3w==", + "license": "MIT" + }, + "node_modules/browserslist": { + "version": "4.26.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", + "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.9", + "caniuse-lite": "^1.0.30001746", + "electron-to-chromium": "^1.5.227", + "node-releases": "^2.0.21", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz", + "integrity": "sha512-eRYY0vPS2a9zt5w5Z0aCeWbrXTEyvk7u/Xf71EzNObrjSCPgMm1Nku/D/u2tiqHBX5j40wWhj54YJLtgn8g55A==", + "license": "MIT", + "dependencies": { + "assertion-error": "^1.0.1", + "deep-eql": "^0.1.3", + "type-detect": "^1.0.0" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/complain": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/complain/-/complain-1.6.1.tgz", + "integrity": "sha512-WsiVAbAPcPSwyC5k8g/PLceaW0MXJUw61KqBd9uiyDOSuDIC6Ho/EbyhdFjeV6wq44R2g/b8IFpvV/1ZyXiqUQ==", + "license": "MIT", + "dependencies": { + "error-stack-parser": "^2.0.1" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", + "integrity": "sha512-6sEotTRGBFiNcqVoeHwnfopbSpi5NbH1VWJmYCVkmxMmaVTT0bUTrNaGyBwhgP4MZL012W/mkzIn3Da+iDYweg==", + "license": "MIT", + "dependencies": { + "type-detect": "0.1.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/deep-eql/node_modules/type-detect": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", + "integrity": "sha512-5rqszGVwYgBoDkIm2oUtvkfZMQ0vk29iDMU0W2qCa3rG0vPDNczCMT4hV/bLBgLg8k8ri6+u3Zbt+S/14eMzlA==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com/" + } + }, + "node_modules/draftlog": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/draftlog/-/draftlog-1.0.13.tgz", + "integrity": "sha512-GeMWOpXERBpfVDK6v7m0x1hPg8+g8ZsZWqJl2T17wHqrm4h8fnjiZmXcnCrmwogAc6R3YTxFXax15wezfuyCUw==", + "license": "MIT" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.237", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz", + "integrity": "sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg==", + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.11.tgz", + "integrity": "sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.11", + "@esbuild/android-arm": "0.25.11", + "@esbuild/android-arm64": "0.25.11", + "@esbuild/android-x64": "0.25.11", + "@esbuild/darwin-arm64": "0.25.11", + "@esbuild/darwin-x64": "0.25.11", + "@esbuild/freebsd-arm64": "0.25.11", + "@esbuild/freebsd-x64": "0.25.11", + "@esbuild/linux-arm": "0.25.11", + "@esbuild/linux-arm64": "0.25.11", + "@esbuild/linux-ia32": "0.25.11", + "@esbuild/linux-loong64": "0.25.11", + "@esbuild/linux-mips64el": "0.25.11", + "@esbuild/linux-ppc64": "0.25.11", + "@esbuild/linux-riscv64": "0.25.11", + "@esbuild/linux-s390x": "0.25.11", + "@esbuild/linux-x64": "0.25.11", + "@esbuild/netbsd-arm64": "0.25.11", + "@esbuild/netbsd-x64": "0.25.11", + "@esbuild/openbsd-arm64": "0.25.11", + "@esbuild/openbsd-x64": "0.25.11", + "@esbuild/openharmony-arm64": "0.25.11", + "@esbuild/sunos-x64": "0.25.11", + "@esbuild/win32-arm64": "0.25.11", + "@esbuild/win32-ia32": "0.25.11", + "@esbuild/win32-x64": "0.25.11" + } + }, + "node_modules/esbuild-plugin-browserslist": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.16.0.tgz", + "integrity": "sha512-vfwl1RmCa4D+wWoAxStz2g0O3wWGyUAv6mK9mfgF7X2UY3z/b/6ySTWoPu9nnKvBea6D3uk2zS1TOLt/b5qgLQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "zod": "^3.24.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "browserslist": "^4.21.8", + "esbuild": "~0.25.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/events-light": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/events-light/-/events-light-1.0.5.tgz", + "integrity": "sha512-jF51LJzg5W+tkJgfZbjlbFCLcyVFEtOjU+xMCBylrXG13X5XHvfp6lNGfyBLF9u1mRTpUsMVYqSDukvpZff1mQ==", + "license": "MIT", + "dependencies": { + "chai": "^3.5.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz", + "integrity": "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.3.1", + "jackspeak": "^4.1.1", + "minimatch": "^10.0.3", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/htmljs-parser": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/htmljs-parser/-/htmljs-parser-5.7.4.tgz", + "integrity": "sha512-PCGI7/Z10oBkpKKqbQ9Wgd0GZjSQ/dV7QlBjOmaqD1FkBsHWk730BW9mJCbnXfRbtZCdLh8M8IA8YeKPu9tGaQ==", + "license": "MIT" + }, + "node_modules/htmlparser2": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", + "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/human-format": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/human-format/-/human-format-1.2.1.tgz", + "integrity": "sha512-o5Ldz62VWR5lYUZ8aVQaLKiN37NsHnmk3xjMoUjza3mGkk8MvMofgZT0T6HKSCKSJIir+AWk9Dx8KhxvZAUgCg==", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz", + "integrity": "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lasso-caching-fs": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lasso-caching-fs/-/lasso-caching-fs-1.0.2.tgz", + "integrity": "sha512-mudop0s8U3tLm3Fn9lhiZsiELpLeJToEo6RlDLdph7vWRxL9Sz0o+9WUw1IwlpCYXv/P0CLsMYWFgPwIKWEYvg==", + "license": "Apache-2.0", + "dependencies": { + "raptor-async": "^1.1.2" + } + }, + "node_modules/lasso-package-root": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lasso-package-root/-/lasso-package-root-1.0.1.tgz", + "integrity": "sha512-j6LnauNCldqSDvOxoKpD6sTzudPGMiwcZQbySoF9KvJ0lD9Dp2t6QZF8kC0jbUDHuQPiAo5RuQ/mC3AGXscUYA==", + "license": "Apache-2.0", + "dependencies": { + "lasso-caching-fs": "^1.0.0" + } + }, + "node_modules/listener-tracker": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/listener-tracker/-/listener-tracker-2.0.0.tgz", + "integrity": "sha512-U6NLzBRyrAsJs9AAjuBYifXtNYnAIDPIp81rNpxNoypXBR7qi/LhsuUWX5399zuTg1sBEQyOnWDYFrBQ28vk/w==", + "license": "Apache-2.0" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.19", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz", + "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/marko": { + "version": "5.37.60", + "resolved": "https://registry.npmjs.org/marko/-/marko-5.37.60.tgz", + "integrity": "sha512-KffDVvTVtLWmrxi564vsN09d2wCkEJ+OkR2LFo/LqM1dbrT6PiyHmfpjj4gXaOz7TBj1vt0c/OXMJBus+vp07Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.2", + "@marko/compiler": "^5.39.40", + "app-module-path": "^2.2.0", + "argly": "^1.2.0", + "browser-refresh-client": "1.1.4", + "complain": "^1.6.1", + "csstype": "^3.1.3", + "events-light": "^1.0.5", + "listener-tracker": "^2.0.0", + "magic-string": "^0.30.17", + "minimatch": "^9.0.5", + "raptor-util": "^3.2.0", + "resolve-from": "^5.0.0", + "self-closing-tags": "^1.0.1", + "warp10": "^2.1.0" + }, + "bin": { + "markoc": "bin/markoc" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/marko/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.3.tgz", + "integrity": "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==", + "license": "ISC", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-releases": { + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.25.tgz", + "integrity": "sha512-4auku8B/vw5psvTiiN9j1dAOsXvMoGqJuKJcR+dTdqiXEK20mMTk1UEo3HS16LeGQsVG6+qKTPM9u/qQ2LqATA==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parse-node-args": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/parse-node-args/-/parse-node-args-1.1.3.tgz", + "integrity": "sha512-Dp9KVLLq7g9TfGh3Uo8bv+0zW+YEKis+9J3d6KFp/GHkbqS5jd5xveavErhrOP2hsAmbCwdKFBTxBlNxXMK6vg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz", + "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==", + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raptor-async": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/raptor-async/-/raptor-async-1.1.3.tgz", + "integrity": "sha512-VZCxygWMjW9lKqnApK9D2QbfyzRn7ehiTqnXWwMCLBXANSy+xbnYfbX/5f8YX3bZXu+g+JESmqWPchIQrZj2ig==", + "license": "Apache License v2.0" + }, + "node_modules/raptor-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/raptor-regexp/-/raptor-regexp-1.0.1.tgz", + "integrity": "sha512-DqC7ViHJUs3jLIxJI1/HVvCu3yPJaP8CM7PGsHvjimg7yJ3lLOdCBxlPE0G2Q8OJgUA8Pe7nvhm6lcQ3hZepow==", + "license": "Apache License v2.0" + }, + "node_modules/raptor-util": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/raptor-util/-/raptor-util-3.2.0.tgz", + "integrity": "sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw==", + "license": "Apache-2.0" + }, + "node_modules/relative-import-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/relative-import-path/-/relative-import-path-1.0.0.tgz", + "integrity": "sha512-ZvbtoduKQmD4PZeJPfH6Ql21qUWhaMxiHkIsH+FUnZqKDwNIXBtGg5zRZyHWomiGYk8n5+KMBPK7Mi4D0XWfNg==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", + "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.4", + "@rollup/rollup-android-arm64": "4.52.4", + "@rollup/rollup-darwin-arm64": "4.52.4", + "@rollup/rollup-darwin-x64": "4.52.4", + "@rollup/rollup-freebsd-arm64": "4.52.4", + "@rollup/rollup-freebsd-x64": "4.52.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", + "@rollup/rollup-linux-arm-musleabihf": "4.52.4", + "@rollup/rollup-linux-arm64-gnu": "4.52.4", + "@rollup/rollup-linux-arm64-musl": "4.52.4", + "@rollup/rollup-linux-loong64-gnu": "4.52.4", + "@rollup/rollup-linux-ppc64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-musl": "4.52.4", + "@rollup/rollup-linux-s390x-gnu": "4.52.4", + "@rollup/rollup-linux-x64-gnu": "4.52.4", + "@rollup/rollup-linux-x64-musl": "4.52.4", + "@rollup/rollup-openharmony-arm64": "4.52.4", + "@rollup/rollup-win32-arm64-msvc": "4.52.4", + "@rollup/rollup-win32-ia32-msvc": "4.52.4", + "@rollup/rollup-win32-x64-gnu": "4.52.4", + "@rollup/rollup-win32-x64-msvc": "4.52.4", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "license": "MIT", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/self-closing-tags": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/self-closing-tags/-/self-closing-tags-1.0.1.tgz", + "integrity": "sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "license": "MIT", + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", + "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/type-detect": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz", + "integrity": "sha512-f9Uv6ezcpvCQjJU0Zqbg+65qdcszv3qUQsZfjdRbWiZ7AMenrX1u0lNk9EoWWX6e1F+NULyg27mtdeZ5WhpljA==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/undici": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.22.0.tgz", + "integrity": "sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "7.1.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.10.tgz", + "integrity": "sha512-CmuvUBzVJ/e3HGxhg6cYk88NGgTnBoOo7ogtfJJ0fefUWAxN/WDSUa50o+oVBxuIhO8FoEZW0j2eW7sfjs5EtA==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/warp10": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/warp10/-/warp10-2.1.0.tgz", + "integrity": "sha512-krhkqzJdUxAZv2Cx0Gz6dN1r7TTrG9RDewkDHBbJQIqbNTCdB5ZUHVh7VkA4DgrKW4ZXPPUQKCwmI/3btDse9A==", + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/broken-frameworks/keyed/marko/package.json b/frameworks/keyed/marko-classes/package.json similarity index 73% rename from broken-frameworks/keyed/marko/package.json rename to frameworks/keyed/marko-classes/package.json index f46bc09e2..01485fe7e 100644 --- a/broken-frameworks/keyed/marko/package.json +++ b/frameworks/keyed/marko-classes/package.json @@ -4,17 +4,19 @@ "js-framework-benchmark": { "frameworkVersionFromPackage": "marko", "frameworkHomeURL": "https://markojs.com/", - "customURL": "/dist", - "issues": [1139] + "customURL": "/dist/public", + "issues": [ + 1139 + ] }, "version": "1.0.0", "type": "module", "dependencies": { - "@marko/run-adapter-static": "^0.1.5", - "marko": "^5.31.0" + "@marko/run-adapter-static": "^2.0.3", + "marko": "^5.37.60" }, "devDependencies": { - "@marko/run": "^0.2.0" + "@marko/run": "^0.9.2" }, "private": true, "scripts": { diff --git a/broken-frameworks/keyed/marko/src/components/content.component.js b/frameworks/keyed/marko-classes/src/components/content.component.js similarity index 100% rename from broken-frameworks/keyed/marko/src/components/content.component.js rename to frameworks/keyed/marko-classes/src/components/content.component.js diff --git a/broken-frameworks/keyed/marko/src/components/content.marko b/frameworks/keyed/marko-classes/src/components/content.marko similarity index 99% rename from broken-frameworks/keyed/marko/src/components/content.marko rename to frameworks/keyed/marko-classes/src/components/content.marko index 20bbab0f5..69f66fbdf 100644 --- a/broken-frameworks/keyed/marko/src/components/content.marko +++ b/frameworks/keyed/marko-classes/src/components/content.marko @@ -40,4 +40,4 @@
{row.id}
{id} - { $selected = row.id; }}>{row.$label} + { @selected = id; }}>{row.@label} remove(row)}> From 46f471950d729b5278acbe5159421d6b0e869eed Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sun, 21 Sep 2025 23:45:44 +0100 Subject: [PATCH 12/39] update version --- frameworks/keyed/ripple/package-lock.json | 16 +- frameworks/keyed/ripple/package.json | 4 +- webdriver-ts-results/src/results.ts | 424 +++++++++++----------- webdriver-ts/results.json | 2 +- 4 files changed, 223 insertions(+), 223 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index 30a3b514e..c66fdd482 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.56", + "ripple": "^0.2.61", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.56" + "rollup-plugin-ripple": "^0.2.61" } }, "node_modules/@jridgewell/gen-mapping": { @@ -650,9 +650,9 @@ } }, "node_modules/ripple": { - "version": "0.2.56", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.56.tgz", - "integrity": "sha512-74M96kLk6XmfKaw4ObiQCo2zBB5hBbIjUo3IL3O8nnmrdE9uM0OMXYgJdG7h8RO5r0VIjSxrydi/SQsKmeWXlg==", + "version": "0.2.61", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.61.tgz", + "integrity": "sha512-ZsOZnGuQUEkiGdoiQh1nmrgbkrLeGRFrNfq8MRJ3i8M2gpU+stUAWvDyV1p0xoc+nmFhcGlm6Wah4n7sjxELPg==", "dev": true, "license": "MIT", "dependencies": { @@ -718,9 +718,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.56", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.56.tgz", - "integrity": "sha512-r5OHuiqOjIU1chnwIrqJV/aLDk3pJ6ySECVZIh1PqIIgiBk0xgP30k8ThDxk1NrcMedr5pez3TEwZgF+uB/MLA==", + "version": "0.2.61", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.61.tgz", + "integrity": "sha512-9foek/IY5q6qHblYNvkdv6uz/85oyMQS7H43u2Q5Xx7zvI9NDboigKhCMECSggJMbXGv5jILBV5LAWoZXCUhFg==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index ea1c3771c..1287b15ac 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.56", + "ripple": "^0.2.61", "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.56" + "rollup-plugin-ripple": "^0.2.61" } } diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index 2bc1da4aa..f632d0075 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -1,216 +1,216 @@ import {RawResult} from './Common'; export const results: RawResult[]=[ -{"f":0,"b":[{"b":0,"v":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"b":1,"v":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"b":2,"v":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"b":3,"v":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"b":4,"v":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"b":5,"v":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"b":6,"v":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"b":7,"v":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"b":8,"v":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[16.7]}},{"b":11,"v":{"DEFAULT":[16.71]}},{"b":12,"v":{"DEFAULT":[1.52]}},{"b":13,"v":{"DEFAULT":[155.93]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[67.6]}}]}, -{"f":1,"b":[{"b":0,"v":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"b":1,"v":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"b":2,"v":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"b":3,"v":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"b":4,"v":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"b":5,"v":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"b":6,"v":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"b":7,"v":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"b":8,"v":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[6.55]}},{"b":11,"v":{"DEFAULT":[8.27]}},{"b":12,"v":{"DEFAULT":[4.88]}},{"b":13,"v":{"DEFAULT":[46.41]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[29.5]}}]}, -{"f":2,"b":[{"b":0,"v":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"b":1,"v":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"b":2,"v":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"b":3,"v":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"b":4,"v":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"b":5,"v":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"b":6,"v":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"b":7,"v":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"b":8,"v":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"b":9,"v":{"DEFAULT":[1.51]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.81]}},{"b":12,"v":{"DEFAULT":[2.11]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[149.6]}}]}, -{"f":3,"b":[{"b":0,"v":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"b":1,"v":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"b":2,"v":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"b":3,"v":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"b":4,"v":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"b":5,"v":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"b":6,"v":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"b":7,"v":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"b":8,"v":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.74]}},{"b":12,"v":{"DEFAULT":[1.71]}},{"b":13,"v":{"DEFAULT":[22.68]}},{"b":14,"v":{"DEFAULT":[109.2]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[122.6]}}]}, -{"f":4,"b":[{"b":0,"v":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"b":1,"v":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"b":2,"v":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"b":3,"v":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"b":4,"v":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"b":5,"v":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"b":6,"v":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"b":7,"v":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"b":8,"v":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.67]}},{"b":14,"v":{"DEFAULT":[109.3]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[120.8]}}]}, -{"f":5,"b":[{"b":0,"v":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"b":1,"v":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"b":2,"v":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"b":3,"v":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"b":4,"v":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"b":5,"v":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"b":6,"v":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"b":7,"v":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"b":8,"v":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.52]}},{"b":10,"v":{"DEFAULT":[4.83]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[2.12]}},{"b":13,"v":{"DEFAULT":[29.39]}},{"b":14,"v":{"DEFAULT":[144.2]}},{"b":15,"v":{"DEFAULT":[44.7]}},{"b":16,"v":{"DEFAULT":[151.3]}}]}, -{"f":6,"b":[{"b":0,"v":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"b":1,"v":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"b":2,"v":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"b":3,"v":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"b":4,"v":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"b":5,"v":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"b":6,"v":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"b":7,"v":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"b":8,"v":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.72]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[1.78]}},{"b":13,"v":{"DEFAULT":[22.9]}},{"b":14,"v":{"DEFAULT":[110.6]}},{"b":15,"v":{"DEFAULT":[33.7]}},{"b":16,"v":{"DEFAULT":[130.8]}}]}, -{"f":7,"b":[{"b":0,"v":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"b":1,"v":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"b":3,"v":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"b":4,"v":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"b":5,"v":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"b":6,"v":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"b":7,"v":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"b":8,"v":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"b":9,"v":{"DEFAULT":[1.56]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[30.71]}},{"b":14,"v":{"DEFAULT":[151.4]}},{"b":15,"v":{"DEFAULT":[46.3]}},{"b":16,"v":{"DEFAULT":[158.7]}}]}, -{"f":8,"b":[{"b":0,"v":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"b":1,"v":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"b":2,"v":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"b":3,"v":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"b":4,"v":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"b":5,"v":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"b":6,"v":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"b":7,"v":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"b":8,"v":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[8.43]}},{"b":13,"v":{"DEFAULT":[17.95]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, -{"f":9,"b":[{"b":0,"v":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"b":1,"v":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"b":2,"v":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"b":3,"v":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"b":4,"v":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"b":5,"v":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"b":6,"v":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"b":7,"v":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"b":8,"v":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[10.93]}},{"b":11,"v":{"DEFAULT":[11.03]}},{"b":12,"v":{"DEFAULT":[50.82]}},{"b":13,"v":{"DEFAULT":[103.81]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46]}}]}, -{"f":10,"b":[{"b":0,"v":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"b":1,"v":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"b":2,"v":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"b":3,"v":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"b":4,"v":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"b":5,"v":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"b":6,"v":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"b":7,"v":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"b":8,"v":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.81]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[43.5]}}]}, -{"f":11,"b":[{"b":0,"v":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"b":1,"v":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"b":2,"v":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"b":3,"v":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"b":4,"v":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"b":5,"v":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"b":6,"v":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"b":7,"v":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"b":8,"v":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"b":9,"v":{"DEFAULT":[1.97]}},{"b":10,"v":{"DEFAULT":[6.97]}},{"b":11,"v":{"DEFAULT":[6.97]}},{"b":12,"v":{"DEFAULT":[7.02]}},{"b":13,"v":{"DEFAULT":[47.96]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[215.7]}}]}, -{"f":12,"b":[{"b":0,"v":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"b":1,"v":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"b":2,"v":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"b":3,"v":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"b":4,"v":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"b":5,"v":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"b":6,"v":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"b":7,"v":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"b":8,"v":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"b":9,"v":{"DEFAULT":[41.06]}},{"b":10,"v":{"DEFAULT":[52.67]}},{"b":11,"v":{"DEFAULT":[52.88]}},{"b":12,"v":{"DEFAULT":[49.37]}},{"b":13,"v":{"DEFAULT":[134.16]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[76.6]}}]}, -{"f":13,"b":[{"b":0,"v":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"b":1,"v":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"b":2,"v":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"b":3,"v":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"b":4,"v":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"b":5,"v":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"b":6,"v":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"b":7,"v":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"b":8,"v":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"b":9,"v":{"DEFAULT":[51.83]}},{"b":10,"v":{"DEFAULT":[64.79]}},{"b":11,"v":{"DEFAULT":[64.85]}},{"b":12,"v":{"DEFAULT":[61.3]}},{"b":13,"v":{"DEFAULT":[136.82]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[67.2]}}]}, -{"f":14,"b":[{"b":0,"v":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"b":1,"v":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"b":2,"v":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"b":3,"v":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"b":4,"v":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"b":5,"v":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"b":6,"v":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"b":7,"v":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"b":8,"v":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.28]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":15,"b":[{"b":0,"v":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"b":1,"v":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"b":2,"v":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"b":3,"v":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"b":4,"v":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"b":5,"v":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"b":6,"v":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"b":7,"v":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"b":8,"v":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.83]}},{"b":12,"v":{"DEFAULT":[1.56]}},{"b":13,"v":{"DEFAULT":[28.02]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.2]}}]}, -{"f":16,"b":[{"b":0,"v":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"b":1,"v":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"b":2,"v":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"b":3,"v":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"b":4,"v":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"b":5,"v":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"b":6,"v":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"b":7,"v":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"b":8,"v":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.82]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.59]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, -{"f":17,"b":[{"b":0,"v":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"b":1,"v":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"b":2,"v":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"b":3,"v":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"b":4,"v":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"b":5,"v":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"b":6,"v":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"b":7,"v":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"b":8,"v":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[28.58]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[60.7]}}]}, -{"f":18,"b":[{"b":0,"v":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"b":1,"v":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"b":2,"v":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"b":3,"v":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"b":4,"v":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"b":5,"v":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"b":6,"v":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"b":7,"v":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"b":8,"v":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"b":9,"v":{"DEFAULT":[0.72]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[1.25]}},{"b":13,"v":{"DEFAULT":[36.28]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[67.8]}}]}, -{"f":19,"b":[{"b":0,"v":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"b":1,"v":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"b":2,"v":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"b":4,"v":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"b":5,"v":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"b":6,"v":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"b":7,"v":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"b":8,"v":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.85]}},{"b":11,"v":{"DEFAULT":[1.85]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.65]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[38.4]}}]}, -{"f":20,"b":[{"b":0,"v":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"b":1,"v":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"b":2,"v":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"b":3,"v":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"b":4,"v":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"b":5,"v":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"b":6,"v":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"b":7,"v":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"b":8,"v":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.71]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.81]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[39.8]}}]}, -{"f":21,"b":[{"b":0,"v":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"b":1,"v":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"b":2,"v":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"b":3,"v":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"b":4,"v":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"b":5,"v":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"b":6,"v":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"b":7,"v":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"b":8,"v":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[5.37]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[5.48]}},{"b":13,"v":{"DEFAULT":[37.69]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[346.6]}}]}, -{"f":22,"b":[{"b":0,"v":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"b":1,"v":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"b":2,"v":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"b":3,"v":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"b":4,"v":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"b":5,"v":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"b":6,"v":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"b":7,"v":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"b":8,"v":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.23]}},{"b":11,"v":{"DEFAULT":[2.21]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[15.95]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.1]}}]}, -{"f":23,"b":[{"b":0,"v":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"b":1,"v":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"b":2,"v":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"b":3,"v":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"b":4,"v":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"b":5,"v":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"b":6,"v":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"b":7,"v":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"b":8,"v":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[7.23]}},{"b":11,"v":{"DEFAULT":[7.31]}},{"b":12,"v":{"DEFAULT":[1.31]}},{"b":13,"v":{"DEFAULT":[63.36]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[68.8]}}]}, -{"f":24,"b":[{"b":0,"v":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"b":1,"v":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"b":2,"v":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"b":3,"v":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"b":4,"v":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"b":6,"v":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"b":7,"v":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"b":8,"v":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[2.67]}},{"b":13,"v":{"DEFAULT":[23.84]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[168.7]}}]}, -{"f":25,"b":[{"b":0,"v":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"b":1,"v":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"b":2,"v":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"b":3,"v":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"b":4,"v":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"b":6,"v":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"b":7,"v":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"b":8,"v":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[1.91]}},{"b":11,"v":{"DEFAULT":[1.95]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[13.06]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[44.6]}}]}, -{"f":26,"b":[{"b":0,"v":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"b":1,"v":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"b":2,"v":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"b":3,"v":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"b":4,"v":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"b":5,"v":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"b":6,"v":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"b":7,"v":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"b":8,"v":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[45.8]}}]}, -{"f":27,"b":[{"b":0,"v":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"b":1,"v":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"b":2,"v":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"b":3,"v":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"b":4,"v":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"b":5,"v":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"b":6,"v":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"b":7,"v":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"b":8,"v":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.04]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.5]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[3.7]}},{"b":16,"v":{"DEFAULT":[30.9]}}]}, -{"f":28,"b":[{"b":0,"v":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"b":1,"v":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"b":2,"v":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"b":3,"v":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"b":4,"v":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"b":5,"v":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"b":6,"v":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"b":7,"v":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"b":8,"v":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.67]}},{"b":11,"v":{"DEFAULT":[4.71]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[57.4]}}]}, -{"f":29,"b":[{"b":0,"v":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"b":1,"v":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"b":2,"v":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"b":3,"v":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"b":4,"v":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"b":5,"v":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"b":6,"v":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"b":7,"v":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"b":8,"v":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.16]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.1]}}]}, -{"f":30,"b":[{"b":0,"v":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"b":1,"v":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"b":2,"v":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"b":3,"v":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"b":4,"v":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"b":5,"v":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"b":6,"v":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"b":7,"v":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"b":8,"v":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[8.22]}},{"b":10,"v":{"DEFAULT":[14.16]}},{"b":11,"v":{"DEFAULT":[14.16]}},{"b":12,"v":{"DEFAULT":[9.13]}},{"b":13,"v":{"DEFAULT":[63.93]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[984.2]}}]}, -{"f":31,"b":[{"b":0,"v":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"b":1,"v":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"b":2,"v":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"b":3,"v":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"b":4,"v":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"b":5,"v":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"b":6,"v":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"b":7,"v":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"b":8,"v":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.43]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[27.95]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[36.5]}}]}, -{"f":32,"b":[{"b":0,"v":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"b":1,"v":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"b":2,"v":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"b":3,"v":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"b":4,"v":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"b":5,"v":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"b":6,"v":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"b":7,"v":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"b":8,"v":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[23.76]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[43.6]}}]}, -{"f":33,"b":[{"b":0,"v":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"b":1,"v":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"b":2,"v":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"b":3,"v":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"b":4,"v":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"b":5,"v":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"b":6,"v":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"b":7,"v":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"b":8,"v":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.56]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, -{"f":34,"b":[{"b":0,"v":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"b":1,"v":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"b":2,"v":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"b":3,"v":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"b":4,"v":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"b":5,"v":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"b":6,"v":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"b":7,"v":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"b":8,"v":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"b":9,"v":{"DEFAULT":[5.25]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.23]}},{"b":12,"v":{"DEFAULT":[6.26]}},{"b":13,"v":{"DEFAULT":[61.09]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[122.1]}}]}, -{"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"b":1,"v":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"b":2,"v":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"b":3,"v":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"b":4,"v":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"b":5,"v":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"b":7,"v":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"b":8,"v":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[4.18]}},{"b":11,"v":{"DEFAULT":[4.21]}},{"b":12,"v":{"DEFAULT":[1.06]}},{"b":13,"v":{"DEFAULT":[34.04]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[37.3]}}]}, -{"f":36,"b":[{"b":0,"v":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"b":1,"v":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"b":2,"v":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"b":3,"v":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"b":4,"v":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"b":5,"v":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"b":6,"v":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"b":7,"v":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"b":8,"v":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[30.97]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[75.5]}}]}, -{"f":37,"b":[{"b":0,"v":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"b":1,"v":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"b":2,"v":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"b":3,"v":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"b":4,"v":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"b":5,"v":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"b":6,"v":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"b":7,"v":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"b":8,"v":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.28]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[261.9]}}]}, -{"f":38,"b":[{"b":0,"v":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"b":1,"v":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"b":2,"v":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"b":3,"v":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"b":4,"v":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"b":5,"v":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"b":6,"v":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"b":7,"v":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"b":8,"v":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[26.76]}},{"b":14,"v":{"DEFAULT":[8.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, -{"f":39,"b":[{"b":0,"v":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"b":1,"v":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"b":2,"v":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"b":3,"v":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"b":4,"v":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"b":5,"v":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"b":6,"v":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"b":7,"v":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"b":8,"v":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[35.34]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, -{"f":40,"b":[{"b":0,"v":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"b":1,"v":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"b":2,"v":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"b":3,"v":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"b":4,"v":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"b":5,"v":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"b":6,"v":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"b":7,"v":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"b":8,"v":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.05]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.12]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[46.7]}}]}, -{"f":41,"b":[{"b":0,"v":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"b":1,"v":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"b":2,"v":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"b":3,"v":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"b":4,"v":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"b":5,"v":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"b":6,"v":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"b":7,"v":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"b":8,"v":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.07]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[23.88]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[48.9]}}]}, -{"f":42,"b":[{"b":0,"v":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"b":1,"v":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"b":2,"v":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"b":3,"v":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"b":4,"v":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"b":5,"v":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"b":6,"v":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"b":7,"v":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"b":8,"v":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[27.01]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[78.9]}}]}, -{"f":43,"b":[{"b":0,"v":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"b":1,"v":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"b":2,"v":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"b":3,"v":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"b":4,"v":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"b":5,"v":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"b":6,"v":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"b":7,"v":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"b":8,"v":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.3]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":44,"b":[{"b":0,"v":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"b":1,"v":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"b":2,"v":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"b":3,"v":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"b":4,"v":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"b":5,"v":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"b":6,"v":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"b":7,"v":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"b":8,"v":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[62.3]}}]}, -{"f":45,"b":[{"b":0,"v":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"b":1,"v":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"b":2,"v":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"b":3,"v":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"b":5,"v":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"b":6,"v":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"b":7,"v":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"b":8,"v":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.29]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[41.4]}}]}, -{"f":46,"b":[{"b":0,"v":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"b":1,"v":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"b":2,"v":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"b":3,"v":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"b":4,"v":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"b":5,"v":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"b":6,"v":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"b":7,"v":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"b":8,"v":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, -{"f":47,"b":[{"b":0,"v":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"b":1,"v":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"b":2,"v":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"b":3,"v":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"b":4,"v":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"b":5,"v":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"b":6,"v":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"b":7,"v":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"b":8,"v":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[12.64]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[75.28]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[80.6]}}]}, -{"f":48,"b":[{"b":0,"v":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"b":1,"v":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"b":2,"v":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"b":3,"v":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"b":4,"v":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"b":5,"v":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"b":6,"v":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"b":7,"v":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"b":8,"v":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[87.4]}}]}, -{"f":49,"b":[{"b":0,"v":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"b":1,"v":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"b":2,"v":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"b":3,"v":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"b":4,"v":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"b":5,"v":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"b":6,"v":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"b":7,"v":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"b":8,"v":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.22]}},{"b":11,"v":{"DEFAULT":[15.33]}},{"b":12,"v":{"DEFAULT":[4.09]}},{"b":13,"v":{"DEFAULT":[114.92]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[629.5]}}]}, -{"f":50,"b":[{"b":0,"v":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"b":1,"v":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"b":2,"v":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"b":3,"v":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"b":4,"v":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"b":5,"v":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"b":6,"v":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"b":7,"v":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"b":8,"v":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.34]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.66]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[172.1]}}]}, -{"f":51,"b":[{"b":0,"v":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"b":1,"v":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"b":2,"v":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"b":3,"v":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"b":4,"v":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"b":5,"v":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"b":6,"v":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"b":7,"v":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"b":8,"v":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[5.51]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.55]}},{"b":13,"v":{"DEFAULT":[37.22]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[222.1]}}]}, -{"f":52,"b":[{"b":0,"v":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"b":1,"v":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"b":2,"v":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"b":3,"v":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"b":4,"v":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"b":5,"v":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"b":6,"v":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"b":7,"v":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"b":8,"v":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.86]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[21.08]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, -{"f":53,"b":[{"b":0,"v":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"b":1,"v":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"b":2,"v":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"b":3,"v":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"b":4,"v":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"b":5,"v":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"b":6,"v":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"b":7,"v":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"b":8,"v":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.67]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.04]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[38.7]}}]}, -{"f":54,"b":[{"b":0,"v":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"b":1,"v":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"b":2,"v":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"b":3,"v":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"b":4,"v":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"b":5,"v":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"b":6,"v":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"b":7,"v":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"b":8,"v":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[33.92]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[43.3]}}]}, -{"f":55,"b":[{"b":0,"v":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"b":1,"v":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"b":2,"v":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"b":3,"v":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"b":4,"v":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"b":5,"v":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"b":6,"v":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"b":7,"v":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"b":8,"v":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.36]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[1.37]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[77.8]}}]}, -{"f":56,"b":[{"b":0,"v":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"b":1,"v":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"b":3,"v":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"b":4,"v":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"b":5,"v":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"b":6,"v":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"b":7,"v":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"b":8,"v":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.47]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[19.02]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[37.4]}}]}, -{"f":57,"b":[{"b":0,"v":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"b":1,"v":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"b":2,"v":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"b":3,"v":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"b":4,"v":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"b":5,"v":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"b":6,"v":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"b":7,"v":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"b":8,"v":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[1.03]}},{"b":13,"v":{"DEFAULT":[17.5]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[79.9]}}]}, -{"f":58,"b":[{"b":0,"v":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"b":1,"v":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"b":2,"v":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"b":3,"v":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"b":4,"v":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"b":5,"v":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"b":6,"v":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"b":7,"v":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"b":8,"v":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.15]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.64]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[95.2]}}]}, -{"f":59,"b":[{"b":0,"v":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"b":1,"v":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"b":2,"v":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"b":3,"v":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"b":4,"v":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"b":5,"v":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"b":6,"v":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"b":7,"v":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"b":8,"v":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.36]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[53.9]}}]}, -{"f":60,"b":[{"b":0,"v":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"b":1,"v":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"b":2,"v":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"b":3,"v":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"b":4,"v":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"b":5,"v":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"b":6,"v":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"b":8,"v":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.43]}},{"b":11,"v":{"DEFAULT":[2.46]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, -{"f":61,"b":[{"b":0,"v":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"b":1,"v":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"b":2,"v":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"b":3,"v":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"b":4,"v":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"b":5,"v":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"b":6,"v":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"b":7,"v":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"b":8,"v":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[37.5]}}]}, -{"f":62,"b":[{"b":0,"v":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"b":1,"v":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"b":2,"v":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"b":3,"v":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"b":4,"v":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"b":6,"v":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"b":7,"v":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"b":8,"v":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.34]}},{"b":11,"v":{"DEFAULT":[2.35]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.11]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":63,"b":[{"b":0,"v":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"b":1,"v":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"b":2,"v":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"b":3,"v":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"b":4,"v":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"b":5,"v":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"b":6,"v":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"b":7,"v":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"b":8,"v":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.1]}},{"b":11,"v":{"DEFAULT":[8.53]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[480.3]}}]}, -{"f":64,"b":[{"b":0,"v":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"b":1,"v":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"b":2,"v":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"b":3,"v":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"b":4,"v":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"b":5,"v":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"b":6,"v":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"b":7,"v":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"b":8,"v":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, -{"f":65,"b":[{"b":0,"v":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"b":1,"v":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"b":2,"v":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"b":3,"v":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"b":4,"v":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"b":5,"v":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"b":6,"v":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"b":7,"v":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"b":8,"v":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.42]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[64.7]}}]}, -{"f":66,"b":[{"b":0,"v":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"b":1,"v":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"b":2,"v":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"b":3,"v":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"b":4,"v":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"b":5,"v":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"b":6,"v":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"b":7,"v":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"b":8,"v":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[74.2]}}]}, -{"f":67,"b":[{"b":0,"v":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"b":1,"v":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"b":2,"v":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"b":3,"v":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"b":4,"v":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"b":5,"v":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"b":6,"v":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"b":7,"v":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"b":8,"v":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"b":9,"v":{"DEFAULT":[2.85]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[290.1]}}]}, -{"f":68,"b":[{"b":0,"v":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"b":1,"v":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"b":2,"v":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"b":3,"v":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"b":4,"v":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"b":5,"v":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"b":6,"v":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"b":7,"v":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"b":8,"v":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[4.01]}},{"b":11,"v":{"DEFAULT":[4.03]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.84]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.7]}}]}, -{"f":69,"b":[{"b":0,"v":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"b":1,"v":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"b":2,"v":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"b":3,"v":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"b":4,"v":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"b":5,"v":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"b":6,"v":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"b":7,"v":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"b":8,"v":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[57.1]}}]}, -{"f":70,"b":[{"b":0,"v":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"b":1,"v":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"b":2,"v":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"b":3,"v":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"b":4,"v":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"b":5,"v":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"b":6,"v":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"b":7,"v":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"b":8,"v":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"b":9,"v":{"DEFAULT":[3.38]}},{"b":10,"v":{"DEFAULT":[4.91]}},{"b":11,"v":{"DEFAULT":[5.01]}},{"b":12,"v":{"DEFAULT":[3.66]}},{"b":13,"v":{"DEFAULT":[16.28]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[107.8]}}]}, -{"f":71,"b":[{"b":0,"v":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"b":1,"v":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"b":3,"v":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"b":4,"v":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"b":5,"v":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"b":6,"v":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"b":7,"v":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"b":8,"v":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.33]}},{"b":13,"v":{"DEFAULT":[23.83]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, -{"f":72,"b":[{"b":0,"v":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"b":1,"v":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"b":2,"v":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"b":3,"v":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"b":4,"v":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"b":5,"v":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"b":6,"v":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"b":7,"v":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"b":8,"v":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[45.5]}}]}, -{"f":73,"b":[{"b":0,"v":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"b":1,"v":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"b":2,"v":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"b":3,"v":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"b":4,"v":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"b":5,"v":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"b":6,"v":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"b":7,"v":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"b":8,"v":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[19.06]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":74,"b":[{"b":0,"v":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"b":1,"v":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"b":2,"v":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"b":3,"v":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"b":4,"v":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"b":5,"v":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"b":6,"v":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"b":7,"v":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.67]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.29]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":75,"b":[{"b":0,"v":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"b":1,"v":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"b":2,"v":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"b":3,"v":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"b":4,"v":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"b":5,"v":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"b":6,"v":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"b":7,"v":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"b":8,"v":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[40.4]}}]}, -{"f":76,"b":[{"b":0,"v":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"b":1,"v":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"b":2,"v":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"b":3,"v":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"b":4,"v":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"b":5,"v":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"b":6,"v":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"b":7,"v":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"b":8,"v":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[49.15]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[61.2]}}]}, -{"f":77,"b":[{"b":0,"v":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"b":1,"v":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"b":2,"v":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"b":3,"v":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"b":4,"v":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"b":5,"v":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"b":6,"v":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"b":7,"v":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"b":8,"v":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.18]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, -{"f":78,"b":[{"b":0,"v":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"b":1,"v":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"b":3,"v":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"b":4,"v":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"b":5,"v":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"b":6,"v":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"b":7,"v":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"b":8,"v":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.17]}},{"b":12,"v":{"DEFAULT":[4.85]}},{"b":13,"v":{"DEFAULT":[39.5]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[97]}}]}, -{"f":79,"b":[{"b":0,"v":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"b":1,"v":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"b":2,"v":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"b":3,"v":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"b":4,"v":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"b":5,"v":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"b":6,"v":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"b":7,"v":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"b":8,"v":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.98]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.92]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, -{"f":80,"b":[{"b":0,"v":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"b":1,"v":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"b":2,"v":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"b":3,"v":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"b":4,"v":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"b":5,"v":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"b":6,"v":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"b":7,"v":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"b":8,"v":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.72]}},{"b":11,"v":{"DEFAULT":[8.78]}},{"b":12,"v":{"DEFAULT":[2.14]}},{"b":13,"v":{"DEFAULT":[73.16]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[236.1]}}]}, -{"f":81,"b":[{"b":0,"v":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"b":1,"v":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"b":2,"v":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"b":3,"v":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"b":4,"v":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"b":5,"v":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"b":6,"v":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"b":7,"v":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"b":8,"v":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.35]}},{"b":12,"v":{"DEFAULT":[3.25]}},{"b":13,"v":{"DEFAULT":[53.14]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[366.6]}}]}, -{"f":82,"b":[{"b":0,"v":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"b":1,"v":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"b":2,"v":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"b":3,"v":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"b":4,"v":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"b":5,"v":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"b":6,"v":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"b":7,"v":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"b":8,"v":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[4.59]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.46]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.3]}}]}, -{"f":83,"b":[{"b":0,"v":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"b":1,"v":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"b":2,"v":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"b":3,"v":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"b":4,"v":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"b":5,"v":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"b":6,"v":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"b":7,"v":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"b":8,"v":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.96]}},{"b":13,"v":{"DEFAULT":[33.36]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[206.4]}}]}, -{"f":84,"b":[{"b":0,"v":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"b":1,"v":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"b":2,"v":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"b":3,"v":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"b":4,"v":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"b":5,"v":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"b":6,"v":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"b":7,"v":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"b":8,"v":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[31.62]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.6]}}]}, -{"f":85,"b":[{"b":0,"v":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"b":1,"v":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"b":2,"v":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"b":3,"v":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"b":4,"v":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"b":5,"v":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"b":6,"v":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"b":7,"v":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"b":8,"v":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.55]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.69]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, -{"f":86,"b":[{"b":0,"v":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"b":1,"v":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"b":2,"v":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"b":3,"v":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"b":4,"v":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"b":5,"v":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"b":6,"v":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"b":7,"v":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"b":8,"v":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"b":9,"v":{"DEFAULT":[1.11]}},{"b":10,"v":{"DEFAULT":[5.78]}},{"b":11,"v":{"DEFAULT":[6.22]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[43.49]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, -{"f":87,"b":[{"b":0,"v":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"b":1,"v":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"b":2,"v":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"b":3,"v":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"b":4,"v":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"b":5,"v":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"b":6,"v":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"b":7,"v":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"b":8,"v":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.22]}},{"b":11,"v":{"DEFAULT":[7.78]}},{"b":12,"v":{"DEFAULT":[2.79]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[213.8]}}]}, -{"f":88,"b":[{"b":0,"v":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"b":1,"v":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"b":2,"v":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"b":3,"v":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"b":4,"v":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"b":5,"v":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"b":6,"v":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"b":7,"v":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"b":8,"v":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.27]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.6]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[263.2]}}]}, -{"f":89,"b":[{"b":0,"v":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"b":1,"v":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"b":2,"v":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"b":3,"v":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"b":4,"v":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"b":5,"v":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"b":6,"v":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"b":7,"v":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"b":8,"v":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.14]}},{"b":11,"v":{"DEFAULT":[6.69]}},{"b":12,"v":{"DEFAULT":[2.54]}},{"b":13,"v":{"DEFAULT":[32.52]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[339.2]}}]}, -{"f":90,"b":[{"b":0,"v":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"b":1,"v":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"b":2,"v":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"b":3,"v":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"b":4,"v":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"b":5,"v":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"b":6,"v":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"b":7,"v":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"b":8,"v":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.66]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[70.6]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[213.5]}}]}, -{"f":91,"b":[{"b":0,"v":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"b":1,"v":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"b":2,"v":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"b":3,"v":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"b":4,"v":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"b":5,"v":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"b":6,"v":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"b":7,"v":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"b":8,"v":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.49]}},{"b":12,"v":{"DEFAULT":[1.99]}},{"b":13,"v":{"DEFAULT":[45.39]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[198.3]}}]}, -{"f":92,"b":[{"b":0,"v":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"b":1,"v":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"b":2,"v":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"b":3,"v":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"b":4,"v":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"b":5,"v":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"b":6,"v":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"b":7,"v":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"b":8,"v":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.92]}},{"b":12,"v":{"DEFAULT":[2.43]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[277.3]}}]}, -{"f":93,"b":[{"b":0,"v":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"b":1,"v":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"b":2,"v":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"b":3,"v":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"b":4,"v":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"b":5,"v":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"b":6,"v":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"b":7,"v":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"b":8,"v":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[8.63]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.24]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[225.4]}}]}, -{"f":94,"b":[{"b":0,"v":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"b":1,"v":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"b":2,"v":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"b":3,"v":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"b":4,"v":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"b":5,"v":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"b":6,"v":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"b":7,"v":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"b":8,"v":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.47]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[30.45]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219]}}]}, -{"f":95,"b":[{"b":0,"v":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"b":1,"v":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"b":2,"v":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"b":3,"v":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"b":4,"v":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"b":5,"v":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"b":6,"v":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"b":7,"v":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"b":8,"v":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[37.15]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[201.9]}}]}, -{"f":96,"b":[{"b":0,"v":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"b":1,"v":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"b":2,"v":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"b":3,"v":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"b":4,"v":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"b":5,"v":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"b":6,"v":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"b":7,"v":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"b":8,"v":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[1.27]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.46]}},{"b":12,"v":{"DEFAULT":[2.49]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[209.5]}}]}, -{"f":97,"b":[{"b":0,"v":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"b":1,"v":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"b":2,"v":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"b":3,"v":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"b":4,"v":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"b":5,"v":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"b":6,"v":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"b":7,"v":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"b":8,"v":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[6.17]}},{"b":11,"v":{"DEFAULT":[6.77]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[48.02]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[205]}}]}, -{"f":98,"b":[{"b":0,"v":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"b":1,"v":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"b":3,"v":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"b":4,"v":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"b":5,"v":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"b":6,"v":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"b":7,"v":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"b":8,"v":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.46]}},{"b":10,"v":{"DEFAULT":[6.3]}},{"b":11,"v":{"DEFAULT":[7.02]}},{"b":12,"v":{"DEFAULT":[2.94]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[288.7]}}]}, -{"f":99,"b":[{"b":0,"v":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"b":1,"v":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"b":2,"v":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"b":3,"v":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"b":4,"v":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"b":5,"v":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"b":6,"v":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"b":7,"v":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"b":8,"v":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.57]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.16]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, -{"f":100,"b":[{"b":0,"v":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"b":1,"v":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"b":2,"v":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"b":3,"v":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"b":4,"v":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"b":5,"v":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"b":6,"v":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"b":7,"v":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"b":8,"v":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.52]}},{"b":11,"v":{"DEFAULT":[3.63]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[29.01]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[34.8]}}]}, -{"f":101,"b":[{"b":0,"v":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"b":1,"v":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"b":2,"v":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"b":3,"v":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"b":4,"v":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"b":5,"v":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"b":6,"v":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"b":7,"v":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"b":8,"v":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, -{"f":102,"b":[{"b":0,"v":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"b":1,"v":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"b":2,"v":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"b":3,"v":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"b":4,"v":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"b":5,"v":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"b":6,"v":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"b":7,"v":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"b":8,"v":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[51.1]}}]}, -{"f":103,"b":[{"b":0,"v":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"b":1,"v":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"b":2,"v":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"b":3,"v":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"b":4,"v":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"b":5,"v":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"b":6,"v":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"b":7,"v":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[19.03]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[44.3]}}]}, -{"f":104,"b":[{"b":0,"v":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"b":1,"v":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"b":2,"v":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"b":3,"v":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"b":4,"v":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"b":5,"v":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"b":6,"v":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"b":7,"v":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"b":8,"v":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[31.41]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, -{"f":105,"b":[{"b":0,"v":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"b":1,"v":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"b":2,"v":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"b":3,"v":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"b":4,"v":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"b":5,"v":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"b":6,"v":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"b":7,"v":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"b":8,"v":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.38]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.09]}},{"b":13,"v":{"DEFAULT":[25.84]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[88.4]}}]}, -{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"b":1,"v":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"b":2,"v":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"b":3,"v":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"b":4,"v":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"b":5,"v":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"b":6,"v":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"b":7,"v":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"b":8,"v":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[1.14]}},{"b":13,"v":{"DEFAULT":[39.63]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93]}}]}, -{"f":107,"b":[{"b":0,"v":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"b":1,"v":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"b":2,"v":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"b":3,"v":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"b":4,"v":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"b":5,"v":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"b":6,"v":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"b":7,"v":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"b":8,"v":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"b":9,"v":{"DEFAULT":[0.98]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[98.2]}}]}, -{"f":108,"b":[{"b":0,"v":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"b":1,"v":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"b":2,"v":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"b":3,"v":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"b":4,"v":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"b":5,"v":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"b":6,"v":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"b":7,"v":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"b":8,"v":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.51]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.35]}},{"b":13,"v":{"DEFAULT":[68.56]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[383]}}]}, -{"f":109,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"b":1,"v":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"b":2,"v":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"b":3,"v":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"b":4,"v":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"b":5,"v":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"b":6,"v":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"b":7,"v":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"b":8,"v":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.82]}},{"b":12,"v":{"DEFAULT":[2.53]}},{"b":13,"v":{"DEFAULT":[22.33]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, -{"f":110,"b":[{"b":0,"v":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"b":1,"v":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"b":2,"v":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"b":3,"v":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"b":4,"v":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"b":5,"v":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"b":6,"v":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"b":7,"v":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"b":8,"v":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.75]}},{"b":11,"v":{"DEFAULT":[2.76]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.46]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":111,"b":[{"b":0,"v":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"b":1,"v":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"b":2,"v":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"b":3,"v":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"b":4,"v":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"b":5,"v":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"b":6,"v":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"b":7,"v":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"b":8,"v":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.52]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.98]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, -{"f":112,"b":[{"b":0,"v":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"b":2,"v":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"b":3,"v":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"b":4,"v":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"b":5,"v":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"b":6,"v":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"b":7,"v":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"b":8,"v":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[39.6]}}]}, -{"f":113,"b":[{"b":0,"v":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"b":1,"v":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"b":2,"v":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"b":3,"v":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"b":4,"v":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"b":6,"v":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"b":7,"v":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"b":8,"v":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":114,"b":[{"b":0,"v":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"b":1,"v":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"b":2,"v":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"b":3,"v":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"b":4,"v":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"b":5,"v":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"b":6,"v":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"b":7,"v":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"b":8,"v":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[1.83]}},{"b":11,"v":{"DEFAULT":[1.84]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[12.63]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, -{"f":115,"b":[{"b":0,"v":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"b":1,"v":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"b":2,"v":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"b":3,"v":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"b":4,"v":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"b":5,"v":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"b":6,"v":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"b":7,"v":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.96]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129]}}]}, -{"f":116,"b":[{"b":0,"v":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"b":1,"v":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"b":2,"v":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"b":3,"v":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"b":5,"v":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"b":6,"v":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"b":7,"v":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"b":8,"v":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.58]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[3.08]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[112.1]}}]}, -{"f":117,"b":[{"b":0,"v":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"b":1,"v":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"b":2,"v":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"b":3,"v":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"b":4,"v":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"b":6,"v":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"b":7,"v":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"b":8,"v":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.76]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":118,"b":[{"b":0,"v":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"b":1,"v":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"b":2,"v":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"b":3,"v":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"b":4,"v":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"b":5,"v":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"b":6,"v":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"b":7,"v":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"b":8,"v":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.34]}},{"b":13,"v":{"DEFAULT":[16.49]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[62.2]}}]}, -{"f":119,"b":[{"b":0,"v":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"b":1,"v":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"b":3,"v":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"b":4,"v":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"b":5,"v":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"b":6,"v":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"b":7,"v":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"b":8,"v":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.64]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[29.53]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, -{"f":120,"b":[{"b":0,"v":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"b":1,"v":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"b":2,"v":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"b":3,"v":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"b":4,"v":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"b":5,"v":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"b":6,"v":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"b":7,"v":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"b":8,"v":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.35]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, -{"f":121,"b":[{"b":0,"v":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"b":1,"v":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"b":2,"v":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"b":3,"v":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"b":4,"v":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"b":5,"v":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"b":6,"v":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"b":7,"v":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"b":8,"v":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.5]}}]}, -{"f":122,"b":[{"b":0,"v":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"b":1,"v":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"b":2,"v":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"b":3,"v":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"b":4,"v":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"b":5,"v":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"b":6,"v":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"b":7,"v":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"b":8,"v":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[4.87]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.59]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[203]}}]}, -{"f":123,"b":[{"b":0,"v":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"b":1,"v":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"b":2,"v":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"b":3,"v":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"b":4,"v":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"b":5,"v":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"b":6,"v":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"b":7,"v":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"b":8,"v":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[17.54]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[175.8]}}]}, -{"f":124,"b":[{"b":0,"v":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"b":1,"v":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"b":2,"v":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"b":3,"v":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"b":5,"v":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"b":6,"v":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"b":7,"v":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"b":8,"v":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.19]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":125,"b":[{"b":0,"v":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"b":1,"v":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"b":2,"v":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"b":3,"v":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"b":4,"v":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"b":5,"v":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"b":6,"v":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"b":7,"v":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"b":8,"v":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.79]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, -{"f":126,"b":[{"b":0,"v":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"b":1,"v":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"b":2,"v":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"b":3,"v":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"b":4,"v":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"b":5,"v":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"b":6,"v":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"b":7,"v":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"b":8,"v":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[21.66]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[62.4]}}]}, -{"f":127,"b":[{"b":0,"v":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"b":2,"v":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"b":3,"v":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"b":4,"v":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"b":5,"v":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"b":6,"v":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"b":7,"v":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"b":8,"v":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.16]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[44.5]}}]}, -{"f":128,"b":[{"b":0,"v":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"b":1,"v":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"b":2,"v":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"b":3,"v":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"b":4,"v":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"b":5,"v":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"b":6,"v":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"b":7,"v":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"b":8,"v":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.18]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.76]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, -{"f":129,"b":[{"b":0,"v":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"b":1,"v":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"b":2,"v":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"b":3,"v":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"b":4,"v":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"b":5,"v":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"b":6,"v":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"b":7,"v":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"b":8,"v":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.07]}},{"b":11,"v":{"DEFAULT":[6.74]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.86]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[164.4]}}]}, -{"f":130,"b":[{"b":0,"v":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"b":1,"v":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"b":3,"v":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"b":4,"v":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"b":5,"v":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"b":6,"v":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"b":7,"v":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"b":8,"v":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.97]}},{"b":11,"v":{"DEFAULT":[1.93]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, -{"f":131,"b":[{"b":0,"v":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"b":1,"v":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"b":2,"v":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"b":3,"v":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"b":4,"v":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"b":5,"v":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"b":6,"v":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"b":7,"v":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"b":8,"v":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.48]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.57]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":132,"b":[{"b":0,"v":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"b":1,"v":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"b":2,"v":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"b":3,"v":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"b":4,"v":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"b":5,"v":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"b":6,"v":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"b":7,"v":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"b":8,"v":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[1.74]}},{"b":11,"v":{"DEFAULT":[1.76]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, -{"f":133,"b":[{"b":0,"v":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"b":1,"v":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"b":2,"v":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"b":3,"v":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"b":4,"v":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"b":5,"v":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"b":6,"v":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"b":7,"v":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.36]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, -{"f":134,"b":[{"b":0,"v":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"b":1,"v":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"b":2,"v":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"b":3,"v":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"b":4,"v":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"b":5,"v":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"b":6,"v":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"b":7,"v":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"b":8,"v":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.08]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[36.7]}}]}, -{"f":135,"b":[{"b":0,"v":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"b":1,"v":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"b":2,"v":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"b":3,"v":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"b":4,"v":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"b":5,"v":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"b":6,"v":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"b":7,"v":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"b":8,"v":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.41]}},{"b":11,"v":{"DEFAULT":[2.42]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.46]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, -{"f":136,"b":[{"b":0,"v":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"b":1,"v":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"b":2,"v":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"b":3,"v":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"b":4,"v":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"b":5,"v":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"b":6,"v":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"b":7,"v":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"b":8,"v":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.43]}},{"b":12,"v":{"DEFAULT":[0.93]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[70.5]}}]}, -{"f":137,"b":[{"b":0,"v":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"b":1,"v":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"b":2,"v":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"b":3,"v":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"b":4,"v":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"b":5,"v":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"b":6,"v":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"b":7,"v":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"b":8,"v":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.86]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[28.65]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[86.6]}}]}, -{"f":138,"b":[{"b":0,"v":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"b":1,"v":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"b":2,"v":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"b":3,"v":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"b":4,"v":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"b":5,"v":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"b":6,"v":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"b":7,"v":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"b":8,"v":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.29]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, -{"f":139,"b":[{"b":0,"v":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"b":1,"v":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"b":2,"v":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"b":3,"v":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"b":4,"v":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"b":5,"v":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"b":6,"v":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"b":7,"v":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"b":8,"v":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.13]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[22.26]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[67.3]}}]}, -{"f":140,"b":[{"b":0,"v":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"b":1,"v":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"b":2,"v":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"b":3,"v":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"b":4,"v":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"b":5,"v":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"b":6,"v":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"b":7,"v":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"b":8,"v":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.21]}},{"b":11,"v":{"DEFAULT":[4.31]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[31.72]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[89.6]}}]}, -{"f":141,"b":[{"b":0,"v":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"b":1,"v":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"b":2,"v":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"b":3,"v":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"b":4,"v":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"b":5,"v":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"b":6,"v":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"b":7,"v":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"b":8,"v":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.04]}},{"b":11,"v":{"DEFAULT":[3.05]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[21.61]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[71.8]}}]}, -{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"b":1,"v":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"b":2,"v":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"b":3,"v":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"b":4,"v":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"b":5,"v":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"b":6,"v":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"b":7,"v":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"b":8,"v":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.16]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.33]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, -{"f":143,"b":[{"b":0,"v":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"b":2,"v":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"b":3,"v":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"b":4,"v":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"b":5,"v":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"b":6,"v":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"b":7,"v":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"b":8,"v":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.93]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, -{"f":144,"b":[{"b":0,"v":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"b":1,"v":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"b":2,"v":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"b":3,"v":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"b":4,"v":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"b":5,"v":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"b":6,"v":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"b":7,"v":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"b":8,"v":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.79]}},{"b":10,"v":{"DEFAULT":[6.45]}},{"b":11,"v":{"DEFAULT":[6.52]}},{"b":12,"v":{"DEFAULT":[4.93]}},{"b":13,"v":{"DEFAULT":[47.07]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[254.1]}}]}, -{"f":145,"b":[{"b":0,"v":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"b":1,"v":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"b":2,"v":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"b":3,"v":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"b":4,"v":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"b":5,"v":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"b":6,"v":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"b":7,"v":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"b":8,"v":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[6.57]}},{"b":11,"v":{"DEFAULT":[6.82]}},{"b":12,"v":{"DEFAULT":[5.12]}},{"b":13,"v":{"DEFAULT":[48.29]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[263]}}]}, -{"f":146,"b":[{"b":0,"v":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"b":1,"v":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"b":2,"v":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"b":3,"v":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"b":4,"v":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"b":5,"v":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"b":6,"v":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"b":7,"v":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"b":8,"v":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[30.7]}}]}, -{"f":147,"b":[{"b":0,"v":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"b":1,"v":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"b":2,"v":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"b":3,"v":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"b":4,"v":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"b":5,"v":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"b":6,"v":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"b":7,"v":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"b":8,"v":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.31]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.47]}},{"b":13,"v":{"DEFAULT":[25.88]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, -{"f":148,"b":[{"b":0,"v":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"b":1,"v":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"b":2,"v":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"b":3,"v":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"b":4,"v":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"b":5,"v":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"b":6,"v":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"b":7,"v":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"b":8,"v":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[5.38]}},{"b":11,"v":{"DEFAULT":[5.41]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[46.22]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, -{"f":149,"b":[{"b":0,"v":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"b":1,"v":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"b":2,"v":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"b":3,"v":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"b":4,"v":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"b":5,"v":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"b":6,"v":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"b":7,"v":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[17.91]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, -{"f":150,"b":[{"b":0,"v":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"b":1,"v":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"b":2,"v":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"b":3,"v":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"b":4,"v":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"b":5,"v":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"b":6,"v":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"b":7,"v":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"b":8,"v":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[9.84]}},{"b":11,"v":{"DEFAULT":[15.59]}},{"b":12,"v":{"DEFAULT":[44.78]}},{"b":13,"v":{"DEFAULT":[89.78]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, -{"f":151,"b":[{"b":0,"v":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"b":1,"v":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"b":2,"v":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"b":3,"v":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"b":4,"v":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"b":5,"v":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"b":6,"v":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"b":7,"v":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"b":8,"v":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.78]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":152,"b":[{"b":0,"v":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"b":1,"v":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"b":2,"v":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"b":3,"v":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"b":4,"v":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"b":5,"v":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"b":6,"v":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"b":7,"v":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"b":8,"v":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[2.33]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.42]}},{"b":12,"v":{"DEFAULT":[2.73]}},{"b":13,"v":{"DEFAULT":[40.57]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[286.8]}}]}, -{"f":153,"b":[{"b":0,"v":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"b":1,"v":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"b":2,"v":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"b":3,"v":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"b":4,"v":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"b":5,"v":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"b":6,"v":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"b":7,"v":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.95]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, -{"f":154,"b":[{"b":0,"v":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"b":1,"v":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"b":2,"v":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"b":3,"v":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"b":4,"v":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"b":5,"v":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"b":6,"v":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"b":7,"v":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"b":8,"v":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.86]}},{"b":11,"v":{"DEFAULT":[9.93]}},{"b":12,"v":{"DEFAULT":[2.45]}},{"b":13,"v":{"DEFAULT":[75.72]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[281.6]}}]}, -{"f":155,"b":[{"b":0,"v":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"b":1,"v":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"b":2,"v":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"b":3,"v":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"b":4,"v":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"b":5,"v":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"b":6,"v":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"b":7,"v":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"b":8,"v":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.98]}},{"b":13,"v":{"DEFAULT":[21.36]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[405.5]}}]}, -{"f":156,"b":[{"b":0,"v":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"b":1,"v":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"b":2,"v":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"b":3,"v":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"b":4,"v":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"b":5,"v":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"b":6,"v":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"b":7,"v":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"b":8,"v":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.42]}},{"b":11,"v":{"DEFAULT":[3.44]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[25.65]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[87.8]}}]}, -{"f":157,"b":[{"b":0,"v":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"b":1,"v":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"b":2,"v":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"b":3,"v":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"b":4,"v":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"b":5,"v":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"b":6,"v":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"b":7,"v":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"b":8,"v":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[16.36]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]}, -{"f":158,"b":[{"b":0,"v":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"b":1,"v":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"b":2,"v":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"b":3,"v":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"b":4,"v":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"b":5,"v":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"b":6,"v":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"b":7,"v":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"b":8,"v":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.92]}},{"b":10,"v":{"DEFAULT":[29.28]}},{"b":11,"v":{"DEFAULT":[29.73]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[615.46]}},{"b":14,"v":{"DEFAULT":[95.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[104.7]}}]}, -{"f":159,"b":[{"b":0,"v":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"b":1,"v":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"b":2,"v":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"b":3,"v":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"b":4,"v":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"b":5,"v":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"b":6,"v":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"b":7,"v":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"b":8,"v":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, -{"f":160,"b":[{"b":0,"v":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"b":1,"v":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"b":2,"v":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"b":3,"v":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"b":4,"v":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"b":5,"v":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"b":6,"v":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"b":7,"v":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"b":8,"v":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[18.03]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[31.6]}}]}, -{"f":161,"b":[{"b":0,"v":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"b":1,"v":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"b":2,"v":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"b":3,"v":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"b":4,"v":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"b":5,"v":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"b":6,"v":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"b":7,"v":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"b":8,"v":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.21]}},{"b":11,"v":{"DEFAULT":[2.23]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[16.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.6]}}]}, -{"f":162,"b":[{"b":0,"v":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"b":1,"v":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"b":2,"v":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"b":3,"v":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"b":4,"v":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"b":5,"v":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"b":6,"v":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"b":7,"v":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"b":8,"v":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.93]}},{"b":12,"v":{"DEFAULT":[8.44]}},{"b":13,"v":{"DEFAULT":[33.64]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, -{"f":163,"b":[{"b":0,"v":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"b":1,"v":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"b":2,"v":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"b":3,"v":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"b":4,"v":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"b":5,"v":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"b":6,"v":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"b":7,"v":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"b":8,"v":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[38.79]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":164,"b":[{"b":0,"v":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"b":2,"v":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"b":3,"v":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"b":4,"v":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"b":5,"v":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"b":6,"v":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"b":7,"v":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"b":8,"v":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.71]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[28.85]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, -{"f":165,"b":[{"b":0,"v":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"b":1,"v":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"b":2,"v":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"b":3,"v":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"b":4,"v":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"b":5,"v":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"b":6,"v":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"b":7,"v":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"b":8,"v":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[4.38]}},{"b":11,"v":{"DEFAULT":[4.45]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.44]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[72.9]}}]}, -{"f":166,"b":[{"b":0,"v":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"b":1,"v":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"b":2,"v":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"b":3,"v":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"b":4,"v":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"b":5,"v":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"b":6,"v":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"b":7,"v":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"b":8,"v":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.62]}},{"b":11,"v":{"DEFAULT":[5.62]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[47.7]}}]}, -{"f":167,"b":[{"b":0,"v":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"b":1,"v":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"b":2,"v":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"b":3,"v":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"b":4,"v":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"b":5,"v":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"b":6,"v":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"b":7,"v":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"b":8,"v":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.92]}},{"b":11,"v":{"DEFAULT":[4.18]}},{"b":12,"v":{"DEFAULT":[2.29]}},{"b":13,"v":{"DEFAULT":[30.94]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[88.2]}}]}, -{"f":168,"b":[{"b":0,"v":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"b":1,"v":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"b":2,"v":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"b":3,"v":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"b":4,"v":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"b":5,"v":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"b":6,"v":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"b":7,"v":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"b":8,"v":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[5.83]}},{"b":11,"v":{"DEFAULT":[8.21]}},{"b":12,"v":{"DEFAULT":[5.94]}},{"b":13,"v":{"DEFAULT":[48.32]}},{"b":14,"v":{"DEFAULT":[127.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[131.9]}}]}, -{"f":169,"b":[{"b":0,"v":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"b":1,"v":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"b":2,"v":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"b":3,"v":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"b":4,"v":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"b":5,"v":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"b":7,"v":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"b":8,"v":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.09]}},{"b":11,"v":{"DEFAULT":[4.12]}},{"b":12,"v":{"DEFAULT":[1.21]}},{"b":13,"v":{"DEFAULT":[31.89]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.9]}}]}, -{"f":170,"b":[{"b":0,"v":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"b":1,"v":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"b":2,"v":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"b":3,"v":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"b":4,"v":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"b":5,"v":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"b":6,"v":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"b":7,"v":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"b":8,"v":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.84]}},{"b":10,"v":{"DEFAULT":[3.63]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.49]}},{"b":13,"v":{"DEFAULT":[26.84]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[83.7]}}]}, -{"f":171,"b":[{"b":0,"v":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"b":1,"v":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"b":2,"v":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"b":3,"v":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"b":4,"v":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"b":5,"v":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"b":6,"v":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"b":7,"v":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"b":8,"v":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[4.38]}},{"b":10,"v":{"DEFAULT":[7.91]}},{"b":11,"v":{"DEFAULT":[8.11]}},{"b":12,"v":{"DEFAULT":[4.66]}},{"b":13,"v":{"DEFAULT":[36.85]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1073.1]}}]}, -{"f":172,"b":[{"b":0,"v":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"b":1,"v":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"b":2,"v":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"b":3,"v":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"b":4,"v":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"b":5,"v":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"b":6,"v":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"b":7,"v":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"b":8,"v":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.84]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, -{"f":173,"b":[{"b":0,"v":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"b":1,"v":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"b":2,"v":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"b":3,"v":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"b":4,"v":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"b":5,"v":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"b":6,"v":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"b":7,"v":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"b":8,"v":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[3.16]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[15.78]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":174,"b":[{"b":0,"v":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"b":1,"v":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"b":2,"v":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"b":3,"v":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"b":4,"v":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"b":5,"v":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"b":6,"v":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"b":7,"v":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"b":8,"v":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[7.49]}},{"b":11,"v":{"DEFAULT":[9.56]}},{"b":12,"v":{"DEFAULT":[5.93]}},{"b":13,"v":{"DEFAULT":[56.65]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[282.7]}}]}, -{"f":175,"b":[{"b":0,"v":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"b":1,"v":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"b":2,"v":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"b":3,"v":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"b":4,"v":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"b":5,"v":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"b":6,"v":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"b":7,"v":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"b":8,"v":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.75]}},{"b":11,"v":{"DEFAULT":[6.33]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.65]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[174.6]}}]}, -{"f":176,"b":[{"b":0,"v":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"b":1,"v":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"b":2,"v":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"b":4,"v":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"b":5,"v":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"b":6,"v":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"b":7,"v":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"b":8,"v":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.82]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.93]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":177,"b":[{"b":0,"v":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"b":1,"v":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"b":2,"v":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"b":3,"v":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"b":4,"v":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"b":5,"v":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"b":6,"v":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"b":7,"v":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"b":8,"v":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[19.82]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, -{"f":178,"b":[{"b":0,"v":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"b":1,"v":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"b":2,"v":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"b":3,"v":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"b":4,"v":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"b":5,"v":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"b":6,"v":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"b":7,"v":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"b":8,"v":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.32]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, -{"f":179,"b":[{"b":0,"v":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"b":1,"v":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"b":2,"v":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"b":3,"v":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"b":4,"v":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"b":5,"v":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"b":6,"v":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"b":7,"v":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"b":8,"v":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.76]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[70.7]}}]}, -{"f":180,"b":[{"b":0,"v":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"b":1,"v":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"b":2,"v":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"b":3,"v":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"b":4,"v":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"b":5,"v":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"b":6,"v":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"b":7,"v":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"b":8,"v":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.03]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":181,"b":[{"b":0,"v":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"b":2,"v":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"b":3,"v":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"b":4,"v":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"b":5,"v":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"b":6,"v":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"b":7,"v":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"b":8,"v":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[30.89]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.2]}}]}, -{"f":182,"b":[{"b":0,"v":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"b":1,"v":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"b":2,"v":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"b":3,"v":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"b":4,"v":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"b":5,"v":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"b":6,"v":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"b":7,"v":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"b":8,"v":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.12]}},{"b":11,"v":{"DEFAULT":[8.55]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.81]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[479.6]}}]}, -{"f":183,"b":[{"b":0,"v":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"b":1,"v":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"b":2,"v":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"b":3,"v":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"b":4,"v":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"b":5,"v":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"b":6,"v":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"b":7,"v":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"b":8,"v":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.51]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[284.8]}}]}, -{"f":184,"b":[{"b":0,"v":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"b":1,"v":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"b":2,"v":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"b":3,"v":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"b":4,"v":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"b":5,"v":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"b":6,"v":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"b":7,"v":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"b":8,"v":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.44]}},{"b":12,"v":{"DEFAULT":[1.42]}},{"b":13,"v":{"DEFAULT":[46.68]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, -{"f":185,"b":[{"b":0,"v":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"b":1,"v":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"b":2,"v":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"b":3,"v":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"b":4,"v":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"b":5,"v":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"b":6,"v":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"b":7,"v":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"b":8,"v":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[3.61]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[114.2]}}]}, -{"f":186,"b":[{"b":0,"v":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"b":1,"v":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"b":2,"v":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"b":3,"v":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"b":4,"v":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"b":5,"v":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"b":6,"v":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"b":7,"v":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"b":8,"v":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.22]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[4.78]}},{"b":13,"v":{"DEFAULT":[39.14]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[103.1]}}]}, -{"f":187,"b":[{"b":0,"v":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"b":1,"v":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"b":2,"v":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"b":3,"v":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"b":4,"v":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"b":5,"v":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"b":6,"v":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"b":7,"v":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"b":8,"v":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.73]}},{"b":11,"v":{"DEFAULT":[8.75]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.02]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[240.3]}}]}, -{"f":188,"b":[{"b":0,"v":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"b":1,"v":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"b":2,"v":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"b":3,"v":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"b":4,"v":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"b":5,"v":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"b":6,"v":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"b":7,"v":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"b":8,"v":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[4.35]}},{"b":11,"v":{"DEFAULT":[4.36]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.11]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[163.7]}}]}, -{"f":189,"b":[{"b":0,"v":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"b":1,"v":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"b":2,"v":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"b":3,"v":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"b":4,"v":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"b":5,"v":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"b":6,"v":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"b":7,"v":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"b":8,"v":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, -{"f":190,"b":[{"b":0,"v":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"b":1,"v":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"b":2,"v":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"b":3,"v":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"b":4,"v":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"b":5,"v":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"b":6,"v":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"b":7,"v":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"b":8,"v":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"b":9,"v":{"DEFAULT":[7.66]}},{"b":10,"v":{"DEFAULT":[21.32]}},{"b":11,"v":{"DEFAULT":[24.73]}},{"b":12,"v":{"DEFAULT":[40.66]}},{"b":13,"v":{"DEFAULT":[128.26]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2470.1]}}]}, -{"f":191,"b":[{"b":0,"v":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"b":1,"v":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"b":2,"v":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"b":3,"v":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"b":4,"v":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"b":5,"v":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"b":6,"v":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"b":7,"v":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"b":8,"v":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3.03]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[65.1]}}]}, -{"f":192,"b":[{"b":0,"v":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"b":1,"v":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"b":2,"v":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"b":3,"v":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"b":4,"v":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"b":5,"v":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"b":6,"v":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"b":7,"v":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"b":8,"v":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, -{"f":193,"b":[{"b":0,"v":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"b":1,"v":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"b":2,"v":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"b":3,"v":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"b":4,"v":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"b":5,"v":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"b":6,"v":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"b":7,"v":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"b":8,"v":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.51]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.73]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, -{"f":194,"b":[{"b":0,"v":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"b":1,"v":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"b":2,"v":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"b":3,"v":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"b":4,"v":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"b":5,"v":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"b":6,"v":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"b":7,"v":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"b":8,"v":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.12]}},{"b":11,"v":{"DEFAULT":[4.19]}},{"b":12,"v":{"DEFAULT":[1.27]}},{"b":13,"v":{"DEFAULT":[30.28]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[235.9]}}]}, -{"f":195,"b":[{"b":0,"v":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"b":1,"v":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"b":2,"v":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"b":3,"v":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"b":4,"v":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"b":5,"v":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"b":6,"v":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"b":7,"v":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"b":8,"v":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"b":9,"v":{"DEFAULT":[1.88]}},{"b":10,"v":{"DEFAULT":[10.98]}},{"b":11,"v":{"DEFAULT":[19.28]}},{"b":12,"v":{"DEFAULT":[9.94]}},{"b":13,"v":{"DEFAULT":[93.05]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[565.4]}}]}, -{"f":196,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"b":1,"v":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"b":2,"v":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"b":3,"v":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"b":4,"v":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"b":5,"v":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"b":6,"v":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"b":7,"v":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"b":8,"v":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.22]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[42]}}]}, -{"f":197,"b":[{"b":0,"v":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"b":1,"v":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"b":2,"v":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"b":3,"v":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"b":4,"v":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"b":5,"v":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"b":6,"v":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"b":7,"v":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"b":8,"v":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[3.94]}},{"b":13,"v":{"DEFAULT":[34.52]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":198,"b":[{"b":0,"v":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"b":1,"v":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"b":2,"v":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"b":3,"v":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"b":4,"v":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"b":5,"v":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"b":6,"v":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"b":7,"v":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"b":8,"v":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[9.25]}},{"b":11,"v":{"DEFAULT":[9.25]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[85.79]}},{"b":14,"v":{"DEFAULT":[12.6]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, -{"f":199,"b":[{"b":0,"v":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"b":1,"v":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"b":2,"v":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"b":3,"v":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"b":4,"v":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"b":5,"v":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"b":6,"v":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"b":7,"v":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"b":8,"v":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.23]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.28]}},{"b":13,"v":{"DEFAULT":[16.62]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[63.8]}}]}, -{"f":200,"b":[{"b":0,"v":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"b":1,"v":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"b":2,"v":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"b":3,"v":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"b":4,"v":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"b":5,"v":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"b":6,"v":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"b":7,"v":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"b":8,"v":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.91]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.45]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, -{"f":201,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"b":1,"v":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"b":2,"v":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"b":3,"v":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"b":4,"v":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"b":5,"v":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"b":6,"v":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"b":7,"v":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"b":8,"v":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.55]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[64.2]}}]}, -{"f":202,"b":[{"b":0,"v":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"b":1,"v":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"b":2,"v":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"b":3,"v":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"b":4,"v":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"b":6,"v":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"b":7,"v":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"b":8,"v":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[19.21]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":203,"b":[{"b":0,"v":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"b":1,"v":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"b":2,"v":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"b":3,"v":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"b":4,"v":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"b":5,"v":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"b":6,"v":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"b":7,"v":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"b":8,"v":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.17]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.72]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[95.8]}}]}, -{"f":204,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"b":1,"v":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"b":2,"v":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"b":3,"v":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"b":4,"v":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"b":5,"v":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"b":6,"v":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"b":7,"v":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"b":8,"v":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":205,"b":[{"b":0,"v":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"b":1,"v":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"b":2,"v":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"b":3,"v":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"b":4,"v":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"b":5,"v":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"b":6,"v":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"b":7,"v":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"b":8,"v":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.92]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":206,"b":[{"b":0,"v":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"b":1,"v":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"b":2,"v":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"b":3,"v":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"b":4,"v":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"b":5,"v":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"b":6,"v":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"b":7,"v":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"b":8,"v":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.79]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":207,"b":[{"b":0,"v":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"b":1,"v":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"b":2,"v":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"b":3,"v":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"b":4,"v":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"b":5,"v":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"b":6,"v":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"b":7,"v":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"b":8,"v":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.94]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[22.52]}},{"b":14,"v":{"DEFAULT":[8.5]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[38.5]}}]}, -{"f":208,"b":[{"b":0,"v":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"b":1,"v":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"b":2,"v":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"b":4,"v":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"b":5,"v":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"b":6,"v":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"b":7,"v":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"b":8,"v":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.11]}},{"b":13,"v":{"DEFAULT":[28.62]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.9]}},{"b":16,"v":{"DEFAULT":[87.1]}}]}, -{"f":209,"b":[{"b":0,"v":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"b":1,"v":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"b":2,"v":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"b":3,"v":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"b":4,"v":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"b":5,"v":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"b":6,"v":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"b":7,"v":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[22.22]}},{"b":14,"v":{"DEFAULT":[37.2]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":210,"b":[{"b":0,"v":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"b":1,"v":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"b":2,"v":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"b":3,"v":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"b":4,"v":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"b":5,"v":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"b":6,"v":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"b":7,"v":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"b":8,"v":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[21.14]}},{"b":14,"v":{"DEFAULT":[37]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[72.1]}}]},]; -export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.31-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":0,"b":[]}, +{"f":1,"b":[]}, +{"f":2,"b":[]}, +{"f":3,"b":[]}, +{"f":4,"b":[]}, +{"f":5,"b":[]}, +{"f":6,"b":[]}, +{"f":7,"b":[]}, +{"f":8,"b":[]}, +{"f":9,"b":[]}, +{"f":10,"b":[]}, +{"f":11,"b":[]}, +{"f":12,"b":[]}, +{"f":13,"b":[]}, +{"f":14,"b":[{"b":0,"v":{"total":[26,26.6,25.9,25.7,26.2,25,25.9,26,25.9,25.9,26,26,25.6,26,25.8],"script":[2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3],"paint":[23.2,23.7,23.1,22.8,23.4,22.3,23.1,23.1,23.1,23.1,23.2,23.2,22.7,23.2,23]}},{"b":1,"v":{"total":[29.4,30.1,29.9,29.3,30.2,29.8,30.9,30.7,29.6,30.7,30.2,30.3,29.5,30.4,30],"script":[5.1,5.3,5.3,5.2,5.1,5,5.2,5.3,5.1,5.3,5.3,5.2,4.9,5.2,5.1],"paint":[23.6,24.2,23.9,23.5,24.4,24.3,25,24.8,23.9,24.7,24.3,24.5,24.1,24.5,24.2]}},{"b":2,"v":{"total":[16.6,16.8,16.4,18.6,17.1,16.1,17.1,16.5,17.2,17,17.7,17.2,17.5,16.7,17.2],"script":[1.1,1.2,0.8,1.4,1.4,1.2,1.1,1.2,1.2,1.3,1.5,0.8,1.6,1.1,1.5],"paint":[13.6,13.6,14,15.6,14.8,13.5,14.7,14.1,14.2,13.8,13.9,13.9,14.3,13.4,13.9]}},{"b":3,"v":{"total":[4,4.2,3.6,4.3,3.9,3.9,4,3.9,4.3,4.3,5.2,4,4.1,3.9,4,3.6,4.1,4.7,4.1,4.4,4.7,4.3,4.3,4.9,4.3],"script":[0.6,0.8,0.7,1.1,0.2,0.9,0.7,0.5,0.8,0.7,1,0.7,0.8,0.7,1,0.9,0.2,0.9,0.7,0.2,0.8,0.1,0.2,0.5,0.9],"paint":[2.6,2.8,2.2,2.3,2.9,2.2,3.1,2.3,2.5,2.6,2.9,2.3,2.6,2.2,2.9,2,3.2,3,2.4,3.5,3.1,3.1,2.8,3.5,2.8]}},{"b":4,"v":{"total":[20.4,18.5,19.5,19.5,19.8,19.6,19.8,19.8,19.2,19.4,20.1,19.9,19.9,20.1,18.1],"script":[1.3,0.6,0.2,0.2,0.8,0.5,1.3,0.4,0.9,0.5,1.2,0.8,0.5,0.2,0.5],"paint":[17.3,15.9,17.1,17,16.8,16.8,16.2,17.1,16.2,17.3,15.8,16.9,17.4,17.8,15.5]}},{"b":5,"v":{"total":[13.1,13.4,13.6,13.8,15.1,15.2,13.7,13.7,13.7,14.8,13.7,13.8,13.4,13.7,14.1],"script":[0.4,0.2,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.5,0.2],"paint":[11.8,12.2,11.9,12.3,13.3,13.4,12.4,12.6,12.4,13.6,12.1,12.6,12.4,12.3,12.6]}},{"b":6,"v":{"total":[280.7,285.7,280.3,280.7,283.6,281.9,283.5,279.9,284.9,280.6,282.4,282.2,282,280.6,279.9],"script":[28.6,28.4,28.2,28.3,28.4,28.6,28.8,28.4,28.4,27.7,29,28.2,28.8,28.1,28],"paint":[242.3,246.9,243.2,243,244.6,243.5,245.1,242.3,247.4,243.8,244,244.8,243.5,242.9,242.6]}},{"b":7,"v":{"total":[31.6,31,31,31.6,31.9,30.8,31.6,30.7,30.7,31.4,31.5,31.8,33.4,31.7,31.4],"script":[2.2,2.2,2.2,2.1,2.3,2.2,2.2,2.1,2.3,2.2,2.2,2.2,2.2,2.1,2.2],"paint":[28.3,27.9,27.8,28.5,28.4,27.8,28.4,27.8,27.5,28.2,28.3,28.5,29.9,28.5,28.2]}},{"b":8,"v":{"total":[13.1,13.7,13.2,13.6,12.4,13.1,13.7,13.7,13.1,13.3,13.4,12.5,13.8,13.1,13.6],"script":[9.9,10.2,10.2,10.7,10.1,10.6,10.5,10.4,10.5,10.6,10.6,10.1,11.4,10,10.2],"paint":[3,2.3,2.7,1.2,0.8,1.7,2.4,2.3,1.3,1.5,2.1,0.7,0.9,1.2,2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.58]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.3]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[51.6]}}]}, +{"f":15,"b":[]}, +{"f":16,"b":[]}, +{"f":17,"b":[]}, +{"f":18,"b":[]}, +{"f":19,"b":[]}, +{"f":20,"b":[]}, +{"f":21,"b":[]}, +{"f":22,"b":[]}, +{"f":23,"b":[]}, +{"f":24,"b":[]}, +{"f":25,"b":[]}, +{"f":26,"b":[]}, +{"f":27,"b":[]}, +{"f":28,"b":[]}, +{"f":29,"b":[]}, +{"f":30,"b":[]}, +{"f":31,"b":[]}, +{"f":32,"b":[]}, +{"f":33,"b":[]}, +{"f":34,"b":[]}, +{"f":35,"b":[]}, +{"f":36,"b":[]}, +{"f":37,"b":[]}, +{"f":38,"b":[]}, +{"f":39,"b":[]}, +{"f":40,"b":[]}, +{"f":41,"b":[]}, +{"f":42,"b":[]}, +{"f":43,"b":[]}, +{"f":44,"b":[]}, +{"f":45,"b":[{"b":0,"v":{"total":[24.8,25.2,25.3,25.5,25.5,25.7,26,26,26,25.9,25.9,26,25.6,25.6,25.8],"script":[1.9,1.8,1.9,2,1.9,2,1.9,1.9,2,1.9,2,1.9,1.9,1.9,1.9],"paint":[22.4,23,22.9,23.1,23.1,23.3,23.5,23.6,23.6,23.5,23.5,23.6,23.2,23.1,23.5]}},{"b":1,"v":{"total":[30.1,29.4,29.3,29.2,29.4,29,30.2,30.3,29.9,29.9,30,30.2,29.5,29.6,29.8],"script":[4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.5,4.5,4.6,4.7,4.6,4.2,4.5,4.3],"paint":[25.1,24.4,24.4,24.2,24.6,24.2,25.2,25.2,24.8,24.9,24.9,25.1,24.9,24.5,25]}},{"b":2,"v":{"total":[17.8,17.6,17.3,17.7,16,16.8,15.5,17.9,17.1,16.1,17.3,16.9,16.2,17.3,17.2],"script":[1.9,1.5,1.6,1.4,1,1.6,1.5,1.6,1.3,1.9,0.9,1.5,1.7,1.6,2.2],"paint":[13.9,13.1,13.6,13.8,12.8,13.2,12.9,14.3,13.9,13.1,14.1,13.9,12.9,13.1,13.4]}},{"b":3,"v":{"total":[5.1,4.9,5.2,4.1,4.2,4.8,5.4,4.6,3.6,5.2,5.3,5,4.7,4.8,4.1,4.7,4.6,4,4.2,5.1,5.3,4.5,4.1,5,5.1],"script":[0.8,1,1,0.5,1,1,1.2,0.9,0.2,1.2,0.8,1,0.5,1.1,0.9,0.5,0.8,0.8,0.9,1.1,1.6,1,0.7,0.8,1.2],"paint":[3.8,2.9,2.9,3.4,2.5,3.1,3.9,3.3,3.2,2.5,2.7,3.8,3.4,2.9,2.6,3.4,3,2.2,2.4,3.2,3,2.3,2.2,3.1,2.6]}},{"b":4,"v":{"total":[21.4,20.2,18.9,19.9,20.1,20.1,20.7,20.9,20.8,21.3,18.8,19.6,21.6,18.1,20],"script":[1.3,0.9,1.4,1.2,0.8,1.3,1.5,1.3,1.3,1.3,1.2,1.4,1.7,0.8,1.8],"paint":[18,17.1,15.5,17.5,17.5,17.3,17.9,18,16.9,17.8,16.1,15.9,17.4,15.4,16.1]}},{"b":5,"v":{"total":[14.5,14.6,14.6,14.1,14.3,14.2,15.3,14.7,15.5,16,13.4,13.8,13.9,14.1,14.8],"script":[0.5,0.8,0.5,0.5,0.5,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[12.8,12.8,12.9,12.1,13,12.4,13.6,13.4,13.8,14.3,11.8,11.9,12.4,12.7,13]}},{"b":6,"v":{"total":[289.1,287.9,286,284.8,287,299.6,289.9,291,296.3,288.6,286,288.8,289.7,287.8,287.1],"script":[27.7,28.2,28.2,27.8,27.6,28.2,28.2,28.4,28.5,28.7,28.2,28.3,28.4,28.2,27.9],"paint":[252.1,250.8,248.8,247.9,250.4,262.2,252.2,253.5,259,251,248.4,251.2,251.9,250.4,250.2]}},{"b":7,"v":{"total":[33,32.5,32.8,33.3,32.1,32.7,33.6,32.4,33.2,32.6,33.2,32.7,32.1,33.2,33.3],"script":[2.3,2.2,2.2,2.3,2.3,2.2,2.3,2.4,2.4,2.4,2.3,2.2,2.2,2.3,2.2],"paint":[29.7,29.1,29.4,29.8,28.9,29.4,30.2,29.1,29.7,29.3,29.7,29.5,28.9,29.8,29.9]}},{"b":8,"v":{"total":[13.6,14.2,14.4,14.7,14.9,14.3,14.5,14.7,14.5,14.1,14.5,14.4,13.9,13.8,14.5],"script":[11.2,11.2,11.5,11.1,11.6,11.1,11.2,11.6,11.4,11.6,11.3,10.9,10.9,10.7,11.7],"paint":[0.8,1.9,2.6,2.1,1.8,1.7,1.8,2.2,1.3,1.7,0.8,1.8,1.7,2,1.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.28]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, +{"f":46,"b":[]}, +{"f":47,"b":[]}, +{"f":48,"b":[]}, +{"f":49,"b":[]}, +{"f":50,"b":[]}, +{"f":51,"b":[]}, +{"f":52,"b":[]}, +{"f":53,"b":[]}, +{"f":54,"b":[]}, +{"f":55,"b":[]}, +{"f":56,"b":[]}, +{"f":57,"b":[]}, +{"f":58,"b":[]}, +{"f":59,"b":[]}, +{"f":60,"b":[]}, +{"f":61,"b":[]}, +{"f":62,"b":[]}, +{"f":63,"b":[]}, +{"f":64,"b":[]}, +{"f":65,"b":[]}, +{"f":66,"b":[]}, +{"f":67,"b":[]}, +{"f":68,"b":[]}, +{"f":69,"b":[]}, +{"f":70,"b":[]}, +{"f":71,"b":[]}, +{"f":72,"b":[]}, +{"f":73,"b":[]}, +{"f":74,"b":[]}, +{"f":75,"b":[]}, +{"f":76,"b":[]}, +{"f":77,"b":[]}, +{"f":78,"b":[]}, +{"f":79,"b":[]}, +{"f":80,"b":[]}, +{"f":81,"b":[]}, +{"f":82,"b":[]}, +{"f":83,"b":[]}, +{"f":84,"b":[]}, +{"f":85,"b":[]}, +{"f":86,"b":[]}, +{"f":87,"b":[]}, +{"f":88,"b":[]}, +{"f":89,"b":[]}, +{"f":90,"b":[]}, +{"f":91,"b":[]}, +{"f":92,"b":[]}, +{"f":93,"b":[]}, +{"f":94,"b":[]}, +{"f":95,"b":[]}, +{"f":96,"b":[]}, +{"f":97,"b":[]}, +{"f":98,"b":[]}, +{"f":99,"b":[]}, +{"f":100,"b":[]}, +{"f":101,"b":[]}, +{"f":102,"b":[]}, +{"f":103,"b":[{"b":0,"v":{"total":[25.9,25.4,25.9,25.2,25.8,25.4,26,26.1,25,25.7,25.5,25.9,25.2,25.9,25.5],"script":[2.4,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.5],"paint":[23.1,22.6,23.2,22.5,23,22.7,23.1,23.4,22.3,22.9,22.8,23.2,22.4,23,22.6]}},{"b":1,"v":{"total":[28.5,28.2,28.6,28.8,29,28.2,29,28.5,28.4,29.6,29.5,28,28.6,28.9,28.7],"script":[4.5,4.7,4.5,4.7,4.6,4.6,4.8,4.7,4.7,4.8,4.9,4.4,4.9,4.6,4.6],"paint":[23.5,23.1,23.7,23.7,23.9,23.1,23.8,23.4,23.2,24.3,24.2,23.2,23.3,23.9,23.7]}},{"b":2,"v":{"total":[16.2,17.6,15.4,17,14.9,15.4,15.3,15.5,14.9,16.4,15.4,15.1,15.2,14.9,17.8],"script":[0.8,1,1,1,0.6,0.8,0.8,1.1,0.7,0.8,0.8,0.9,1.1,0.2,1.2],"paint":[14,14.9,13,14,12.2,13.6,13.2,12.6,13.1,13.8,13.1,12.3,12.6,12.6,14.3]}},{"b":3,"v":{"total":[6.2,4.3,3.9,4.1,4.5,4.8,5,4.3,4.1,4.1,4,4.5,4.1,4.8,4.9,4.7,4.1,3.6,4.5,3.9,4.3,4.1,4.2,4.5,4.3],"script":[1.1,1,1.1,1.3,1.2,1.2,0.6,1,0.6,0.8,0.8,1,1.1,1.4,0.8,1.2,1.1,0.5,1.2,1,0.8,1.2,1,0.8,0.9],"paint":[4.9,2.9,2,1.8,2.3,2.4,3.6,3.2,2.3,2.3,2.6,3.3,2.3,2,3.3,2.7,2.6,2.4,2.5,2.2,3,2.2,2.6,2.9,2.6]}},{"b":4,"v":{"total":[19.8,20.4,19.3,18.3,17.4,19.1,19.7,20.6,19.6,21,18.8,19.8,19.9,18.4,20.4],"script":[1.1,1.2,0.9,1.1,0.8,0.8,0.8,0.8,1.4,0.8,1.3,1.2,1.1,1.1,1.1],"paint":[16.3,16.8,17.3,16.6,15.2,16.7,16.3,18,16.2,18.2,15.9,17.2,16.6,15.4,17.4]}},{"b":5,"v":{"total":[13,14.5,14,13.2,14,13.7,13.1,13.8,13.6,13.8,13.2,13.3,14.1,13.9,13.1],"script":[0.2,0.5,0.2,0.2,0.3,0.3,0.2,0.4,0.3,0.4,0.5,0.5,0.5,0.4,0.4],"paint":[11.6,13.1,12.8,12.3,12.6,12.3,12,12.8,12.4,12.4,11.8,12.1,12.4,12.4,11.8]}},{"b":6,"v":{"total":[285.7,278.3,279.3,279.7,279.9,279.5,278.9,279.3,288.4,283.4,284.2,279.4,282.6,282.2,281.7],"script":[27,27.2,26.7,25.8,27,26.7,26.9,26.3,27,26.1,26.4,26.6,26.2,27,26.9],"paint":[249.7,241.9,243.9,245,243.8,243.5,242.7,243.8,251.2,247.7,247.7,243.7,246.5,245.9,245.7]}},{"b":7,"v":{"total":[31.8,31.8,31.4,31.3,31.7,31.4,30.9,31.8,31,31.5,31.1,31.5,31.6,31.8,31.7],"script":[2.6,2.6,2.4,2.6,2.5,2.6,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5],"paint":[28.1,28.3,28,27.8,28.1,27.8,27.6,28.3,27.6,28,27.6,28.1,28.1,28.2,28]}},{"b":8,"v":{"total":[13.4,14.1,13.5,14.3,13.7,13.8,13.4,13.8,13,14,14.1,13.5,14.5,14.7,13.2],"script":[10.7,11.2,10.7,11.2,11.4,10.6,10.6,10.6,10.5,11.3,11.1,11,11.2,11.6,10.8],"paint":[1.7,1.3,1.9,1.1,0.8,1.6,1.2,2.9,0.8,1.7,2,1.6,1.7,2.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.47]}},{"b":11,"v":{"DEFAULT":[2.5]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.89]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[43.9]}}]}, +{"f":104,"b":[]}, +{"f":105,"b":[]}, +{"f":106,"b":[]}, +{"f":107,"b":[]}, +{"f":108,"b":[]}, +{"f":109,"b":[]}, +{"f":110,"b":[]}, +{"f":111,"b":[]}, +{"f":112,"b":[{"b":0,"v":{"total":[26.2,25.8,26.6,25.8,25.2,26.2,26.3,26.2,27.1,26.1,25.7,26,26.3,26,25.9],"script":[2.7,2.6,2.5,2.7,2.6,2.5,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5],"paint":[23,22.8,23.6,22.6,22.1,23.2,23.1,23.2,24.1,23.2,22.8,23,23.4,23,23]}},{"b":1,"v":{"total":[30.4,30.2,29.9,30.4,30.4,29.6,30.8,30,29.5,29.8,30,30.4,30.1,30.3,30.2],"script":[5.7,5.4,5.4,5.5,5.6,5.2,5.6,5.3,5.7,5.4,5.6,5.5,5.6,5.5,5.6],"paint":[24.1,24.2,23.9,24.2,24.2,23.7,24.5,24.1,23.1,23.7,23.7,24.2,23.9,24.1,23.9]}},{"b":2,"v":{"total":[17.7,22.4,17.9,16.3,15.8,16.7,17.2,17.3,16,17.5,16.5,17.1,16.8,16.3,17.2],"script":[1.3,1.9,1.4,0.8,1.1,0.9,1.4,1.3,1.4,1.4,1.1,0.8,1.7,0.9,1.5],"paint":[14.6,17.3,13.8,13.7,12.5,13.4,13.1,13.8,12.3,13.6,14,14.6,13,14.2,13.5]}},{"b":3,"v":{"total":[4.3,4.9,4,4,4.4,3.8,4.5,4,4.3,4.9,3.6,4.1,4.3,4.2,3.7,4.4,4.4,3.9,4.4,4.6,3.7,4.5,4.9,4.9,4.5],"script":[1,1.1,0.1,0.9,0.4,0.6,0.8,0.7,0.5,1.4,0.8,0.7,0.7,0.8,0.2,0.8,0.9,0.8,0.7,0.5,0.5,1,1,0.2,0.7],"paint":[2.3,3.3,3.3,2.3,3.5,2.5,3.5,2.6,2.3,1.9,2,1.9,2.8,2.8,2.4,2.4,2.2,2.3,2.5,3.8,2.5,2.8,3,3.2,3]}},{"b":4,"v":{"total":[20.5,21.5,20.8,21.4,20.1,20.8,21.9,20.4,20,21.5,21.4,22.4,20.5,21.4,19.5],"script":[1.4,1.7,1.8,1.8,1.6,1.6,1.9,1.8,1.8,1.4,1.5,2,1.6,2,1.3],"paint":[15.8,17.7,16.7,18.2,16.9,16.1,18.2,16.8,16.3,18.4,18.3,18.3,17.1,17.4,16.3]}},{"b":5,"v":{"total":[15.4,14.7,14.3,14.6,14.3,15,13.8,14.3,14.2,13.5,14.8,16.3,15.3,15.4,15.8],"script":[0.6,0.6,0.6,0.5,0.7,0.5,0.6,0.5,0.8,0.6,0.6,0.5,0.7,0.7,0.6],"paint":[14,13.2,12.9,13,12.5,13.4,12.3,13,12.3,12,13.3,14.6,13.2,13.6,13.6]}},{"b":6,"v":{"total":[286.9,283.7,282.3,284.2,282.5,283.6,285.1,284.2,283,284.8,283.6,284.4,285.2,283.4,298.7],"script":[31.4,30.4,30.9,30.9,30.6,30.8,31.2,31,30.8,30.8,31.2,31.4,31.3,31.2,30.8],"paint":[246.2,244.2,242.1,244.1,242.5,243.5,244.6,243.9,243.2,244.5,243.2,243.6,245,243.5,258.6]}},{"b":7,"v":{"total":[31.8,32.1,31.5,32.5,34.1,31.5,32.2,31.9,32.1,31.9,31.4,32.5,32.1,32.3,32.3],"script":[3.1,3,3,3,3.3,3,3.2,3.1,3,3.1,3.1,3,3,3.2,2.9],"paint":[27.7,28.1,27.6,28.2,29.3,27.5,28,27.7,28,28,27.4,28.3,28.1,28.1,28.1]}},{"b":8,"v":{"total":[16.4,14.5,14.7,14.1,16.4,16,16.9,14.5,14.7,16.4,14.5,15.2,16.7,17.2,16.3],"script":[13.6,11.9,12.1,11.3,13.5,13.6,14.1,11.6,11.6,13.5,11.5,12.3,13.9,14.1,13.9],"paint":[0.9,2,1.6,2,1.4,0.7,2.2,1.5,1.9,2.1,2.3,1,1.1,1.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[21.08]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[49.6]}}]}, +{"f":113,"b":[]}, +{"f":114,"b":[]}, +{"f":115,"b":[]}, +{"f":116,"b":[]}, +{"f":117,"b":[]}, +{"f":118,"b":[]}, +{"f":119,"b":[]}, +{"f":120,"b":[{"b":0,"v":{"total":[26.1,25.2,25.3,27.1,25.9,26.1,26,25.8,25.4,27.7,26.4,25.7,26,26.1,26.2],"script":[2.4,2.5,2.4,2.6,2.6,2.6,2.4,2.4,2.5,2.6,2.6,2.4,2.5,2.4,2.6],"paint":[23.3,22.4,22.5,24,22.8,23.1,23.2,23,22.5,24.7,23.4,22.9,23,23.3,23.2]}},{"b":1,"v":{"total":[31.3,31.1,31.1,30.2,30.1,29.9,30.8,31.1,30.9,31.3,29.7,30.3,30.7,31.1,30.3],"script":[5.6,6,5.9,5.9,5.8,5.3,5.7,5.8,5.8,5.8,5.4,5.6,6.1,5.8,5.7],"paint":[25,24.4,24.4,23.6,23.8,23.9,24.4,24.6,24.4,24.7,23.7,24,24,24.7,23.9]}},{"b":2,"v":{"total":[18.4,17.8,17.5,16.1,17.5,16.4,17.4,17.8,18.7,18.6,18.5,17.2,16.5,16.3,17],"script":[1.5,1.9,1.5,0.9,1.3,1.5,1.3,1.8,1.8,2,1.4,2.1,1.5,1.5,1.5],"paint":[13.9,13.8,14.7,13.1,13.5,13.3,13.3,13.5,14.4,14.6,15,13.3,14,12.7,12.9]}},{"b":3,"v":{"total":[4.8,4.8,4.6,5.3,5.4,4.5,4.8,4.4,4.5,4.8,4.9,4.5,5.3,4.8,5.8,4.5,4.7,5,4.9,4.9,4.9,4.4,6.1,4.4,4.4],"script":[0.9,1.3,1.2,1,1.3,0.9,1.5,1.1,1.2,0.8,1.4,1.1,1.4,1.2,1.8,1.4,1.2,1.1,1.3,0.8,1.1,0.9,1.1,0.9,1.1],"paint":[3.1,2.4,1.9,2.7,3,3.4,2.6,2.7,2,3.2,2.7,2.9,2.8,2.3,2.9,2.3,2.7,3,2.5,2.9,3,2.7,4.4,2.7,2.4]}},{"b":4,"v":{"total":[20.7,20.3,19.7,19.3,20.6,21.6,21.4,20.7,20.1,20.8,20.4,20.9,20,21.1,21.2],"script":[1.1,1.1,0.9,1.8,1.5,1,1.2,1.7,1,1.1,1.5,1.3,1.3,1.4,1.5],"paint":[17.8,16.7,16.1,16.3,16.7,19.1,18.6,16.4,17.4,17.8,16.8,16.6,17.2,16.7,17.9]}},{"b":5,"v":{"total":[14.6,14.2,14.2,14.2,14.3,13.6,13.8,14.5,14.9,14.7,13.7,13.2,13.9,14.5,14.1],"script":[0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.6,0.7],"paint":[12.9,12.6,12.5,12.4,12.9,12,12.6,13.1,13.6,13,12.1,11.8,12.4,13,12.4]}},{"b":6,"v":{"total":[282.3,284.6,284.2,282.9,281.4,286.3,282.1,285.4,288.9,281,283.3,282.7,286.8,290.3,287.7],"script":[29.7,29.4,30.3,30,29.8,30.1,29.6,29.7,30.6,29,29.5,29.5,32.6,30.5,29.4],"paint":[243.5,245.9,244.8,243.4,242.2,246.7,243.4,246,249.2,242.9,244.5,243.6,245.1,250,248.3]}},{"b":7,"v":{"total":[32.1,31.6,31.4,32,31.9,31.5,32.2,31.5,31.9,32.1,31.5,31.7,32,32.6,31.9],"script":[2.7,2.8,2.7,2.7,2.8,2.7,2.9,3,2.8,2.6,2.6,2.7,2.8,2.7,2.7],"paint":[28.3,27.8,27.7,28.3,28.2,27.8,28.3,27.5,28.2,28.6,28,27.9,28.2,28.9,28.3]}},{"b":8,"v":{"total":[14.7,14.4,15,14.7,14.6,15,15,15.1,14.7,14.9,14.4,15.1,14.9,14.3,15.8],"script":[11.7,11.6,11.5,12.1,11.9,11.8,11.8,11.8,11.7,11.7,11.4,11.9,12,11.3,12.2],"paint":[2,1.6,1.7,1.6,2.4,1.8,1.7,1.7,1.8,1.7,1.2,2.6,1.8,2,1.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[53.1]}}]}, +{"f":121,"b":[]}, +{"f":122,"b":[]}, +{"f":123,"b":[]}, +{"f":124,"b":[]}, +{"f":125,"b":[]}, +{"f":126,"b":[]}, +{"f":127,"b":[]}, +{"f":128,"b":[]}, +{"f":129,"b":[]}, +{"f":130,"b":[{"b":0,"v":{"total":[24.6,24.6,24.7,24.8,23.8,23.9,24.5,24.3,24.3,24.1,24.7,23.9,24.6,24.3,25],"script":[1.4,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.5,1.4,1.3,1.4,1.5,1.4,1.4],"paint":[22.7,22.7,22.9,22.8,22,22.1,22.8,22.5,22.4,22.3,22.8,22.1,22.6,22.5,23.1]}},{"b":1,"v":{"total":[26.9,27.6,28,27.5,27.6,27.3,27.9,27.4,27.8,28,27.4,28.6,27.5,27.8,27.9],"script":[3.4,3.6,3.6,3.4,3.7,3.4,3.5,3.5,3.6,3.5,3.7,3.7,3.6,3.6,3.6],"paint":[23,23.6,23.9,23.6,23.4,23.3,23.9,23.5,23.7,23.9,23.2,24.3,23.5,23.7,23.7]}},{"b":2,"v":{"total":[16.4,17.5,14.8,16.3,15.6,15.9,17.8,15.9,15.3,15.9,14.3,19,15.3,15.6,16],"script":[0.8,0.9,0.1,0.8,0.6,0.5,0.8,0.8,0.7,0.5,0.6,0.5,0.8,1,1.1],"paint":[13,14.6,12.3,13.4,13.2,13.5,14.4,14,13,14.2,11.9,14.9,13.1,13,13.5]}},{"b":3,"v":{"total":[4.1,3.5,4.1,4.1,3.8,4.7,4.3,3.8,3.6,3.9,3.8,4.3,4.2,5.2,3.9,4.1,3.6,3.6,3.9,3.6,3.8,3.9,4.2,4.2,4.2],"script":[0.1,0.1,0.2,0.5,0.6,0.7,0.7,0.7,0.5,0.4,0.7,0.4,0.6,0.7,0.1,0.4,0.7,0.5,0.1,0.3,0.6,0.1,0.6,0.7,0.4],"paint":[2.9,2.5,3,3.5,2.8,3.5,2.8,1.8,2.2,2.7,2.4,2.7,2.8,3.3,2.7,3.5,2.1,2.5,2.9,2,2.5,3.6,2.6,2.9,3]}},{"b":4,"v":{"total":[17.4,18.3,18.6,17.4,17.7,18.9,23.2,17.6,17.8,18.4,19.2,19,18.6,18.1,16.8],"script":[0.1,0.6,0.1,0.1,0.6,0.6,0.1,0.1,0.8,0.7,0.1,0.8,0.1,0.1,0.1],"paint":[16.2,16.2,16.6,15,15.1,16.7,19.8,15.9,15.1,15.7,16.4,16.5,16.8,16.2,15.5]}},{"b":5,"v":{"total":[15.3,13.8,14.4,13.9,14.6,14.4,14.5,14.3,13.8,14.3,14.5,14.5,13.2,14.3,14.1],"script":[0.4,0.4,0.2,0.3,0.2,0.4,0.4,0.4,0.4,0.2,0.4,0.2,0.2,0.4,0.2],"paint":[13.8,12.4,13.3,12.4,13.1,12.7,12.7,12.9,12.2,12.9,13,13.1,12.1,12.9,12.9]}},{"b":6,"v":{"total":[264.3,261.7,262.3,262.3,261.5,267.4,263.5,263.6,264.6,261.5,262,266.7,261.6,263.5,261.7],"script":[15.4,15.6,15.6,15.7,15.7,15.8,15.7,15.9,15.2,15.6,15.4,16,15.5,15.6,15.7],"paint":[240.2,237.3,237.5,237.7,236.6,242.7,238.6,238.5,240.5,236.9,237.3,241.9,236.8,238.8,237]}},{"b":7,"v":{"total":[30.4,30.5,30.8,30.3,30.9,30.6,30.2,30.4,30.6,30.4,30.6,30.6,31.5,30.4,30.6],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.5,1.4,1.5,1.4,1.5],"paint":[27.9,28.1,28.4,27.8,28.5,28.2,27.7,28.1,28.2,28,28.2,28.2,28.8,28,28.1]}},{"b":8,"v":{"total":[13.5,13.1,12.7,13,12.5,12.9,13.3,12.5,13.4,12.5,12.3,12.8,13.1,13,13.4],"script":[10.4,9.8,9.9,10.1,9.7,10.1,9.7,9.7,10.7,9.7,9.4,9.8,10.3,10.4,10.1],"paint":[1.2,2.4,1.4,1.1,1.6,1.7,2.4,0.9,1.5,1.6,2.6,1.7,1.6,0.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[25.4,25.4,25.3,25.2,24.8,25.3,25.1,25,25.4,25.5,25.3,24.8,25.1,25,25],"script":[1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.4,1.3,1.3],"paint":[23.5,23.6,23.5,23.4,23.1,23.6,23.4,23.2,23.7,23.7,23.4,23.1,23.2,23.2,23.3]}},{"b":1,"v":{"total":[28.5,28.1,28.5,27.9,28.7,28.5,29.1,29.1,28.3,29.1,29.4,29.4,28.3,29.3,28.8],"script":[3.4,3.4,3.3,3.5,3.6,3.6,3.6,3.8,3.6,3.6,3.7,3.7,3.5,3.6,3.7],"paint":[24.7,24.2,24.6,24,24.4,24.4,25,24.8,24.3,25,25.2,25.2,24.3,25.1,24.7]}},{"b":2,"v":{"total":[19.1,17.7,17.2,18.6,17.2,16.1,16.4,16,16.2,15.9,15.4,16.2,16.5,15.1,17],"script":[0.9,0.3,0.7,0.7,0.1,0.6,0.1,0.1,0.8,0.8,0.1,0.7,0.4,0.1,0.5],"paint":[14.9,15.1,14.3,15.6,15.6,13.2,14.5,13.8,13.3,12.7,13.6,13.8,13.9,12.9,14.7]}},{"b":3,"v":{"total":[4,3.8,4.3,3,3.8,3.8,3.4,3.9,3.9,3.9,4.2,3.9,3.8,3.4,3.1,4.4,4,6,3.1,3.9,4,3.7,3.5,3.8,3.5],"script":[0,0.3,0.7,0.2,0.2,0.7,0,0.1,0.4,0,0,0.1,0.1,0,0,0,0.7,0.1,0,0,0,0,0,0.5,0.1],"paint":[2.1,2.4,3.4,2.3,3.1,2.6,2.6,2.9,2.7,2.9,2.8,3.4,2.2,2.6,2,3,2.3,4.5,2.5,2.9,3.4,2.7,3.3,2.7,2]}},{"b":4,"v":{"total":[18.8,19.6,19.8,20.2,18.5,19.1,20.6,19,20.4,20.5,20.1,20.1,18.8,18.9,19],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.8,0.7,0.5,0.4,0.1],"paint":[16.7,17.4,17.8,17.4,16.2,16.6,18.1,17.4,18.8,18,17.5,17.4,15.8,17.4,16.8]}},{"b":5,"v":{"total":[14.9,13.6,14.6,14,13.8,13.5,13.7,13.7,13,14.4,14.2,13.8,14.1,13.5,13.2],"script":[0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3,0.2],"paint":[13.5,12.7,13.4,12.6,12.8,12.6,12.6,12.9,11.9,13.6,13.1,12.7,13,12.3,12.3]}},{"b":6,"v":{"total":[269.8,271.7,268.8,268.5,267.7,268.3,267.3,271.4,268.7,268.3,270.3,268.6,267.8,279.4,278.3],"script":[14,14,13.6,13.7,13.9,13.5,13.8,13.8,13.3,13.7,13.9,13.5,13.9,13.8,13.9],"paint":[246.7,248.4,246,245.3,244.4,245.7,244.4,248.1,246.2,245.3,247.2,245.5,244.5,255.5,254.7]}},{"b":7,"v":{"total":[29.8,30.2,30,30,30.2,30.6,31.2,30.4,30.3,30.5,30.7,30.9,30.7,30.6,30.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[27.6,27.9,27.8,27.7,27.7,28.4,28.8,27.9,28,28.2,28.3,28.3,28.4,28.2,28.4]}},{"b":8,"v":{"total":[12.7,13.5,12.1,12.3,14.1,13.8,12.9,13,13.8,12.6,13.1,12.7,13.4,12.4,12.6],"script":[10.2,10.2,10,9.4,10.8,10.6,10.3,9.8,10.2,9.7,10.3,10.1,10.5,9.5,9.8],"paint":[2,2,0.9,1.6,1.8,1.3,1.9,1.9,1.6,1.7,0.9,1.5,1.8,1.5,1.9]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, +{"f":132,"b":[]}, +{"f":133,"b":[]}, +{"f":134,"b":[]}, +{"f":135,"b":[]}, +{"f":136,"b":[]}, +{"f":137,"b":[]}, +{"f":138,"b":[]}, +{"f":139,"b":[]}, +{"f":140,"b":[]}, +{"f":141,"b":[]}, +{"f":142,"b":[]}, +{"f":143,"b":[]}, +{"f":144,"b":[]}, +{"f":145,"b":[]}, +{"f":146,"b":[]}, +{"f":147,"b":[]}, +{"f":148,"b":[]}, +{"f":149,"b":[]}, +{"f":150,"b":[]}, +{"f":151,"b":[]}, +{"f":152,"b":[]}, +{"f":153,"b":[]}, +{"f":154,"b":[]}, +{"f":155,"b":[]}, +{"f":156,"b":[]}, +{"f":157,"b":[]}, +{"f":158,"b":[]}, +{"f":159,"b":[]}, +{"f":160,"b":[]}, +{"f":161,"b":[]}, +{"f":162,"b":[]}, +{"f":163,"b":[]}, +{"f":164,"b":[]}, +{"f":165,"b":[]}, +{"f":166,"b":[]}, +{"f":167,"b":[]}, +{"f":168,"b":[]}, +{"f":169,"b":[]}, +{"f":170,"b":[]}, +{"f":171,"b":[]}, +{"f":172,"b":[]}, +{"f":173,"b":[]}, +{"f":174,"b":[]}, +{"f":175,"b":[]}, +{"f":176,"b":[]}, +{"f":177,"b":[]}, +{"f":178,"b":[]}, +{"f":179,"b":[]}, +{"f":180,"b":[]}, +{"f":181,"b":[]}, +{"f":182,"b":[]}, +{"f":183,"b":[]}, +{"f":184,"b":[]}, +{"f":185,"b":[]}, +{"f":186,"b":[]}, +{"f":187,"b":[]}, +{"f":188,"b":[]}, +{"f":189,"b":[]}, +{"f":190,"b":[]}, +{"f":191,"b":[]}, +{"f":192,"b":[]}, +{"f":193,"b":[]}, +{"f":194,"b":[]}, +{"f":195,"b":[]}, +{"f":196,"b":[]}, +{"f":197,"b":[]}, +{"f":198,"b":[]}, +{"f":199,"b":[]}, +{"f":200,"b":[]}, +{"f":201,"b":[]}, +{"f":202,"b":[]}, +{"f":203,"b":[]}, +{"f":204,"b":[]}, +{"f":205,"b":[]}, +{"f":206,"b":[]}, +{"f":207,"b":[]}, +{"f":208,"b":[]}, +{"f":209,"b":[]}, +{"f":210,"b":[]},]; +export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index c27a85587..ceaaeb1a3 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7804546356201172]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.701602935791016]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.71019172668457]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5199708938598633]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.9317398071289]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5480680465698242]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.554281234741211]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.273308753967285]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.8753814697265625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.40983867645264]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[29.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5130691528320312]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.736143112182617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.813131332397461]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.107969284057617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.137581825256348]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1247739791870117]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.668036460876465]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7355756759643555]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.707991600036621]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.677685737609863]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.124281883239746]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6573028564453125]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7305736541748047]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6972951889038086]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.674309730529785]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5228166580200195]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.828743934631348]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.853344917297363]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.118180274963379]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.39214515686035]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.130523681640625]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.716960906982422]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7943506240844727]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7830543518066406]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.90111541748047]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5638313293457031]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.954111099243164]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.021417617797852]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4622535705566406]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.714426040649414]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[158.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324434280395508]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.462996482849121]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.562638282775879]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.427117347717285]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.9520902633667]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873327255249023]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.926417350769043]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.02712345123291]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.81550884246826]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.81212329864502]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6102790832519531]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8133621215820312]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8695192337036133]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.805999755859375]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.58242130279541]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9693546295166016]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.970414161682129]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.971555709838867]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.0195112228393555]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.955989837646484]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.061036109924316]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.67124080657959]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.875746726989746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37116622924805]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.15918731689453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.83461952209473]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.78805637359619]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.84860897064209]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.3020715713501]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.81596851348877]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6466579437255859]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.498262405395508]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527353286743164]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7978572845458984]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.282408714294434]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7144250869750977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6487512588500977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8291072845458984]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.557438850402832]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.016355514526367]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8701353073120117]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7321882247924805]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.816035270690918]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0977239608764648]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.59339427947998]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6688327789306641]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.670557975769043]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7514867782592773]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9825620651245117]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.584179878234863]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7170677185058594]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.533288955688477]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.564603805541992]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2497005462646484]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.277915954589844]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5033645629882812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.850752830505371]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8534669876098633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6313543319702148]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.648594856262207]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6040544509887695]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7080955505371094]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7008790969848633]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8054409027099609]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.81447124481201]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8540573120117188]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.365616798400879]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.400456428527832]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.478118896484375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.693777084350586]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[346.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5662965774536133]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2286481857299805]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.213926315307617]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7100896835327148]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.953502655029297]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.805506706237793]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.225713729858398]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.314657211303711]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3121767044067383]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.35826873779297]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7443227767944336]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.964658737182617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.985597610473633]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6676416397094727]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.838895797729492]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[168.7]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.624821662902832]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9079294204711914]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.951869010925293]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.684422492980957]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.05843448638916]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.6]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6143827438354492]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8971624374389648]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9390954971313477]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6891355514526367]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012824058532715]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.8]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6010408401489258]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.990011215209961]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.036379814147949]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6422033309936523]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.496575355529785]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6637563705444336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.671767234802246]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.705085754394531]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9576692581176758]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.76193714141846]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6486625671386719]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.666378974914551]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.765705108642578]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0226306915283203]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.158863067626953]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.223213195800781]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.164497375488281]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.164779663085938]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.134173393249512]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.93343734741211]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[984.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5754966735839844]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3913002014160156]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4268722534179688]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6977405548095703]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95158290863037]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5823783874511719]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1282949447631836]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1071624755859375]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7695455551147461]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.758095741271973]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6561355590820312]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.627976417541504]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.562768936157227]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9666309356689453]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.449618339538574]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.24592399597168]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.192009925842285]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.230036735534668]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.256852149963379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.08543586730957]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5869245529174805]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.182247161865234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.211800575256348]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.062032699584961]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.04022979736328]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7273960113525391]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9033660888671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.225467681884766]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2966690063476562]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.970210075378418]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2997455596923828]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.730719566345215]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.281462669372559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.125727653503418]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24367809295654]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291213989257812]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2711753845214844]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2019948959350586]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8175430297851562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.761988639831543]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6350555419921875]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.248970031738281]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.884618759155273]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9016351699829102]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.34021282196045]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5972061157226562]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.045897483825684]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.071386337280273]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1606311798095703]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1229887008667]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5451717376708984]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9681663513183594]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.066629409790039]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6433811187744141]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.880518913269043]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8460683822631836]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.643153190612793]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6214113235473633]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.073225975036621]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.009462356567383]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.622044563293457]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.002596855163574]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.010848045349121]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.835902214050293]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.299354553222656]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5836181640625]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7753381729125977]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8468399047851562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7773532867431641]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.121651649475098]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5896310806274414]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.289639472961426]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2942590713500977]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.697718620300293]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62725067138672]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6438417434692383]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.449915885925293]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.4791259765625]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0068578720092773]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12136268615723]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120527267456055]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.639345169067383]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.597149848937988]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2624378204345703]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27529335021973]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7621994018554688]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.204743385314941]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.142613410949707]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0129585266113281]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.105714797973633]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.346522331237793]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.221152305603027]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.326862335205078]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09367561340332]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.92218017578125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[629.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1626176834106445]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.758243560791016]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.336838722229004]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.6927289962768555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.66135883331299]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[172.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7741727828979492]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514687538146973]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.531018257141113]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.546525001525879]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.217732429504395]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808300018310547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8559751510620117]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8668041229248047]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8445272445678711]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.080493927001953]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5732936859130859]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.635763168334961]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6673450469970703]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7030305862426758]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.04368019104004]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.61370849609375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.043519973754883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.083294868469238]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7266397476196289]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.91557216644287]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8143367767333984]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.359827995300293]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3946762084960938]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3741464614868164]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8940372467041]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5458879470825195]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4669437408447266]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5476388931274414]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7141580581665039]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.016407012939453]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7609901428222656]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6951465606689453]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653345108032227]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.031198501586914]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.497085571289062]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8166971206665039]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1328773498535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.152883529663086]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.12255859375]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.638179779052734]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5943021774291992]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6553211212158203]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.596734046936035]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7271127700805664]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.3585844039917]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891357421875]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4300975799560547]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.464888572692871]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.756587028503418]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.3368558883667]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986108779907227]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.995802879333496]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0202550888061523]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7451982498168945]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.160560607910156]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559391975402832]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3419933319091797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.352231979370117]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7482967376708984]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.106847763061523]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5811967849731445]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.099721908569336]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.533857345581055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.157256126403809]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.772847175598145]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[480.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5696544647216797]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3488950729370117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3947219848632812]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350568771362305]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.2009334564209]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6427574157714844]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9780378341674805]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.41512393951416]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8950672149658203]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1475133895874]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716001510620117]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9543943405151367]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.990999221801758]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1730737686157227]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.811062812805176]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.845004081726074]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.797246932983398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.787343978881836]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314798355102539]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.49604606628418]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.1]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5517683029174805]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.006746292114258]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02640438079834]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.761540412902832]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.84206199645996]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6950721740722656]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5557785034179688]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5425310134887695]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9374370574951172]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.60407066345215]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.1]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3768415451049805]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9089555740356445]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.006411552429199]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.664393424987793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.281550407409668]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8808250427246094]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.412508964538574]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.379556655883789]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3287086486816406]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.82754898071289]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6093864440917969]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1005859375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1675643920898438]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8215188980102539]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.911052703857422]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6112041473388672]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.630006790161133]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6469058990478516]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8258380889892578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.059950828552246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5529890060424805]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6205806732177734]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6707963943481445]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7532625198364258]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.285937309265137]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6028232574462891]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3534278869628906]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3900232315063477]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7610569000244141]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.110946655273438]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7053070068359375]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.741999626159668]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819445610046387]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0216350555419922]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14742183685303]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[61.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6606159210205078]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.066756248474121]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.1287031173706055]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9392509460449219]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.17781448364258]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0705327987670898]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.213217735290527]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.171822547912598]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.850666046142578]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.49588871002197]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[97]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.493072509765625]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.979111671447754]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.988943099975586]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.267091751098633]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92032623291016]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2026329040527344]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.71860122680664]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.780943870544434]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1373291015625]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.16176223754883]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[236.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8456459045410156]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.642852783203125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.352056503295898]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.254793167114258]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14303493499756]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[366.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1720056533813477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5933122634887695]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.076066017150879]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9302043914794922]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.46361541748047]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1551103591918945]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.696261405944824]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.056138038635254]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9550657272338867]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.36069107055664]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1485328674316406]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.454543113708496]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.905866622924805]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8971290588378906]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.618470191955566]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149296760559082]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.548349380493164]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.022992134094238]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9739532470703125]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.693784713745117]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1119604110717773]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.776449203491211]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.215978622436523]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8903913497924805]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.485578536987305]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3924837112426758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.217677116394043]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.776643753051758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.790724754333496]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.65873908996582]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5546188354492188]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.266175270080566]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.719915390014648]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.327932357788086]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60484313964844]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.706192970275879]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.142668724060059]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.690890312194824]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5411376953125]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.52224922180176]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[339.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3005762100219727]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.664432525634766]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.321878433227539]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.131575584411621]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.59714126586914]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2187995910644531]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9862823486328125]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.48721981048584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9865007400512695]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.38824653625488]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4026451110839844]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433895111083984]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.923381805419922]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4295148849487305]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.440735816955566]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3411483764648438]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.627699851989746]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.318523406982422]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1759376525878906]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.23661422729492]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2366905212402344]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.465743064880371]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.834593772888184]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9212417602539062]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.453356742858887]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1553611755371094]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069391250610352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5186967849731445]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8899574279785156]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.145355224609375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[201.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2711639404296875]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.945793151855469]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.462956428527832]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.493075370788574]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38289165496826]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1685962677001953]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.165302276611328]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.766231536865234]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9219512939453125]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.0153112411499]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4591541290283203]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.295771598815918]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.019558906555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9407882690429688]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.012826919555664]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[288.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5745954513549805]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524754524230957]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.56618595123291]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.457036018371582]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.163437843322754]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5900392532348633]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5230064392089844]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6323060989379883]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6587820053100586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.013845443725586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5166263580322266]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.848897933959961]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7722158432006836]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8737955093383789]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.89602756500244]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189994812011719]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.743117332458496]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7696313858032227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9182825088500977]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807257652282715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5930547714233398]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56527042388916]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.614274024963379]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7581081390380859]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.025753021240234]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986251831054688]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7760190963745117]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7920351028442383]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8317422866821289]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.40744113922119]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6555957794189453]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3754215240478516]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3842382431030273]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0908498764038086]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.84324836730957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9399089813232422]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.937980651855469]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048296928405762]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.135258674621582]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.631184577941895]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9799919128417969]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.601199150085449]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6909961700439453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.193359375]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.856722831726074]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7831344604492188]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.507598876953125]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.20376205444336]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.345932006835938]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.56476402282715]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[383]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7422494888305664]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8279829025268555]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8233327865600586]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.529299736022949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.334200859069824]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5636606216430664]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7526893615722656]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760098457336426]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7322492599487305]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.45913600921631]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44667720794677734]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5003862380981445]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.515448570251465]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3591156005859375]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.981186866760254]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49529266357421875]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.724177360534668]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.772085189819336]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7226696014404297]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.072800636291504]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644826889038086]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9609222412109375]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0113658905029297]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8396015167236328]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.660969734191895]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5724029541015625]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8287076950073242]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8366403579711914]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6594877243041992]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.626521110534668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.753408432006836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.064512252807617]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140619277954102]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5818614959716797]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.95647621154785]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508296966552734]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.580999374389648]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.56385612487793]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0833606719970703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.512922286987305]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[112.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6940650939941406]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.597169876098633]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6483497619628906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.053060531616211]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.755897521972656]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7459735870361328]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2724952697753906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3015480041503906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3401260375976562]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.492534637451172]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6621389389038086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624574661254883]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.641482353210449]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8375263214111328]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.52980899810791]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5277957916259766]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7687768936157227]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8084239959716797]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.872105598449707]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.35142421722412]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6152744293212891]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.918811798095703]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.979991912841797]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4369192123413086]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.5925874710083]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7590389251708984]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.873154640197754]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.86092472076416]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.515194892883301]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.585633277893066]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3347587585449219]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1276721954345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1886863708496094]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7997112274169922]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.539783477783203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[175.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48917293548583984]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.166651725769043]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.193112373352051]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6436395645141602]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86898136138916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6073207855224609]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7855224609375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7842607498168945]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7987785339355469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.59042453765869]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6901874542236328]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8683900833129883]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8625049591064453]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8650588989257812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.65694522857666]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.4]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6036882400512695]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7007579803466797]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.730854034423828]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8720874786376953]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.16014575958252]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8477945327758789]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1807260513305664]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.205763816833496]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1345634460449219]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.75906753540039]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1450309753417969]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.065735816955566]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.735942840576172]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8616676330566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.863115310668945]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164.4]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46895599365234375]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9677743911743164]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.928619384765625]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6171340942382812]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013200759887695]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47638511657714844]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7882747650146484]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.800760269165039]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5741634368896484]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.478334426879883]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5358676910400391]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.742197036743164]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7609081268310547]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6370124816894531]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.09604549407959]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5011138916015625]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.886707305908203]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8896007537841797]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.967710494995117]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.35887145996094]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5606784820556641]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.077930450439453]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0020751953125]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6400337219238281]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.02220344543457]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5435400009155273]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4081945419311523]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.415799140930176]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6559877395629883]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.456475257873535]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6525955200195312]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.329913139343262]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.431464195251465]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9340553283691406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.395493507385254]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547258377075195]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8578271865844727]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.893484115600586]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.171834945678711]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.646581649780273]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.858922004699707]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.2211503982543945]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.294930458068848]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1289901733398438]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47651290893555]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6976604461669922]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1021785736083984]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1319971084594727]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0184268951416016]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.264480590820312]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8884353637695312]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.206464767456055]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.310001373291016]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3989458084106445]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.71572971343994]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6967668533325195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0440711975097656]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.049104690551758]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.017533302307129]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.606117248535156]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5344572067260742]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0962209701538086]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1608314514160156]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9999885559082031]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.329374313354492]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7229738235473633]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.952317237854004]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.981106758117676]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.804966926574707]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.926068305969238]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7915868759155273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.451281547546387]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.522219657897949]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.931109428405762]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.072813987731934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[254.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7813653945922852]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.571454048156738]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.818474769592285]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.123181343078613]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.289931297302246]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5997714996337891]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6279382705688477]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.648758888244629]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9460687637329102]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28592014312744]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.7]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6085071563720703]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.307554244995117]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.346816062927246]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.470423698425293]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.880990982055664]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214570999145508]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.381025314331055]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.412445068359375]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8747434616088867]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.216437339782715]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6295204162597656]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.458812713623047]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5467529296875]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8539962768554688]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.912774085998535]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873994827270508]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.84391975402832]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.586036682128906]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.7777156829834]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.78382110595703]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.581995964050293]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.834000587463379]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.868013381958008]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8090496063232422]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.783058166503906]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.326578140258789]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.403861045837402]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.421059608459473]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.734299659729004]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.573543548583984]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[286.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5573406219482422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.598541259765625]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6989078521728516]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.09844970703125]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.94937801361084]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9995946884155273]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.862215042114258]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.931148529052734]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.45145320892334]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.7168960571289]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[281.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7736759185791016]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.832524299621582]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.903874397277832]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9832029342651367]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.362706184387207]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[405.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8214540481567383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4175710678100586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4391775131225586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0100765228271484]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.646400451660156]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184892654418945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3724746704101562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3656005859375]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7752017974853516]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.36058521270752]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"01_run1k","values":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"02_replace1k","values":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"04_select1k","values":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"05_swap1k","values":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"07_create10k","values":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9189090728759766]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[29.282416343688965]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[29.73321533203125]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6006050109863281]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[615.4609441757202]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[95.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.554840087890625]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8832197189331055]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8928709030151367]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6064558029174805]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.304900169372559]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7556791305541992]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3518762588500977]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.403101921081543]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9692201614379883]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032843589782715]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[31.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5912494659423828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.21185302734375]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2321176528930664]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7253131866455078]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.117511749267578]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8239517211914062]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32576847076416]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.9292497634887695]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.437203407287598]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.644211769104004]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6649494171142578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742987632751465]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.677057266235352]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.68896484375]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.78525447845459]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6475505828857422]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6502647399902344]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.714531898498535]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9943656921386719]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.85181999206543]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741670608520508]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.3793487548828125]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.447455406188965]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.195226669311523]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.441566467285156]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6582546234130859]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.616334915161133]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.617406845092773]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9659233093261719]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44912242889404]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7284231185913086]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9187450408935547]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.177557945251465]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2905149459838867]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.940454483032227]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8502740859985352]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.832951545715332]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.212776184082031]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.941891670227051]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.32406997680664]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[127.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[131.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"01_run1k","values":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"02_replace1k","values":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"07_create10k","values":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6084270477294922]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.09062385559082]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.118589401245117]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2077388763427734]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.88510036468506]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8438358306884766]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634610176086426]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.601742744445801]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.4910831451416016]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.837151527404785]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.381065368652344]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.913834571838379]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.110092163085938]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.658964157104492]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.854068756103516]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1073.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5340757369995117]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7833290100097656]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8382272720336914]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.783665657043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.119430541992188]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7088127136230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.159454345703125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.144804000854492]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8786163330078125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.776725769042969]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764277458190918]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.491896629333496]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.561244010925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9316511154174805]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64506435394287]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615772247314453]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.752252578735352]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.325299263000488]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.695610046386719]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.64689350128174]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[174.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6857204437255859]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.820673942565918]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8494300842285156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8222379684448242]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.926042556762695]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5542526245117188]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6002445220947266]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.618154525756836]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6867952346801758]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.815208435058594]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5163745880126953]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0778989791870117]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.322443962097168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6873941421508789]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.998469352722168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5523490905761719]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8252363204956055]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.750547409057617]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8201675415039062]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.75911235809326]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5964336395263672]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9866714477539062]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0264739990234375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7047748565673828]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.15754222869873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7415637969970703]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9501514434814453]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9785375595092773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9895973205566406]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.885876655578613]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.2]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5828189849853516]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.123703002929688]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.548064231872559]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.164665222167969]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.81257915496826]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[479.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.8413171768188477]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.800344467163086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.78706169128418]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314901351928711]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.51369857788086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[284.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6319818496704102]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.47098445892334]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.44230842590332]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4199934005737305]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.68405723571777]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.395395278930664]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.846027374267578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048587799072266]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.613348960876465]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.197758674621582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.999262809753418]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.219165802001953]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.098799705505371]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.778217315673828]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14489555358887]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2025566101074219]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.733373641967773]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.754152297973633]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.145580291748047]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.02319049835205]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[240.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.766378402709961]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.354438781738281]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.362306594848633]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7009496688842773]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.114625930786133]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.583247184753418]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.496914863586426]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5447378158569336]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4642763137817383]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07200813293457]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.661443710327148]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.32093048095703]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.726356506347656]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.66411209106445]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.25845336914062]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2470.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741832733154297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9774398803710938]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0305938720703125]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8632621765136719]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.295598030090332]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6220617294311523]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7417993545532227]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7256689071655273]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9008922576904297]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.80637264251709]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8953609466552734]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.512033462524414]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.69873046875]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0992107391357422]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.730972290039062]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9959030151367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.122137069702148]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.189812660217285]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2651891708374023]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.2808198928833]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838872909545898]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.976861000061035]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.282492637634277]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.943842887878418]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.05252742767334]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[565.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5232305526733398]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9907760620117188]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1786909103393555]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6416788101196289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.223931312561035]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6444692611694336]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.960765838623047]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9702701568603516]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.9423599243164062]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.51907539367676]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"01_run1k","values":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6174411773681641]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.251507759094238]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.246901512145996]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.915827751159668]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[85.78846454620361]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7378768920898438]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2272682189941406]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.298114776611328]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.275012969970703]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.61553955078125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6167697906494141]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.908583641052246]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.976996421813965]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4535770416259766]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580761909484863]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6071262359619141]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.768472671508789]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7811479568481445]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7974891662597656]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.545183181762695]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.2]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6553411483764648]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6277685165405273]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6073875427246094]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7939624786376953]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.214959144592285]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8985929489135742]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1742172241210938]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1948862075805664]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1344852447509766]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.721461296081543]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4622774124145508]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8840656280517578]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9048471450805664]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.997834205627441]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4572582244873047]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016714096069336]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8851909637451172]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950393676757812]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.920961380004883]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5072345733642578]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7877740859985352]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7936010360717773]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5872926712036133]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.481759071350098]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5631475448608398]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9572277069091797]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9413328170776367]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7309656143188477]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.520204544067383]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8555831909179688]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8237686157226562]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.898469924926758]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1145868301391602]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.618300437927246]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.9]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6835517883300781]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0817203521728516]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1073837280273438]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9728012084960938]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.215370178222656]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6856794357299805]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9568729400634766]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9776878356933594]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9556646347045898]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.142014503479004]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}}] \ No newline at end of file +[{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[26,26.6,25.9,25.7,26.2,25,25.9,26,25.9,25.9,26,26,25.6,26,25.8],"script":[2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3],"paint":[23.2,23.7,23.1,22.8,23.4,22.3,23.1,23.1,23.1,23.1,23.2,23.2,22.7,23.2,23]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[29.4,30.1,29.9,29.3,30.2,29.8,30.9,30.7,29.6,30.7,30.2,30.3,29.5,30.4,30],"script":[5.1,5.3,5.3,5.2,5.1,5,5.2,5.3,5.1,5.3,5.3,5.2,4.9,5.2,5.1],"paint":[23.6,24.2,23.9,23.5,24.4,24.3,25,24.8,23.9,24.7,24.3,24.5,24.1,24.5,24.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.6,16.8,16.4,18.6,17.1,16.1,17.1,16.5,17.2,17,17.7,17.2,17.5,16.7,17.2],"script":[1.1,1.2,0.8,1.4,1.4,1.2,1.1,1.2,1.2,1.3,1.5,0.8,1.6,1.1,1.5],"paint":[13.6,13.6,14,15.6,14.8,13.5,14.7,14.1,14.2,13.8,13.9,13.9,14.3,13.4,13.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.6,4.3,3.9,3.9,4,3.9,4.3,4.3,5.2,4,4.1,3.9,4,3.6,4.1,4.7,4.1,4.4,4.7,4.3,4.3,4.9,4.3],"script":[0.6,0.8,0.7,1.1,0.2,0.9,0.7,0.5,0.8,0.7,1,0.7,0.8,0.7,1,0.9,0.2,0.9,0.7,0.2,0.8,0.1,0.2,0.5,0.9],"paint":[2.6,2.8,2.2,2.3,2.9,2.2,3.1,2.3,2.5,2.6,2.9,2.3,2.6,2.2,2.9,2,3.2,3,2.4,3.5,3.1,3.1,2.8,3.5,2.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[20.4,18.5,19.5,19.5,19.8,19.6,19.8,19.8,19.2,19.4,20.1,19.9,19.9,20.1,18.1],"script":[1.3,0.6,0.2,0.2,0.8,0.5,1.3,0.4,0.9,0.5,1.2,0.8,0.5,0.2,0.5],"paint":[17.3,15.9,17.1,17,16.8,16.8,16.2,17.1,16.2,17.3,15.8,16.9,17.4,17.8,15.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13.4,13.6,13.8,15.1,15.2,13.7,13.7,13.7,14.8,13.7,13.8,13.4,13.7,14.1],"script":[0.4,0.2,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.5,0.2],"paint":[11.8,12.2,11.9,12.3,13.3,13.4,12.4,12.6,12.4,13.6,12.1,12.6,12.4,12.3,12.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[280.7,285.7,280.3,280.7,283.6,281.9,283.5,279.9,284.9,280.6,282.4,282.2,282,280.6,279.9],"script":[28.6,28.4,28.2,28.3,28.4,28.6,28.8,28.4,28.4,27.7,29,28.2,28.8,28.1,28],"paint":[242.3,246.9,243.2,243,244.6,243.5,245.1,242.3,247.4,243.8,244,244.8,243.5,242.9,242.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31,31,31.6,31.9,30.8,31.6,30.7,30.7,31.4,31.5,31.8,33.4,31.7,31.4],"script":[2.2,2.2,2.2,2.1,2.3,2.2,2.2,2.1,2.3,2.2,2.2,2.2,2.2,2.1,2.2],"paint":[28.3,27.9,27.8,28.5,28.4,27.8,28.4,27.8,27.5,28.2,28.3,28.5,29.9,28.5,28.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.7,13.2,13.6,12.4,13.1,13.7,13.7,13.1,13.3,13.4,12.5,13.8,13.1,13.6],"script":[9.9,10.2,10.2,10.7,10.1,10.6,10.5,10.4,10.5,10.6,10.6,10.1,11.4,10,10.2],"paint":[3,2.3,2.7,1.2,0.8,1.7,2.4,2.3,1.3,1.5,2.1,0.7,0.9,1.2,2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6549615859985352]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.52382755279541]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5806798934936523]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8013334274291992]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.29527473449707]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,25.2,25.3,25.5,25.5,25.7,26,26,26,25.9,25.9,26,25.6,25.6,25.8],"script":[1.9,1.8,1.9,2,1.9,2,1.9,1.9,2,1.9,2,1.9,1.9,1.9,1.9],"paint":[22.4,23,22.9,23.1,23.1,23.3,23.5,23.6,23.6,23.5,23.5,23.6,23.2,23.1,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.4,29.3,29.2,29.4,29,30.2,30.3,29.9,29.9,30,30.2,29.5,29.6,29.8],"script":[4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.5,4.5,4.6,4.7,4.6,4.2,4.5,4.3],"paint":[25.1,24.4,24.4,24.2,24.6,24.2,25.2,25.2,24.8,24.9,24.9,25.1,24.9,24.5,25]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.8,17.6,17.3,17.7,16,16.8,15.5,17.9,17.1,16.1,17.3,16.9,16.2,17.3,17.2],"script":[1.9,1.5,1.6,1.4,1,1.6,1.5,1.6,1.3,1.9,0.9,1.5,1.7,1.6,2.2],"paint":[13.9,13.1,13.6,13.8,12.8,13.2,12.9,14.3,13.9,13.1,14.1,13.9,12.9,13.1,13.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.9,5.2,4.1,4.2,4.8,5.4,4.6,3.6,5.2,5.3,5,4.7,4.8,4.1,4.7,4.6,4,4.2,5.1,5.3,4.5,4.1,5,5.1],"script":[0.8,1,1,0.5,1,1,1.2,0.9,0.2,1.2,0.8,1,0.5,1.1,0.9,0.5,0.8,0.8,0.9,1.1,1.6,1,0.7,0.8,1.2],"paint":[3.8,2.9,2.9,3.4,2.5,3.1,3.9,3.3,3.2,2.5,2.7,3.8,3.4,2.9,2.6,3.4,3,2.2,2.4,3.2,3,2.3,2.2,3.1,2.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[21.4,20.2,18.9,19.9,20.1,20.1,20.7,20.9,20.8,21.3,18.8,19.6,21.6,18.1,20],"script":[1.3,0.9,1.4,1.2,0.8,1.3,1.5,1.3,1.3,1.3,1.2,1.4,1.7,0.8,1.8],"paint":[18,17.1,15.5,17.5,17.5,17.3,17.9,18,16.9,17.8,16.1,15.9,17.4,15.4,16.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.6,14.6,14.1,14.3,14.2,15.3,14.7,15.5,16,13.4,13.8,13.9,14.1,14.8],"script":[0.5,0.8,0.5,0.5,0.5,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[12.8,12.8,12.9,12.1,13,12.4,13.6,13.4,13.8,14.3,11.8,11.9,12.4,12.7,13]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[289.1,287.9,286,284.8,287,299.6,289.9,291,296.3,288.6,286,288.8,289.7,287.8,287.1],"script":[27.7,28.2,28.2,27.8,27.6,28.2,28.2,28.4,28.5,28.7,28.2,28.3,28.4,28.2,27.9],"paint":[252.1,250.8,248.8,247.9,250.4,262.2,252.2,253.5,259,251,248.4,251.2,251.9,250.4,250.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.5,32.8,33.3,32.1,32.7,33.6,32.4,33.2,32.6,33.2,32.7,32.1,33.2,33.3],"script":[2.3,2.2,2.2,2.3,2.3,2.2,2.3,2.4,2.4,2.4,2.3,2.2,2.2,2.3,2.2],"paint":[29.7,29.1,29.4,29.8,28.9,29.4,30.2,29.1,29.7,29.3,29.7,29.5,28.9,29.8,29.9]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.2,14.4,14.7,14.9,14.3,14.5,14.7,14.5,14.1,14.5,14.4,13.9,13.8,14.5],"script":[11.2,11.2,11.5,11.1,11.6,11.1,11.2,11.6,11.4,11.6,11.3,10.9,10.9,10.7,11.7],"paint":[0.8,1.9,2.6,2.1,1.8,1.7,1.8,2.2,1.3,1.7,0.8,1.8,1.7,2,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902118682861328]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2837743759155273]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3049917221069336]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7148208618164062]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62580394744873]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.4,25.9,25.2,25.8,25.4,26,26.1,25,25.7,25.5,25.9,25.2,25.9,25.5],"script":[2.4,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.5],"paint":[23.1,22.6,23.2,22.5,23,22.7,23.1,23.4,22.3,22.9,22.8,23.2,22.4,23,22.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.6,28.8,29,28.2,29,28.5,28.4,29.6,29.5,28,28.6,28.9,28.7],"script":[4.5,4.7,4.5,4.7,4.6,4.6,4.8,4.7,4.7,4.8,4.9,4.4,4.9,4.6,4.6],"paint":[23.5,23.1,23.7,23.7,23.9,23.1,23.8,23.4,23.2,24.3,24.2,23.2,23.3,23.9,23.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.2,17.6,15.4,17,14.9,15.4,15.3,15.5,14.9,16.4,15.4,15.1,15.2,14.9,17.8],"script":[0.8,1,1,1,0.6,0.8,0.8,1.1,0.7,0.8,0.8,0.9,1.1,0.2,1.2],"paint":[14,14.9,13,14,12.2,13.6,13.2,12.6,13.1,13.8,13.1,12.3,12.6,12.6,14.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[6.2,4.3,3.9,4.1,4.5,4.8,5,4.3,4.1,4.1,4,4.5,4.1,4.8,4.9,4.7,4.1,3.6,4.5,3.9,4.3,4.1,4.2,4.5,4.3],"script":[1.1,1,1.1,1.3,1.2,1.2,0.6,1,0.6,0.8,0.8,1,1.1,1.4,0.8,1.2,1.1,0.5,1.2,1,0.8,1.2,1,0.8,0.9],"paint":[4.9,2.9,2,1.8,2.3,2.4,3.6,3.2,2.3,2.3,2.6,3.3,2.3,2,3.3,2.7,2.6,2.4,2.5,2.2,3,2.2,2.6,2.9,2.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[19.8,20.4,19.3,18.3,17.4,19.1,19.7,20.6,19.6,21,18.8,19.8,19.9,18.4,20.4],"script":[1.1,1.2,0.9,1.1,0.8,0.8,0.8,0.8,1.4,0.8,1.3,1.2,1.1,1.1,1.1],"paint":[16.3,16.8,17.3,16.6,15.2,16.7,16.3,18,16.2,18.2,15.9,17.2,16.6,15.4,17.4]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,14.5,14,13.2,14,13.7,13.1,13.8,13.6,13.8,13.2,13.3,14.1,13.9,13.1],"script":[0.2,0.5,0.2,0.2,0.3,0.3,0.2,0.4,0.3,0.4,0.5,0.5,0.5,0.4,0.4],"paint":[11.6,13.1,12.8,12.3,12.6,12.3,12,12.8,12.4,12.4,11.8,12.1,12.4,12.4,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[285.7,278.3,279.3,279.7,279.9,279.5,278.9,279.3,288.4,283.4,284.2,279.4,282.6,282.2,281.7],"script":[27,27.2,26.7,25.8,27,26.7,26.9,26.3,27,26.1,26.4,26.6,26.2,27,26.9],"paint":[249.7,241.9,243.9,245,243.8,243.5,242.7,243.8,251.2,247.7,247.7,243.7,246.5,245.9,245.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.4,31.3,31.7,31.4,30.9,31.8,31,31.5,31.1,31.5,31.6,31.8,31.7],"script":[2.6,2.6,2.4,2.6,2.5,2.6,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5],"paint":[28.1,28.3,28,27.8,28.1,27.8,27.6,28.3,27.6,28,27.6,28.1,28.1,28.2,28]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,14.1,13.5,14.3,13.7,13.8,13.4,13.8,13,14,14.1,13.5,14.5,14.7,13.2],"script":[10.7,11.2,10.7,11.2,11.4,10.6,10.6,10.6,10.5,11.3,11.1,11,11.2,11.6,10.8],"paint":[1.7,1.3,1.9,1.1,0.8,1.6,1.2,2.9,0.8,1.7,2,1.6,1.7,2.1,1.2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.609257698059082]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.469059944152832]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.495968818664551]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7314004898071289]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.887676239013672]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.2,25.8,26.6,25.8,25.2,26.2,26.3,26.2,27.1,26.1,25.7,26,26.3,26,25.9],"script":[2.7,2.6,2.5,2.7,2.6,2.5,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5],"paint":[23,22.8,23.6,22.6,22.1,23.2,23.1,23.2,24.1,23.2,22.8,23,23.4,23,23]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.2,29.9,30.4,30.4,29.6,30.8,30,29.5,29.8,30,30.4,30.1,30.3,30.2],"script":[5.7,5.4,5.4,5.5,5.6,5.2,5.6,5.3,5.7,5.4,5.6,5.5,5.6,5.5,5.6],"paint":[24.1,24.2,23.9,24.2,24.2,23.7,24.5,24.1,23.1,23.7,23.7,24.2,23.9,24.1,23.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,22.4,17.9,16.3,15.8,16.7,17.2,17.3,16,17.5,16.5,17.1,16.8,16.3,17.2],"script":[1.3,1.9,1.4,0.8,1.1,0.9,1.4,1.3,1.4,1.4,1.1,0.8,1.7,0.9,1.5],"paint":[14.6,17.3,13.8,13.7,12.5,13.4,13.1,13.8,12.3,13.6,14,14.6,13,14.2,13.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.9,4,4,4.4,3.8,4.5,4,4.3,4.9,3.6,4.1,4.3,4.2,3.7,4.4,4.4,3.9,4.4,4.6,3.7,4.5,4.9,4.9,4.5],"script":[1,1.1,0.1,0.9,0.4,0.6,0.8,0.7,0.5,1.4,0.8,0.7,0.7,0.8,0.2,0.8,0.9,0.8,0.7,0.5,0.5,1,1,0.2,0.7],"paint":[2.3,3.3,3.3,2.3,3.5,2.5,3.5,2.6,2.3,1.9,2,1.9,2.8,2.8,2.4,2.4,2.2,2.3,2.5,3.8,2.5,2.8,3,3.2,3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[20.5,21.5,20.8,21.4,20.1,20.8,21.9,20.4,20,21.5,21.4,22.4,20.5,21.4,19.5],"script":[1.4,1.7,1.8,1.8,1.6,1.6,1.9,1.8,1.8,1.4,1.5,2,1.6,2,1.3],"paint":[15.8,17.7,16.7,18.2,16.9,16.1,18.2,16.8,16.3,18.4,18.3,18.3,17.1,17.4,16.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.4,14.7,14.3,14.6,14.3,15,13.8,14.3,14.2,13.5,14.8,16.3,15.3,15.4,15.8],"script":[0.6,0.6,0.6,0.5,0.7,0.5,0.6,0.5,0.8,0.6,0.6,0.5,0.7,0.7,0.6],"paint":[14,13.2,12.9,13,12.5,13.4,12.3,13,12.3,12,13.3,14.6,13.2,13.6,13.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[286.9,283.7,282.3,284.2,282.5,283.6,285.1,284.2,283,284.8,283.6,284.4,285.2,283.4,298.7],"script":[31.4,30.4,30.9,30.9,30.6,30.8,31.2,31,30.8,30.8,31.2,31.4,31.3,31.2,30.8],"paint":[246.2,244.2,242.1,244.1,242.5,243.5,244.6,243.9,243.2,244.5,243.2,243.6,245,243.5,258.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,32.1,31.5,32.5,34.1,31.5,32.2,31.9,32.1,31.9,31.4,32.5,32.1,32.3,32.3],"script":[3.1,3,3,3,3.3,3,3.2,3.1,3,3.1,3.1,3,3,3.2,2.9],"paint":[27.7,28.1,27.6,28.2,29.3,27.5,28,27.7,28,28,27.4,28.3,28.1,28.1,28.1]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,14.5,14.7,14.1,16.4,16,16.9,14.5,14.7,16.4,14.5,15.2,16.7,17.2,16.3],"script":[13.6,11.9,12.1,11.3,13.5,13.6,14.1,11.6,11.6,13.5,11.5,12.3,13.9,14.1,13.9],"paint":[0.9,2,1.6,2,1.4,0.7,2.2,1.5,1.9,2.1,2.3,1,1.1,1.7,0.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5569972991943359]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7348203659057617]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.796039581298828]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7327775955200195]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.08317279815674]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.2,25.3,27.1,25.9,26.1,26,25.8,25.4,27.7,26.4,25.7,26,26.1,26.2],"script":[2.4,2.5,2.4,2.6,2.6,2.6,2.4,2.4,2.5,2.6,2.6,2.4,2.5,2.4,2.6],"paint":[23.3,22.4,22.5,24,22.8,23.1,23.2,23,22.5,24.7,23.4,22.9,23,23.3,23.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[31.3,31.1,31.1,30.2,30.1,29.9,30.8,31.1,30.9,31.3,29.7,30.3,30.7,31.1,30.3],"script":[5.6,6,5.9,5.9,5.8,5.3,5.7,5.8,5.8,5.8,5.4,5.6,6.1,5.8,5.7],"paint":[25,24.4,24.4,23.6,23.8,23.9,24.4,24.6,24.4,24.7,23.7,24,24,24.7,23.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.8,17.5,16.1,17.5,16.4,17.4,17.8,18.7,18.6,18.5,17.2,16.5,16.3,17],"script":[1.5,1.9,1.5,0.9,1.3,1.5,1.3,1.8,1.8,2,1.4,2.1,1.5,1.5,1.5],"paint":[13.9,13.8,14.7,13.1,13.5,13.3,13.3,13.5,14.4,14.6,15,13.3,14,12.7,12.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.8,4.6,5.3,5.4,4.5,4.8,4.4,4.5,4.8,4.9,4.5,5.3,4.8,5.8,4.5,4.7,5,4.9,4.9,4.9,4.4,6.1,4.4,4.4],"script":[0.9,1.3,1.2,1,1.3,0.9,1.5,1.1,1.2,0.8,1.4,1.1,1.4,1.2,1.8,1.4,1.2,1.1,1.3,0.8,1.1,0.9,1.1,0.9,1.1],"paint":[3.1,2.4,1.9,2.7,3,3.4,2.6,2.7,2,3.2,2.7,2.9,2.8,2.3,2.9,2.3,2.7,3,2.5,2.9,3,2.7,4.4,2.7,2.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20.3,19.7,19.3,20.6,21.6,21.4,20.7,20.1,20.8,20.4,20.9,20,21.1,21.2],"script":[1.1,1.1,0.9,1.8,1.5,1,1.2,1.7,1,1.1,1.5,1.3,1.3,1.4,1.5],"paint":[17.8,16.7,16.1,16.3,16.7,19.1,18.6,16.4,17.4,17.8,16.8,16.6,17.2,16.7,17.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,14.2,14.2,14.2,14.3,13.6,13.8,14.5,14.9,14.7,13.7,13.2,13.9,14.5,14.1],"script":[0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.6,0.7],"paint":[12.9,12.6,12.5,12.4,12.9,12,12.6,13.1,13.6,13,12.1,11.8,12.4,13,12.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[282.3,284.6,284.2,282.9,281.4,286.3,282.1,285.4,288.9,281,283.3,282.7,286.8,290.3,287.7],"script":[29.7,29.4,30.3,30,29.8,30.1,29.6,29.7,30.6,29,29.5,29.5,32.6,30.5,29.4],"paint":[243.5,245.9,244.8,243.4,242.2,246.7,243.4,246,249.2,242.9,244.5,243.6,245.1,250,248.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,31.6,31.4,32,31.9,31.5,32.2,31.5,31.9,32.1,31.5,31.7,32,32.6,31.9],"script":[2.7,2.8,2.7,2.7,2.8,2.7,2.9,3,2.8,2.6,2.6,2.7,2.8,2.7,2.7],"paint":[28.3,27.8,27.7,28.3,28.2,27.8,28.3,27.5,28.2,28.6,28,27.9,28.2,28.9,28.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,14.4,15,14.7,14.6,15,15,15.1,14.7,14.9,14.4,15.1,14.9,14.3,15.8],"script":[11.7,11.6,11.5,12.1,11.9,11.8,11.8,11.8,11.7,11.7,11.4,11.9,12,11.3,12.2],"paint":[2,1.6,1.7,1.6,2.4,1.8,1.7,1.7,1.8,1.7,1.2,2.6,1.8,2,1.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6012802124023438]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.76639461517334]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.810731887817383]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8781604766845703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.33494758605957]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.6,24.7,24.8,23.8,23.9,24.5,24.3,24.3,24.1,24.7,23.9,24.6,24.3,25],"script":[1.4,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.5,1.4,1.3,1.4,1.5,1.4,1.4],"paint":[22.7,22.7,22.9,22.8,22,22.1,22.8,22.5,22.4,22.3,22.8,22.1,22.6,22.5,23.1]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27.6,28,27.5,27.6,27.3,27.9,27.4,27.8,28,27.4,28.6,27.5,27.8,27.9],"script":[3.4,3.6,3.6,3.4,3.7,3.4,3.5,3.5,3.6,3.5,3.7,3.7,3.6,3.6,3.6],"paint":[23,23.6,23.9,23.6,23.4,23.3,23.9,23.5,23.7,23.9,23.2,24.3,23.5,23.7,23.7]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,17.5,14.8,16.3,15.6,15.9,17.8,15.9,15.3,15.9,14.3,19,15.3,15.6,16],"script":[0.8,0.9,0.1,0.8,0.6,0.5,0.8,0.8,0.7,0.5,0.6,0.5,0.8,1,1.1],"paint":[13,14.6,12.3,13.4,13.2,13.5,14.4,14,13,14.2,11.9,14.9,13.1,13,13.5]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.5,4.1,4.1,3.8,4.7,4.3,3.8,3.6,3.9,3.8,4.3,4.2,5.2,3.9,4.1,3.6,3.6,3.9,3.6,3.8,3.9,4.2,4.2,4.2],"script":[0.1,0.1,0.2,0.5,0.6,0.7,0.7,0.7,0.5,0.4,0.7,0.4,0.6,0.7,0.1,0.4,0.7,0.5,0.1,0.3,0.6,0.1,0.6,0.7,0.4],"paint":[2.9,2.5,3,3.5,2.8,3.5,2.8,1.8,2.2,2.7,2.4,2.7,2.8,3.3,2.7,3.5,2.1,2.5,2.9,2,2.5,3.6,2.6,2.9,3]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[17.4,18.3,18.6,17.4,17.7,18.9,23.2,17.6,17.8,18.4,19.2,19,18.6,18.1,16.8],"script":[0.1,0.6,0.1,0.1,0.6,0.6,0.1,0.1,0.8,0.7,0.1,0.8,0.1,0.1,0.1],"paint":[16.2,16.2,16.6,15,15.1,16.7,19.8,15.9,15.1,15.7,16.4,16.5,16.8,16.2,15.5]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.3,13.8,14.4,13.9,14.6,14.4,14.5,14.3,13.8,14.3,14.5,14.5,13.2,14.3,14.1],"script":[0.4,0.4,0.2,0.3,0.2,0.4,0.4,0.4,0.4,0.2,0.4,0.2,0.2,0.4,0.2],"paint":[13.8,12.4,13.3,12.4,13.1,12.7,12.7,12.9,12.2,12.9,13,13.1,12.1,12.9,12.9]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[264.3,261.7,262.3,262.3,261.5,267.4,263.5,263.6,264.6,261.5,262,266.7,261.6,263.5,261.7],"script":[15.4,15.6,15.6,15.7,15.7,15.8,15.7,15.9,15.2,15.6,15.4,16,15.5,15.6,15.7],"paint":[240.2,237.3,237.5,237.7,236.6,242.7,238.6,238.5,240.5,236.9,237.3,241.9,236.8,238.8,237]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,30.5,30.8,30.3,30.9,30.6,30.2,30.4,30.6,30.4,30.6,30.6,31.5,30.4,30.6],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.5,1.4,1.5,1.4,1.5],"paint":[27.9,28.1,28.4,27.8,28.5,28.2,27.7,28.1,28.2,28,28.2,28.2,28.8,28,28.1]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.1,12.7,13,12.5,12.9,13.3,12.5,13.4,12.5,12.3,12.8,13.1,13,13.4],"script":[10.4,9.8,9.9,10.1,9.7,10.1,9.7,9.7,10.7,9.7,9.4,9.8,10.3,10.4,10.1],"paint":[1.2,2.4,1.4,1.1,1.6,1.7,2.4,0.9,1.5,1.6,2.6,1.7,1.6,0.7,1.6]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490627288818359]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8997936248779297]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9383211135864258]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012947082519531]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.4,25.3,25.2,24.8,25.3,25.1,25,25.4,25.5,25.3,24.8,25.1,25,25],"script":[1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.4,1.3,1.3],"paint":[23.5,23.6,23.5,23.4,23.1,23.6,23.4,23.2,23.7,23.7,23.4,23.1,23.2,23.2,23.3]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.1,28.5,27.9,28.7,28.5,29.1,29.1,28.3,29.1,29.4,29.4,28.3,29.3,28.8],"script":[3.4,3.4,3.3,3.5,3.6,3.6,3.6,3.8,3.6,3.6,3.7,3.7,3.5,3.6,3.7],"paint":[24.7,24.2,24.6,24,24.4,24.4,25,24.8,24.3,25,25.2,25.2,24.3,25.1,24.7]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,17.7,17.2,18.6,17.2,16.1,16.4,16,16.2,15.9,15.4,16.2,16.5,15.1,17],"script":[0.9,0.3,0.7,0.7,0.1,0.6,0.1,0.1,0.8,0.8,0.1,0.7,0.4,0.1,0.5],"paint":[14.9,15.1,14.3,15.6,15.6,13.2,14.5,13.8,13.3,12.7,13.6,13.8,13.9,12.9,14.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[4,3.8,4.3,3,3.8,3.8,3.4,3.9,3.9,3.9,4.2,3.9,3.8,3.4,3.1,4.4,4,6,3.1,3.9,4,3.7,3.5,3.8,3.5],"script":[0,0.3,0.7,0.2,0.2,0.7,0,0.1,0.4,0,0,0.1,0.1,0,0,0,0.7,0.1,0,0,0,0,0,0.5,0.1],"paint":[2.1,2.4,3.4,2.3,3.1,2.6,2.6,2.9,2.7,2.9,2.8,3.4,2.2,2.6,2,3,2.3,4.5,2.5,2.9,3.4,2.7,3.3,2.7,2]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.6,19.8,20.2,18.5,19.1,20.6,19,20.4,20.5,20.1,20.1,18.8,18.9,19],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.8,0.7,0.5,0.4,0.1],"paint":[16.7,17.4,17.8,17.4,16.2,16.6,18.1,17.4,18.8,18,17.5,17.4,15.8,17.4,16.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.9,13.6,14.6,14,13.8,13.5,13.7,13.7,13,14.4,14.2,13.8,14.1,13.5,13.2],"script":[0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3,0.2],"paint":[13.5,12.7,13.4,12.6,12.8,12.6,12.6,12.9,11.9,13.6,13.1,12.7,13,12.3,12.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[269.8,271.7,268.8,268.5,267.7,268.3,267.3,271.4,268.7,268.3,270.3,268.6,267.8,279.4,278.3],"script":[14,14,13.6,13.7,13.9,13.5,13.8,13.8,13.3,13.7,13.9,13.5,13.9,13.8,13.9],"paint":[246.7,248.4,246,245.3,244.4,245.7,244.4,248.1,246.2,245.3,247.2,245.5,244.5,255.5,254.7]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.2,30,30,30.2,30.6,31.2,30.4,30.3,30.5,30.7,30.9,30.7,30.6,30.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[27.6,27.9,27.8,27.7,27.7,28.4,28.8,27.9,28,28.2,28.3,28.3,28.4,28.2,28.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13.5,12.1,12.3,14.1,13.8,12.9,13,13.8,12.6,13.1,12.7,13.4,12.4,12.6],"script":[10.2,10.2,10,9.4,10.8,10.6,10.3,9.8,10.2,9.7,10.3,10.1,10.5,9.5,9.8],"paint":[2,2,0.9,1.6,1.8,1.3,1.9,1.9,1.6,1.7,0.9,1.5,1.8,1.5,1.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4733724594116211]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7887449264526367]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8046636581420898]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5892019271850586]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.475665092468262]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}}] \ No newline at end of file From d40dd0dbaf859c5eff661f502ab39b20450db698 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sun, 21 Sep 2025 23:48:20 +0100 Subject: [PATCH 13/39] opps --- webdriver-ts-results/src/results.ts | 424 ++++++++++++++-------------- webdriver-ts/results.json | 2 +- 2 files changed, 213 insertions(+), 213 deletions(-) diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index f632d0075..2bc1da4aa 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -1,216 +1,216 @@ import {RawResult} from './Common'; export const results: RawResult[]=[ -{"f":0,"b":[]}, -{"f":1,"b":[]}, -{"f":2,"b":[]}, -{"f":3,"b":[]}, -{"f":4,"b":[]}, -{"f":5,"b":[]}, -{"f":6,"b":[]}, -{"f":7,"b":[]}, -{"f":8,"b":[]}, -{"f":9,"b":[]}, -{"f":10,"b":[]}, -{"f":11,"b":[]}, -{"f":12,"b":[]}, -{"f":13,"b":[]}, -{"f":14,"b":[{"b":0,"v":{"total":[26,26.6,25.9,25.7,26.2,25,25.9,26,25.9,25.9,26,26,25.6,26,25.8],"script":[2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3],"paint":[23.2,23.7,23.1,22.8,23.4,22.3,23.1,23.1,23.1,23.1,23.2,23.2,22.7,23.2,23]}},{"b":1,"v":{"total":[29.4,30.1,29.9,29.3,30.2,29.8,30.9,30.7,29.6,30.7,30.2,30.3,29.5,30.4,30],"script":[5.1,5.3,5.3,5.2,5.1,5,5.2,5.3,5.1,5.3,5.3,5.2,4.9,5.2,5.1],"paint":[23.6,24.2,23.9,23.5,24.4,24.3,25,24.8,23.9,24.7,24.3,24.5,24.1,24.5,24.2]}},{"b":2,"v":{"total":[16.6,16.8,16.4,18.6,17.1,16.1,17.1,16.5,17.2,17,17.7,17.2,17.5,16.7,17.2],"script":[1.1,1.2,0.8,1.4,1.4,1.2,1.1,1.2,1.2,1.3,1.5,0.8,1.6,1.1,1.5],"paint":[13.6,13.6,14,15.6,14.8,13.5,14.7,14.1,14.2,13.8,13.9,13.9,14.3,13.4,13.9]}},{"b":3,"v":{"total":[4,4.2,3.6,4.3,3.9,3.9,4,3.9,4.3,4.3,5.2,4,4.1,3.9,4,3.6,4.1,4.7,4.1,4.4,4.7,4.3,4.3,4.9,4.3],"script":[0.6,0.8,0.7,1.1,0.2,0.9,0.7,0.5,0.8,0.7,1,0.7,0.8,0.7,1,0.9,0.2,0.9,0.7,0.2,0.8,0.1,0.2,0.5,0.9],"paint":[2.6,2.8,2.2,2.3,2.9,2.2,3.1,2.3,2.5,2.6,2.9,2.3,2.6,2.2,2.9,2,3.2,3,2.4,3.5,3.1,3.1,2.8,3.5,2.8]}},{"b":4,"v":{"total":[20.4,18.5,19.5,19.5,19.8,19.6,19.8,19.8,19.2,19.4,20.1,19.9,19.9,20.1,18.1],"script":[1.3,0.6,0.2,0.2,0.8,0.5,1.3,0.4,0.9,0.5,1.2,0.8,0.5,0.2,0.5],"paint":[17.3,15.9,17.1,17,16.8,16.8,16.2,17.1,16.2,17.3,15.8,16.9,17.4,17.8,15.5]}},{"b":5,"v":{"total":[13.1,13.4,13.6,13.8,15.1,15.2,13.7,13.7,13.7,14.8,13.7,13.8,13.4,13.7,14.1],"script":[0.4,0.2,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.5,0.2],"paint":[11.8,12.2,11.9,12.3,13.3,13.4,12.4,12.6,12.4,13.6,12.1,12.6,12.4,12.3,12.6]}},{"b":6,"v":{"total":[280.7,285.7,280.3,280.7,283.6,281.9,283.5,279.9,284.9,280.6,282.4,282.2,282,280.6,279.9],"script":[28.6,28.4,28.2,28.3,28.4,28.6,28.8,28.4,28.4,27.7,29,28.2,28.8,28.1,28],"paint":[242.3,246.9,243.2,243,244.6,243.5,245.1,242.3,247.4,243.8,244,244.8,243.5,242.9,242.6]}},{"b":7,"v":{"total":[31.6,31,31,31.6,31.9,30.8,31.6,30.7,30.7,31.4,31.5,31.8,33.4,31.7,31.4],"script":[2.2,2.2,2.2,2.1,2.3,2.2,2.2,2.1,2.3,2.2,2.2,2.2,2.2,2.1,2.2],"paint":[28.3,27.9,27.8,28.5,28.4,27.8,28.4,27.8,27.5,28.2,28.3,28.5,29.9,28.5,28.2]}},{"b":8,"v":{"total":[13.1,13.7,13.2,13.6,12.4,13.1,13.7,13.7,13.1,13.3,13.4,12.5,13.8,13.1,13.6],"script":[9.9,10.2,10.2,10.7,10.1,10.6,10.5,10.4,10.5,10.6,10.6,10.1,11.4,10,10.2],"paint":[3,2.3,2.7,1.2,0.8,1.7,2.4,2.3,1.3,1.5,2.1,0.7,0.9,1.2,2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.58]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.3]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[51.6]}}]}, -{"f":15,"b":[]}, -{"f":16,"b":[]}, -{"f":17,"b":[]}, -{"f":18,"b":[]}, -{"f":19,"b":[]}, -{"f":20,"b":[]}, -{"f":21,"b":[]}, -{"f":22,"b":[]}, -{"f":23,"b":[]}, -{"f":24,"b":[]}, -{"f":25,"b":[]}, -{"f":26,"b":[]}, -{"f":27,"b":[]}, -{"f":28,"b":[]}, -{"f":29,"b":[]}, -{"f":30,"b":[]}, -{"f":31,"b":[]}, -{"f":32,"b":[]}, -{"f":33,"b":[]}, -{"f":34,"b":[]}, -{"f":35,"b":[]}, -{"f":36,"b":[]}, -{"f":37,"b":[]}, -{"f":38,"b":[]}, -{"f":39,"b":[]}, -{"f":40,"b":[]}, -{"f":41,"b":[]}, -{"f":42,"b":[]}, -{"f":43,"b":[]}, -{"f":44,"b":[]}, -{"f":45,"b":[{"b":0,"v":{"total":[24.8,25.2,25.3,25.5,25.5,25.7,26,26,26,25.9,25.9,26,25.6,25.6,25.8],"script":[1.9,1.8,1.9,2,1.9,2,1.9,1.9,2,1.9,2,1.9,1.9,1.9,1.9],"paint":[22.4,23,22.9,23.1,23.1,23.3,23.5,23.6,23.6,23.5,23.5,23.6,23.2,23.1,23.5]}},{"b":1,"v":{"total":[30.1,29.4,29.3,29.2,29.4,29,30.2,30.3,29.9,29.9,30,30.2,29.5,29.6,29.8],"script":[4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.5,4.5,4.6,4.7,4.6,4.2,4.5,4.3],"paint":[25.1,24.4,24.4,24.2,24.6,24.2,25.2,25.2,24.8,24.9,24.9,25.1,24.9,24.5,25]}},{"b":2,"v":{"total":[17.8,17.6,17.3,17.7,16,16.8,15.5,17.9,17.1,16.1,17.3,16.9,16.2,17.3,17.2],"script":[1.9,1.5,1.6,1.4,1,1.6,1.5,1.6,1.3,1.9,0.9,1.5,1.7,1.6,2.2],"paint":[13.9,13.1,13.6,13.8,12.8,13.2,12.9,14.3,13.9,13.1,14.1,13.9,12.9,13.1,13.4]}},{"b":3,"v":{"total":[5.1,4.9,5.2,4.1,4.2,4.8,5.4,4.6,3.6,5.2,5.3,5,4.7,4.8,4.1,4.7,4.6,4,4.2,5.1,5.3,4.5,4.1,5,5.1],"script":[0.8,1,1,0.5,1,1,1.2,0.9,0.2,1.2,0.8,1,0.5,1.1,0.9,0.5,0.8,0.8,0.9,1.1,1.6,1,0.7,0.8,1.2],"paint":[3.8,2.9,2.9,3.4,2.5,3.1,3.9,3.3,3.2,2.5,2.7,3.8,3.4,2.9,2.6,3.4,3,2.2,2.4,3.2,3,2.3,2.2,3.1,2.6]}},{"b":4,"v":{"total":[21.4,20.2,18.9,19.9,20.1,20.1,20.7,20.9,20.8,21.3,18.8,19.6,21.6,18.1,20],"script":[1.3,0.9,1.4,1.2,0.8,1.3,1.5,1.3,1.3,1.3,1.2,1.4,1.7,0.8,1.8],"paint":[18,17.1,15.5,17.5,17.5,17.3,17.9,18,16.9,17.8,16.1,15.9,17.4,15.4,16.1]}},{"b":5,"v":{"total":[14.5,14.6,14.6,14.1,14.3,14.2,15.3,14.7,15.5,16,13.4,13.8,13.9,14.1,14.8],"script":[0.5,0.8,0.5,0.5,0.5,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[12.8,12.8,12.9,12.1,13,12.4,13.6,13.4,13.8,14.3,11.8,11.9,12.4,12.7,13]}},{"b":6,"v":{"total":[289.1,287.9,286,284.8,287,299.6,289.9,291,296.3,288.6,286,288.8,289.7,287.8,287.1],"script":[27.7,28.2,28.2,27.8,27.6,28.2,28.2,28.4,28.5,28.7,28.2,28.3,28.4,28.2,27.9],"paint":[252.1,250.8,248.8,247.9,250.4,262.2,252.2,253.5,259,251,248.4,251.2,251.9,250.4,250.2]}},{"b":7,"v":{"total":[33,32.5,32.8,33.3,32.1,32.7,33.6,32.4,33.2,32.6,33.2,32.7,32.1,33.2,33.3],"script":[2.3,2.2,2.2,2.3,2.3,2.2,2.3,2.4,2.4,2.4,2.3,2.2,2.2,2.3,2.2],"paint":[29.7,29.1,29.4,29.8,28.9,29.4,30.2,29.1,29.7,29.3,29.7,29.5,28.9,29.8,29.9]}},{"b":8,"v":{"total":[13.6,14.2,14.4,14.7,14.9,14.3,14.5,14.7,14.5,14.1,14.5,14.4,13.9,13.8,14.5],"script":[11.2,11.2,11.5,11.1,11.6,11.1,11.2,11.6,11.4,11.6,11.3,10.9,10.9,10.7,11.7],"paint":[0.8,1.9,2.6,2.1,1.8,1.7,1.8,2.2,1.3,1.7,0.8,1.8,1.7,2,1.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.28]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, -{"f":46,"b":[]}, -{"f":47,"b":[]}, -{"f":48,"b":[]}, -{"f":49,"b":[]}, -{"f":50,"b":[]}, -{"f":51,"b":[]}, -{"f":52,"b":[]}, -{"f":53,"b":[]}, -{"f":54,"b":[]}, -{"f":55,"b":[]}, -{"f":56,"b":[]}, -{"f":57,"b":[]}, -{"f":58,"b":[]}, -{"f":59,"b":[]}, -{"f":60,"b":[]}, -{"f":61,"b":[]}, -{"f":62,"b":[]}, -{"f":63,"b":[]}, -{"f":64,"b":[]}, -{"f":65,"b":[]}, -{"f":66,"b":[]}, -{"f":67,"b":[]}, -{"f":68,"b":[]}, -{"f":69,"b":[]}, -{"f":70,"b":[]}, -{"f":71,"b":[]}, -{"f":72,"b":[]}, -{"f":73,"b":[]}, -{"f":74,"b":[]}, -{"f":75,"b":[]}, -{"f":76,"b":[]}, -{"f":77,"b":[]}, -{"f":78,"b":[]}, -{"f":79,"b":[]}, -{"f":80,"b":[]}, -{"f":81,"b":[]}, -{"f":82,"b":[]}, -{"f":83,"b":[]}, -{"f":84,"b":[]}, -{"f":85,"b":[]}, -{"f":86,"b":[]}, -{"f":87,"b":[]}, -{"f":88,"b":[]}, -{"f":89,"b":[]}, -{"f":90,"b":[]}, -{"f":91,"b":[]}, -{"f":92,"b":[]}, -{"f":93,"b":[]}, -{"f":94,"b":[]}, -{"f":95,"b":[]}, -{"f":96,"b":[]}, -{"f":97,"b":[]}, -{"f":98,"b":[]}, -{"f":99,"b":[]}, -{"f":100,"b":[]}, -{"f":101,"b":[]}, -{"f":102,"b":[]}, -{"f":103,"b":[{"b":0,"v":{"total":[25.9,25.4,25.9,25.2,25.8,25.4,26,26.1,25,25.7,25.5,25.9,25.2,25.9,25.5],"script":[2.4,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.5],"paint":[23.1,22.6,23.2,22.5,23,22.7,23.1,23.4,22.3,22.9,22.8,23.2,22.4,23,22.6]}},{"b":1,"v":{"total":[28.5,28.2,28.6,28.8,29,28.2,29,28.5,28.4,29.6,29.5,28,28.6,28.9,28.7],"script":[4.5,4.7,4.5,4.7,4.6,4.6,4.8,4.7,4.7,4.8,4.9,4.4,4.9,4.6,4.6],"paint":[23.5,23.1,23.7,23.7,23.9,23.1,23.8,23.4,23.2,24.3,24.2,23.2,23.3,23.9,23.7]}},{"b":2,"v":{"total":[16.2,17.6,15.4,17,14.9,15.4,15.3,15.5,14.9,16.4,15.4,15.1,15.2,14.9,17.8],"script":[0.8,1,1,1,0.6,0.8,0.8,1.1,0.7,0.8,0.8,0.9,1.1,0.2,1.2],"paint":[14,14.9,13,14,12.2,13.6,13.2,12.6,13.1,13.8,13.1,12.3,12.6,12.6,14.3]}},{"b":3,"v":{"total":[6.2,4.3,3.9,4.1,4.5,4.8,5,4.3,4.1,4.1,4,4.5,4.1,4.8,4.9,4.7,4.1,3.6,4.5,3.9,4.3,4.1,4.2,4.5,4.3],"script":[1.1,1,1.1,1.3,1.2,1.2,0.6,1,0.6,0.8,0.8,1,1.1,1.4,0.8,1.2,1.1,0.5,1.2,1,0.8,1.2,1,0.8,0.9],"paint":[4.9,2.9,2,1.8,2.3,2.4,3.6,3.2,2.3,2.3,2.6,3.3,2.3,2,3.3,2.7,2.6,2.4,2.5,2.2,3,2.2,2.6,2.9,2.6]}},{"b":4,"v":{"total":[19.8,20.4,19.3,18.3,17.4,19.1,19.7,20.6,19.6,21,18.8,19.8,19.9,18.4,20.4],"script":[1.1,1.2,0.9,1.1,0.8,0.8,0.8,0.8,1.4,0.8,1.3,1.2,1.1,1.1,1.1],"paint":[16.3,16.8,17.3,16.6,15.2,16.7,16.3,18,16.2,18.2,15.9,17.2,16.6,15.4,17.4]}},{"b":5,"v":{"total":[13,14.5,14,13.2,14,13.7,13.1,13.8,13.6,13.8,13.2,13.3,14.1,13.9,13.1],"script":[0.2,0.5,0.2,0.2,0.3,0.3,0.2,0.4,0.3,0.4,0.5,0.5,0.5,0.4,0.4],"paint":[11.6,13.1,12.8,12.3,12.6,12.3,12,12.8,12.4,12.4,11.8,12.1,12.4,12.4,11.8]}},{"b":6,"v":{"total":[285.7,278.3,279.3,279.7,279.9,279.5,278.9,279.3,288.4,283.4,284.2,279.4,282.6,282.2,281.7],"script":[27,27.2,26.7,25.8,27,26.7,26.9,26.3,27,26.1,26.4,26.6,26.2,27,26.9],"paint":[249.7,241.9,243.9,245,243.8,243.5,242.7,243.8,251.2,247.7,247.7,243.7,246.5,245.9,245.7]}},{"b":7,"v":{"total":[31.8,31.8,31.4,31.3,31.7,31.4,30.9,31.8,31,31.5,31.1,31.5,31.6,31.8,31.7],"script":[2.6,2.6,2.4,2.6,2.5,2.6,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5],"paint":[28.1,28.3,28,27.8,28.1,27.8,27.6,28.3,27.6,28,27.6,28.1,28.1,28.2,28]}},{"b":8,"v":{"total":[13.4,14.1,13.5,14.3,13.7,13.8,13.4,13.8,13,14,14.1,13.5,14.5,14.7,13.2],"script":[10.7,11.2,10.7,11.2,11.4,10.6,10.6,10.6,10.5,11.3,11.1,11,11.2,11.6,10.8],"paint":[1.7,1.3,1.9,1.1,0.8,1.6,1.2,2.9,0.8,1.7,2,1.6,1.7,2.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.47]}},{"b":11,"v":{"DEFAULT":[2.5]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.89]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[43.9]}}]}, -{"f":104,"b":[]}, -{"f":105,"b":[]}, -{"f":106,"b":[]}, -{"f":107,"b":[]}, -{"f":108,"b":[]}, -{"f":109,"b":[]}, -{"f":110,"b":[]}, -{"f":111,"b":[]}, -{"f":112,"b":[{"b":0,"v":{"total":[26.2,25.8,26.6,25.8,25.2,26.2,26.3,26.2,27.1,26.1,25.7,26,26.3,26,25.9],"script":[2.7,2.6,2.5,2.7,2.6,2.5,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5],"paint":[23,22.8,23.6,22.6,22.1,23.2,23.1,23.2,24.1,23.2,22.8,23,23.4,23,23]}},{"b":1,"v":{"total":[30.4,30.2,29.9,30.4,30.4,29.6,30.8,30,29.5,29.8,30,30.4,30.1,30.3,30.2],"script":[5.7,5.4,5.4,5.5,5.6,5.2,5.6,5.3,5.7,5.4,5.6,5.5,5.6,5.5,5.6],"paint":[24.1,24.2,23.9,24.2,24.2,23.7,24.5,24.1,23.1,23.7,23.7,24.2,23.9,24.1,23.9]}},{"b":2,"v":{"total":[17.7,22.4,17.9,16.3,15.8,16.7,17.2,17.3,16,17.5,16.5,17.1,16.8,16.3,17.2],"script":[1.3,1.9,1.4,0.8,1.1,0.9,1.4,1.3,1.4,1.4,1.1,0.8,1.7,0.9,1.5],"paint":[14.6,17.3,13.8,13.7,12.5,13.4,13.1,13.8,12.3,13.6,14,14.6,13,14.2,13.5]}},{"b":3,"v":{"total":[4.3,4.9,4,4,4.4,3.8,4.5,4,4.3,4.9,3.6,4.1,4.3,4.2,3.7,4.4,4.4,3.9,4.4,4.6,3.7,4.5,4.9,4.9,4.5],"script":[1,1.1,0.1,0.9,0.4,0.6,0.8,0.7,0.5,1.4,0.8,0.7,0.7,0.8,0.2,0.8,0.9,0.8,0.7,0.5,0.5,1,1,0.2,0.7],"paint":[2.3,3.3,3.3,2.3,3.5,2.5,3.5,2.6,2.3,1.9,2,1.9,2.8,2.8,2.4,2.4,2.2,2.3,2.5,3.8,2.5,2.8,3,3.2,3]}},{"b":4,"v":{"total":[20.5,21.5,20.8,21.4,20.1,20.8,21.9,20.4,20,21.5,21.4,22.4,20.5,21.4,19.5],"script":[1.4,1.7,1.8,1.8,1.6,1.6,1.9,1.8,1.8,1.4,1.5,2,1.6,2,1.3],"paint":[15.8,17.7,16.7,18.2,16.9,16.1,18.2,16.8,16.3,18.4,18.3,18.3,17.1,17.4,16.3]}},{"b":5,"v":{"total":[15.4,14.7,14.3,14.6,14.3,15,13.8,14.3,14.2,13.5,14.8,16.3,15.3,15.4,15.8],"script":[0.6,0.6,0.6,0.5,0.7,0.5,0.6,0.5,0.8,0.6,0.6,0.5,0.7,0.7,0.6],"paint":[14,13.2,12.9,13,12.5,13.4,12.3,13,12.3,12,13.3,14.6,13.2,13.6,13.6]}},{"b":6,"v":{"total":[286.9,283.7,282.3,284.2,282.5,283.6,285.1,284.2,283,284.8,283.6,284.4,285.2,283.4,298.7],"script":[31.4,30.4,30.9,30.9,30.6,30.8,31.2,31,30.8,30.8,31.2,31.4,31.3,31.2,30.8],"paint":[246.2,244.2,242.1,244.1,242.5,243.5,244.6,243.9,243.2,244.5,243.2,243.6,245,243.5,258.6]}},{"b":7,"v":{"total":[31.8,32.1,31.5,32.5,34.1,31.5,32.2,31.9,32.1,31.9,31.4,32.5,32.1,32.3,32.3],"script":[3.1,3,3,3,3.3,3,3.2,3.1,3,3.1,3.1,3,3,3.2,2.9],"paint":[27.7,28.1,27.6,28.2,29.3,27.5,28,27.7,28,28,27.4,28.3,28.1,28.1,28.1]}},{"b":8,"v":{"total":[16.4,14.5,14.7,14.1,16.4,16,16.9,14.5,14.7,16.4,14.5,15.2,16.7,17.2,16.3],"script":[13.6,11.9,12.1,11.3,13.5,13.6,14.1,11.6,11.6,13.5,11.5,12.3,13.9,14.1,13.9],"paint":[0.9,2,1.6,2,1.4,0.7,2.2,1.5,1.9,2.1,2.3,1,1.1,1.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[21.08]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[49.6]}}]}, -{"f":113,"b":[]}, -{"f":114,"b":[]}, -{"f":115,"b":[]}, -{"f":116,"b":[]}, -{"f":117,"b":[]}, -{"f":118,"b":[]}, -{"f":119,"b":[]}, -{"f":120,"b":[{"b":0,"v":{"total":[26.1,25.2,25.3,27.1,25.9,26.1,26,25.8,25.4,27.7,26.4,25.7,26,26.1,26.2],"script":[2.4,2.5,2.4,2.6,2.6,2.6,2.4,2.4,2.5,2.6,2.6,2.4,2.5,2.4,2.6],"paint":[23.3,22.4,22.5,24,22.8,23.1,23.2,23,22.5,24.7,23.4,22.9,23,23.3,23.2]}},{"b":1,"v":{"total":[31.3,31.1,31.1,30.2,30.1,29.9,30.8,31.1,30.9,31.3,29.7,30.3,30.7,31.1,30.3],"script":[5.6,6,5.9,5.9,5.8,5.3,5.7,5.8,5.8,5.8,5.4,5.6,6.1,5.8,5.7],"paint":[25,24.4,24.4,23.6,23.8,23.9,24.4,24.6,24.4,24.7,23.7,24,24,24.7,23.9]}},{"b":2,"v":{"total":[18.4,17.8,17.5,16.1,17.5,16.4,17.4,17.8,18.7,18.6,18.5,17.2,16.5,16.3,17],"script":[1.5,1.9,1.5,0.9,1.3,1.5,1.3,1.8,1.8,2,1.4,2.1,1.5,1.5,1.5],"paint":[13.9,13.8,14.7,13.1,13.5,13.3,13.3,13.5,14.4,14.6,15,13.3,14,12.7,12.9]}},{"b":3,"v":{"total":[4.8,4.8,4.6,5.3,5.4,4.5,4.8,4.4,4.5,4.8,4.9,4.5,5.3,4.8,5.8,4.5,4.7,5,4.9,4.9,4.9,4.4,6.1,4.4,4.4],"script":[0.9,1.3,1.2,1,1.3,0.9,1.5,1.1,1.2,0.8,1.4,1.1,1.4,1.2,1.8,1.4,1.2,1.1,1.3,0.8,1.1,0.9,1.1,0.9,1.1],"paint":[3.1,2.4,1.9,2.7,3,3.4,2.6,2.7,2,3.2,2.7,2.9,2.8,2.3,2.9,2.3,2.7,3,2.5,2.9,3,2.7,4.4,2.7,2.4]}},{"b":4,"v":{"total":[20.7,20.3,19.7,19.3,20.6,21.6,21.4,20.7,20.1,20.8,20.4,20.9,20,21.1,21.2],"script":[1.1,1.1,0.9,1.8,1.5,1,1.2,1.7,1,1.1,1.5,1.3,1.3,1.4,1.5],"paint":[17.8,16.7,16.1,16.3,16.7,19.1,18.6,16.4,17.4,17.8,16.8,16.6,17.2,16.7,17.9]}},{"b":5,"v":{"total":[14.6,14.2,14.2,14.2,14.3,13.6,13.8,14.5,14.9,14.7,13.7,13.2,13.9,14.5,14.1],"script":[0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.6,0.7],"paint":[12.9,12.6,12.5,12.4,12.9,12,12.6,13.1,13.6,13,12.1,11.8,12.4,13,12.4]}},{"b":6,"v":{"total":[282.3,284.6,284.2,282.9,281.4,286.3,282.1,285.4,288.9,281,283.3,282.7,286.8,290.3,287.7],"script":[29.7,29.4,30.3,30,29.8,30.1,29.6,29.7,30.6,29,29.5,29.5,32.6,30.5,29.4],"paint":[243.5,245.9,244.8,243.4,242.2,246.7,243.4,246,249.2,242.9,244.5,243.6,245.1,250,248.3]}},{"b":7,"v":{"total":[32.1,31.6,31.4,32,31.9,31.5,32.2,31.5,31.9,32.1,31.5,31.7,32,32.6,31.9],"script":[2.7,2.8,2.7,2.7,2.8,2.7,2.9,3,2.8,2.6,2.6,2.7,2.8,2.7,2.7],"paint":[28.3,27.8,27.7,28.3,28.2,27.8,28.3,27.5,28.2,28.6,28,27.9,28.2,28.9,28.3]}},{"b":8,"v":{"total":[14.7,14.4,15,14.7,14.6,15,15,15.1,14.7,14.9,14.4,15.1,14.9,14.3,15.8],"script":[11.7,11.6,11.5,12.1,11.9,11.8,11.8,11.8,11.7,11.7,11.4,11.9,12,11.3,12.2],"paint":[2,1.6,1.7,1.6,2.4,1.8,1.7,1.7,1.8,1.7,1.2,2.6,1.8,2,1.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[53.1]}}]}, -{"f":121,"b":[]}, -{"f":122,"b":[]}, -{"f":123,"b":[]}, -{"f":124,"b":[]}, -{"f":125,"b":[]}, -{"f":126,"b":[]}, -{"f":127,"b":[]}, -{"f":128,"b":[]}, -{"f":129,"b":[]}, -{"f":130,"b":[{"b":0,"v":{"total":[24.6,24.6,24.7,24.8,23.8,23.9,24.5,24.3,24.3,24.1,24.7,23.9,24.6,24.3,25],"script":[1.4,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.5,1.4,1.3,1.4,1.5,1.4,1.4],"paint":[22.7,22.7,22.9,22.8,22,22.1,22.8,22.5,22.4,22.3,22.8,22.1,22.6,22.5,23.1]}},{"b":1,"v":{"total":[26.9,27.6,28,27.5,27.6,27.3,27.9,27.4,27.8,28,27.4,28.6,27.5,27.8,27.9],"script":[3.4,3.6,3.6,3.4,3.7,3.4,3.5,3.5,3.6,3.5,3.7,3.7,3.6,3.6,3.6],"paint":[23,23.6,23.9,23.6,23.4,23.3,23.9,23.5,23.7,23.9,23.2,24.3,23.5,23.7,23.7]}},{"b":2,"v":{"total":[16.4,17.5,14.8,16.3,15.6,15.9,17.8,15.9,15.3,15.9,14.3,19,15.3,15.6,16],"script":[0.8,0.9,0.1,0.8,0.6,0.5,0.8,0.8,0.7,0.5,0.6,0.5,0.8,1,1.1],"paint":[13,14.6,12.3,13.4,13.2,13.5,14.4,14,13,14.2,11.9,14.9,13.1,13,13.5]}},{"b":3,"v":{"total":[4.1,3.5,4.1,4.1,3.8,4.7,4.3,3.8,3.6,3.9,3.8,4.3,4.2,5.2,3.9,4.1,3.6,3.6,3.9,3.6,3.8,3.9,4.2,4.2,4.2],"script":[0.1,0.1,0.2,0.5,0.6,0.7,0.7,0.7,0.5,0.4,0.7,0.4,0.6,0.7,0.1,0.4,0.7,0.5,0.1,0.3,0.6,0.1,0.6,0.7,0.4],"paint":[2.9,2.5,3,3.5,2.8,3.5,2.8,1.8,2.2,2.7,2.4,2.7,2.8,3.3,2.7,3.5,2.1,2.5,2.9,2,2.5,3.6,2.6,2.9,3]}},{"b":4,"v":{"total":[17.4,18.3,18.6,17.4,17.7,18.9,23.2,17.6,17.8,18.4,19.2,19,18.6,18.1,16.8],"script":[0.1,0.6,0.1,0.1,0.6,0.6,0.1,0.1,0.8,0.7,0.1,0.8,0.1,0.1,0.1],"paint":[16.2,16.2,16.6,15,15.1,16.7,19.8,15.9,15.1,15.7,16.4,16.5,16.8,16.2,15.5]}},{"b":5,"v":{"total":[15.3,13.8,14.4,13.9,14.6,14.4,14.5,14.3,13.8,14.3,14.5,14.5,13.2,14.3,14.1],"script":[0.4,0.4,0.2,0.3,0.2,0.4,0.4,0.4,0.4,0.2,0.4,0.2,0.2,0.4,0.2],"paint":[13.8,12.4,13.3,12.4,13.1,12.7,12.7,12.9,12.2,12.9,13,13.1,12.1,12.9,12.9]}},{"b":6,"v":{"total":[264.3,261.7,262.3,262.3,261.5,267.4,263.5,263.6,264.6,261.5,262,266.7,261.6,263.5,261.7],"script":[15.4,15.6,15.6,15.7,15.7,15.8,15.7,15.9,15.2,15.6,15.4,16,15.5,15.6,15.7],"paint":[240.2,237.3,237.5,237.7,236.6,242.7,238.6,238.5,240.5,236.9,237.3,241.9,236.8,238.8,237]}},{"b":7,"v":{"total":[30.4,30.5,30.8,30.3,30.9,30.6,30.2,30.4,30.6,30.4,30.6,30.6,31.5,30.4,30.6],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.5,1.4,1.5,1.4,1.5],"paint":[27.9,28.1,28.4,27.8,28.5,28.2,27.7,28.1,28.2,28,28.2,28.2,28.8,28,28.1]}},{"b":8,"v":{"total":[13.5,13.1,12.7,13,12.5,12.9,13.3,12.5,13.4,12.5,12.3,12.8,13.1,13,13.4],"script":[10.4,9.8,9.9,10.1,9.7,10.1,9.7,9.7,10.7,9.7,9.4,9.8,10.3,10.4,10.1],"paint":[1.2,2.4,1.4,1.1,1.6,1.7,2.4,0.9,1.5,1.6,2.6,1.7,1.6,0.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, -{"f":131,"b":[{"b":0,"v":{"total":[25.4,25.4,25.3,25.2,24.8,25.3,25.1,25,25.4,25.5,25.3,24.8,25.1,25,25],"script":[1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.4,1.3,1.3],"paint":[23.5,23.6,23.5,23.4,23.1,23.6,23.4,23.2,23.7,23.7,23.4,23.1,23.2,23.2,23.3]}},{"b":1,"v":{"total":[28.5,28.1,28.5,27.9,28.7,28.5,29.1,29.1,28.3,29.1,29.4,29.4,28.3,29.3,28.8],"script":[3.4,3.4,3.3,3.5,3.6,3.6,3.6,3.8,3.6,3.6,3.7,3.7,3.5,3.6,3.7],"paint":[24.7,24.2,24.6,24,24.4,24.4,25,24.8,24.3,25,25.2,25.2,24.3,25.1,24.7]}},{"b":2,"v":{"total":[19.1,17.7,17.2,18.6,17.2,16.1,16.4,16,16.2,15.9,15.4,16.2,16.5,15.1,17],"script":[0.9,0.3,0.7,0.7,0.1,0.6,0.1,0.1,0.8,0.8,0.1,0.7,0.4,0.1,0.5],"paint":[14.9,15.1,14.3,15.6,15.6,13.2,14.5,13.8,13.3,12.7,13.6,13.8,13.9,12.9,14.7]}},{"b":3,"v":{"total":[4,3.8,4.3,3,3.8,3.8,3.4,3.9,3.9,3.9,4.2,3.9,3.8,3.4,3.1,4.4,4,6,3.1,3.9,4,3.7,3.5,3.8,3.5],"script":[0,0.3,0.7,0.2,0.2,0.7,0,0.1,0.4,0,0,0.1,0.1,0,0,0,0.7,0.1,0,0,0,0,0,0.5,0.1],"paint":[2.1,2.4,3.4,2.3,3.1,2.6,2.6,2.9,2.7,2.9,2.8,3.4,2.2,2.6,2,3,2.3,4.5,2.5,2.9,3.4,2.7,3.3,2.7,2]}},{"b":4,"v":{"total":[18.8,19.6,19.8,20.2,18.5,19.1,20.6,19,20.4,20.5,20.1,20.1,18.8,18.9,19],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.8,0.7,0.5,0.4,0.1],"paint":[16.7,17.4,17.8,17.4,16.2,16.6,18.1,17.4,18.8,18,17.5,17.4,15.8,17.4,16.8]}},{"b":5,"v":{"total":[14.9,13.6,14.6,14,13.8,13.5,13.7,13.7,13,14.4,14.2,13.8,14.1,13.5,13.2],"script":[0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3,0.2],"paint":[13.5,12.7,13.4,12.6,12.8,12.6,12.6,12.9,11.9,13.6,13.1,12.7,13,12.3,12.3]}},{"b":6,"v":{"total":[269.8,271.7,268.8,268.5,267.7,268.3,267.3,271.4,268.7,268.3,270.3,268.6,267.8,279.4,278.3],"script":[14,14,13.6,13.7,13.9,13.5,13.8,13.8,13.3,13.7,13.9,13.5,13.9,13.8,13.9],"paint":[246.7,248.4,246,245.3,244.4,245.7,244.4,248.1,246.2,245.3,247.2,245.5,244.5,255.5,254.7]}},{"b":7,"v":{"total":[29.8,30.2,30,30,30.2,30.6,31.2,30.4,30.3,30.5,30.7,30.9,30.7,30.6,30.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[27.6,27.9,27.8,27.7,27.7,28.4,28.8,27.9,28,28.2,28.3,28.3,28.4,28.2,28.4]}},{"b":8,"v":{"total":[12.7,13.5,12.1,12.3,14.1,13.8,12.9,13,13.8,12.6,13.1,12.7,13.4,12.4,12.6],"script":[10.2,10.2,10,9.4,10.8,10.6,10.3,9.8,10.2,9.7,10.3,10.1,10.5,9.5,9.8],"paint":[2,2,0.9,1.6,1.8,1.3,1.9,1.9,1.6,1.7,0.9,1.5,1.8,1.5,1.9]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, -{"f":132,"b":[]}, -{"f":133,"b":[]}, -{"f":134,"b":[]}, -{"f":135,"b":[]}, -{"f":136,"b":[]}, -{"f":137,"b":[]}, -{"f":138,"b":[]}, -{"f":139,"b":[]}, -{"f":140,"b":[]}, -{"f":141,"b":[]}, -{"f":142,"b":[]}, -{"f":143,"b":[]}, -{"f":144,"b":[]}, -{"f":145,"b":[]}, -{"f":146,"b":[]}, -{"f":147,"b":[]}, -{"f":148,"b":[]}, -{"f":149,"b":[]}, -{"f":150,"b":[]}, -{"f":151,"b":[]}, -{"f":152,"b":[]}, -{"f":153,"b":[]}, -{"f":154,"b":[]}, -{"f":155,"b":[]}, -{"f":156,"b":[]}, -{"f":157,"b":[]}, -{"f":158,"b":[]}, -{"f":159,"b":[]}, -{"f":160,"b":[]}, -{"f":161,"b":[]}, -{"f":162,"b":[]}, -{"f":163,"b":[]}, -{"f":164,"b":[]}, -{"f":165,"b":[]}, -{"f":166,"b":[]}, -{"f":167,"b":[]}, -{"f":168,"b":[]}, -{"f":169,"b":[]}, -{"f":170,"b":[]}, -{"f":171,"b":[]}, -{"f":172,"b":[]}, -{"f":173,"b":[]}, -{"f":174,"b":[]}, -{"f":175,"b":[]}, -{"f":176,"b":[]}, -{"f":177,"b":[]}, -{"f":178,"b":[]}, -{"f":179,"b":[]}, -{"f":180,"b":[]}, -{"f":181,"b":[]}, -{"f":182,"b":[]}, -{"f":183,"b":[]}, -{"f":184,"b":[]}, -{"f":185,"b":[]}, -{"f":186,"b":[]}, -{"f":187,"b":[]}, -{"f":188,"b":[]}, -{"f":189,"b":[]}, -{"f":190,"b":[]}, -{"f":191,"b":[]}, -{"f":192,"b":[]}, -{"f":193,"b":[]}, -{"f":194,"b":[]}, -{"f":195,"b":[]}, -{"f":196,"b":[]}, -{"f":197,"b":[]}, -{"f":198,"b":[]}, -{"f":199,"b":[]}, -{"f":200,"b":[]}, -{"f":201,"b":[]}, -{"f":202,"b":[]}, -{"f":203,"b":[]}, -{"f":204,"b":[]}, -{"f":205,"b":[]}, -{"f":206,"b":[]}, -{"f":207,"b":[]}, -{"f":208,"b":[]}, -{"f":209,"b":[]}, -{"f":210,"b":[]},]; -export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":0,"b":[{"b":0,"v":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"b":1,"v":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"b":2,"v":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"b":3,"v":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"b":4,"v":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"b":5,"v":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"b":6,"v":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"b":7,"v":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"b":8,"v":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[16.7]}},{"b":11,"v":{"DEFAULT":[16.71]}},{"b":12,"v":{"DEFAULT":[1.52]}},{"b":13,"v":{"DEFAULT":[155.93]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[67.6]}}]}, +{"f":1,"b":[{"b":0,"v":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"b":1,"v":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"b":2,"v":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"b":3,"v":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"b":4,"v":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"b":5,"v":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"b":6,"v":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"b":7,"v":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"b":8,"v":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[6.55]}},{"b":11,"v":{"DEFAULT":[8.27]}},{"b":12,"v":{"DEFAULT":[4.88]}},{"b":13,"v":{"DEFAULT":[46.41]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[29.5]}}]}, +{"f":2,"b":[{"b":0,"v":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"b":1,"v":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"b":2,"v":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"b":3,"v":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"b":4,"v":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"b":5,"v":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"b":6,"v":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"b":7,"v":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"b":8,"v":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"b":9,"v":{"DEFAULT":[1.51]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.81]}},{"b":12,"v":{"DEFAULT":[2.11]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[149.6]}}]}, +{"f":3,"b":[{"b":0,"v":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"b":1,"v":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"b":2,"v":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"b":3,"v":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"b":4,"v":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"b":5,"v":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"b":6,"v":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"b":7,"v":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"b":8,"v":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.74]}},{"b":12,"v":{"DEFAULT":[1.71]}},{"b":13,"v":{"DEFAULT":[22.68]}},{"b":14,"v":{"DEFAULT":[109.2]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[122.6]}}]}, +{"f":4,"b":[{"b":0,"v":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"b":1,"v":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"b":2,"v":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"b":3,"v":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"b":4,"v":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"b":5,"v":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"b":6,"v":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"b":7,"v":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"b":8,"v":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.67]}},{"b":14,"v":{"DEFAULT":[109.3]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[120.8]}}]}, +{"f":5,"b":[{"b":0,"v":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"b":1,"v":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"b":2,"v":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"b":3,"v":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"b":4,"v":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"b":5,"v":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"b":6,"v":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"b":7,"v":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"b":8,"v":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.52]}},{"b":10,"v":{"DEFAULT":[4.83]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[2.12]}},{"b":13,"v":{"DEFAULT":[29.39]}},{"b":14,"v":{"DEFAULT":[144.2]}},{"b":15,"v":{"DEFAULT":[44.7]}},{"b":16,"v":{"DEFAULT":[151.3]}}]}, +{"f":6,"b":[{"b":0,"v":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"b":1,"v":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"b":2,"v":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"b":3,"v":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"b":4,"v":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"b":5,"v":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"b":6,"v":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"b":7,"v":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"b":8,"v":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.72]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[1.78]}},{"b":13,"v":{"DEFAULT":[22.9]}},{"b":14,"v":{"DEFAULT":[110.6]}},{"b":15,"v":{"DEFAULT":[33.7]}},{"b":16,"v":{"DEFAULT":[130.8]}}]}, +{"f":7,"b":[{"b":0,"v":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"b":1,"v":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"b":3,"v":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"b":4,"v":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"b":5,"v":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"b":6,"v":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"b":7,"v":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"b":8,"v":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"b":9,"v":{"DEFAULT":[1.56]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[30.71]}},{"b":14,"v":{"DEFAULT":[151.4]}},{"b":15,"v":{"DEFAULT":[46.3]}},{"b":16,"v":{"DEFAULT":[158.7]}}]}, +{"f":8,"b":[{"b":0,"v":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"b":1,"v":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"b":2,"v":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"b":3,"v":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"b":4,"v":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"b":5,"v":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"b":6,"v":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"b":7,"v":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"b":8,"v":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[8.43]}},{"b":13,"v":{"DEFAULT":[17.95]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, +{"f":9,"b":[{"b":0,"v":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"b":1,"v":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"b":2,"v":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"b":3,"v":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"b":4,"v":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"b":5,"v":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"b":6,"v":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"b":7,"v":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"b":8,"v":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[10.93]}},{"b":11,"v":{"DEFAULT":[11.03]}},{"b":12,"v":{"DEFAULT":[50.82]}},{"b":13,"v":{"DEFAULT":[103.81]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46]}}]}, +{"f":10,"b":[{"b":0,"v":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"b":1,"v":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"b":2,"v":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"b":3,"v":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"b":4,"v":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"b":5,"v":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"b":6,"v":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"b":7,"v":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"b":8,"v":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.81]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[43.5]}}]}, +{"f":11,"b":[{"b":0,"v":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"b":1,"v":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"b":2,"v":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"b":3,"v":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"b":4,"v":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"b":5,"v":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"b":6,"v":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"b":7,"v":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"b":8,"v":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"b":9,"v":{"DEFAULT":[1.97]}},{"b":10,"v":{"DEFAULT":[6.97]}},{"b":11,"v":{"DEFAULT":[6.97]}},{"b":12,"v":{"DEFAULT":[7.02]}},{"b":13,"v":{"DEFAULT":[47.96]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[215.7]}}]}, +{"f":12,"b":[{"b":0,"v":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"b":1,"v":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"b":2,"v":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"b":3,"v":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"b":4,"v":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"b":5,"v":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"b":6,"v":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"b":7,"v":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"b":8,"v":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"b":9,"v":{"DEFAULT":[41.06]}},{"b":10,"v":{"DEFAULT":[52.67]}},{"b":11,"v":{"DEFAULT":[52.88]}},{"b":12,"v":{"DEFAULT":[49.37]}},{"b":13,"v":{"DEFAULT":[134.16]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[76.6]}}]}, +{"f":13,"b":[{"b":0,"v":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"b":1,"v":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"b":2,"v":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"b":3,"v":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"b":4,"v":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"b":5,"v":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"b":6,"v":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"b":7,"v":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"b":8,"v":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"b":9,"v":{"DEFAULT":[51.83]}},{"b":10,"v":{"DEFAULT":[64.79]}},{"b":11,"v":{"DEFAULT":[64.85]}},{"b":12,"v":{"DEFAULT":[61.3]}},{"b":13,"v":{"DEFAULT":[136.82]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[67.2]}}]}, +{"f":14,"b":[{"b":0,"v":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"b":1,"v":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"b":2,"v":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"b":3,"v":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"b":4,"v":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"b":5,"v":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"b":6,"v":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"b":7,"v":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"b":8,"v":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.28]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, +{"f":15,"b":[{"b":0,"v":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"b":1,"v":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"b":2,"v":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"b":3,"v":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"b":4,"v":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"b":5,"v":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"b":6,"v":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"b":7,"v":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"b":8,"v":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.83]}},{"b":12,"v":{"DEFAULT":[1.56]}},{"b":13,"v":{"DEFAULT":[28.02]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.2]}}]}, +{"f":16,"b":[{"b":0,"v":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"b":1,"v":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"b":2,"v":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"b":3,"v":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"b":4,"v":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"b":5,"v":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"b":6,"v":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"b":7,"v":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"b":8,"v":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.82]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.59]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, +{"f":17,"b":[{"b":0,"v":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"b":1,"v":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"b":2,"v":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"b":3,"v":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"b":4,"v":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"b":5,"v":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"b":6,"v":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"b":7,"v":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"b":8,"v":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[28.58]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[60.7]}}]}, +{"f":18,"b":[{"b":0,"v":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"b":1,"v":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"b":2,"v":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"b":3,"v":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"b":4,"v":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"b":5,"v":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"b":6,"v":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"b":7,"v":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"b":8,"v":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"b":9,"v":{"DEFAULT":[0.72]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[1.25]}},{"b":13,"v":{"DEFAULT":[36.28]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[67.8]}}]}, +{"f":19,"b":[{"b":0,"v":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"b":1,"v":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"b":2,"v":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"b":4,"v":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"b":5,"v":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"b":6,"v":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"b":7,"v":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"b":8,"v":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.85]}},{"b":11,"v":{"DEFAULT":[1.85]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.65]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[38.4]}}]}, +{"f":20,"b":[{"b":0,"v":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"b":1,"v":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"b":2,"v":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"b":3,"v":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"b":4,"v":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"b":5,"v":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"b":6,"v":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"b":7,"v":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"b":8,"v":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.71]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.81]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[39.8]}}]}, +{"f":21,"b":[{"b":0,"v":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"b":1,"v":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"b":2,"v":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"b":3,"v":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"b":4,"v":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"b":5,"v":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"b":6,"v":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"b":7,"v":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"b":8,"v":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[5.37]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[5.48]}},{"b":13,"v":{"DEFAULT":[37.69]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[346.6]}}]}, +{"f":22,"b":[{"b":0,"v":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"b":1,"v":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"b":2,"v":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"b":3,"v":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"b":4,"v":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"b":5,"v":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"b":6,"v":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"b":7,"v":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"b":8,"v":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.23]}},{"b":11,"v":{"DEFAULT":[2.21]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[15.95]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.1]}}]}, +{"f":23,"b":[{"b":0,"v":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"b":1,"v":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"b":2,"v":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"b":3,"v":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"b":4,"v":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"b":5,"v":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"b":6,"v":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"b":7,"v":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"b":8,"v":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[7.23]}},{"b":11,"v":{"DEFAULT":[7.31]}},{"b":12,"v":{"DEFAULT":[1.31]}},{"b":13,"v":{"DEFAULT":[63.36]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[68.8]}}]}, +{"f":24,"b":[{"b":0,"v":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"b":1,"v":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"b":2,"v":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"b":3,"v":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"b":4,"v":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"b":6,"v":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"b":7,"v":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"b":8,"v":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[2.67]}},{"b":13,"v":{"DEFAULT":[23.84]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[168.7]}}]}, +{"f":25,"b":[{"b":0,"v":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"b":1,"v":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"b":2,"v":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"b":3,"v":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"b":4,"v":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"b":6,"v":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"b":7,"v":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"b":8,"v":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[1.91]}},{"b":11,"v":{"DEFAULT":[1.95]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[13.06]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[44.6]}}]}, +{"f":26,"b":[{"b":0,"v":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"b":1,"v":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"b":2,"v":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"b":3,"v":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"b":4,"v":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"b":5,"v":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"b":6,"v":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"b":7,"v":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"b":8,"v":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[45.8]}}]}, +{"f":27,"b":[{"b":0,"v":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"b":1,"v":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"b":2,"v":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"b":3,"v":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"b":4,"v":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"b":5,"v":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"b":6,"v":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"b":7,"v":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"b":8,"v":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.04]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.5]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[3.7]}},{"b":16,"v":{"DEFAULT":[30.9]}}]}, +{"f":28,"b":[{"b":0,"v":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"b":1,"v":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"b":2,"v":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"b":3,"v":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"b":4,"v":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"b":5,"v":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"b":6,"v":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"b":7,"v":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"b":8,"v":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.67]}},{"b":11,"v":{"DEFAULT":[4.71]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[57.4]}}]}, +{"f":29,"b":[{"b":0,"v":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"b":1,"v":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"b":2,"v":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"b":3,"v":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"b":4,"v":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"b":5,"v":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"b":6,"v":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"b":7,"v":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"b":8,"v":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.16]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.1]}}]}, +{"f":30,"b":[{"b":0,"v":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"b":1,"v":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"b":2,"v":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"b":3,"v":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"b":4,"v":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"b":5,"v":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"b":6,"v":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"b":7,"v":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"b":8,"v":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[8.22]}},{"b":10,"v":{"DEFAULT":[14.16]}},{"b":11,"v":{"DEFAULT":[14.16]}},{"b":12,"v":{"DEFAULT":[9.13]}},{"b":13,"v":{"DEFAULT":[63.93]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[984.2]}}]}, +{"f":31,"b":[{"b":0,"v":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"b":1,"v":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"b":2,"v":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"b":3,"v":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"b":4,"v":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"b":5,"v":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"b":6,"v":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"b":7,"v":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"b":8,"v":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.43]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[27.95]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[36.5]}}]}, +{"f":32,"b":[{"b":0,"v":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"b":1,"v":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"b":2,"v":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"b":3,"v":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"b":4,"v":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"b":5,"v":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"b":6,"v":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"b":7,"v":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"b":8,"v":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[23.76]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[43.6]}}]}, +{"f":33,"b":[{"b":0,"v":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"b":1,"v":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"b":2,"v":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"b":3,"v":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"b":4,"v":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"b":5,"v":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"b":6,"v":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"b":7,"v":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"b":8,"v":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.56]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, +{"f":34,"b":[{"b":0,"v":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"b":1,"v":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"b":2,"v":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"b":3,"v":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"b":4,"v":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"b":5,"v":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"b":6,"v":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"b":7,"v":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"b":8,"v":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"b":9,"v":{"DEFAULT":[5.25]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.23]}},{"b":12,"v":{"DEFAULT":[6.26]}},{"b":13,"v":{"DEFAULT":[61.09]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[122.1]}}]}, +{"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"b":1,"v":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"b":2,"v":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"b":3,"v":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"b":4,"v":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"b":5,"v":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"b":7,"v":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"b":8,"v":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[4.18]}},{"b":11,"v":{"DEFAULT":[4.21]}},{"b":12,"v":{"DEFAULT":[1.06]}},{"b":13,"v":{"DEFAULT":[34.04]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[37.3]}}]}, +{"f":36,"b":[{"b":0,"v":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"b":1,"v":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"b":2,"v":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"b":3,"v":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"b":4,"v":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"b":5,"v":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"b":6,"v":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"b":7,"v":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"b":8,"v":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[30.97]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[75.5]}}]}, +{"f":37,"b":[{"b":0,"v":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"b":1,"v":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"b":2,"v":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"b":3,"v":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"b":4,"v":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"b":5,"v":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"b":6,"v":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"b":7,"v":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"b":8,"v":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.28]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[261.9]}}]}, +{"f":38,"b":[{"b":0,"v":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"b":1,"v":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"b":2,"v":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"b":3,"v":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"b":4,"v":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"b":5,"v":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"b":6,"v":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"b":7,"v":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"b":8,"v":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[26.76]}},{"b":14,"v":{"DEFAULT":[8.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, +{"f":39,"b":[{"b":0,"v":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"b":1,"v":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"b":2,"v":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"b":3,"v":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"b":4,"v":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"b":5,"v":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"b":6,"v":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"b":7,"v":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"b":8,"v":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[35.34]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, +{"f":40,"b":[{"b":0,"v":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"b":1,"v":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"b":2,"v":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"b":3,"v":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"b":4,"v":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"b":5,"v":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"b":6,"v":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"b":7,"v":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"b":8,"v":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.05]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.12]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[46.7]}}]}, +{"f":41,"b":[{"b":0,"v":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"b":1,"v":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"b":2,"v":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"b":3,"v":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"b":4,"v":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"b":5,"v":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"b":6,"v":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"b":7,"v":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"b":8,"v":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.07]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[23.88]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[48.9]}}]}, +{"f":42,"b":[{"b":0,"v":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"b":1,"v":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"b":2,"v":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"b":3,"v":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"b":4,"v":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"b":5,"v":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"b":6,"v":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"b":7,"v":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"b":8,"v":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[27.01]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[78.9]}}]}, +{"f":43,"b":[{"b":0,"v":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"b":1,"v":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"b":2,"v":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"b":3,"v":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"b":4,"v":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"b":5,"v":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"b":6,"v":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"b":7,"v":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"b":8,"v":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.3]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, +{"f":44,"b":[{"b":0,"v":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"b":1,"v":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"b":2,"v":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"b":3,"v":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"b":4,"v":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"b":5,"v":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"b":6,"v":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"b":7,"v":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"b":8,"v":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[62.3]}}]}, +{"f":45,"b":[{"b":0,"v":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"b":1,"v":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"b":2,"v":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"b":3,"v":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"b":5,"v":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"b":6,"v":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"b":7,"v":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"b":8,"v":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.29]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[41.4]}}]}, +{"f":46,"b":[{"b":0,"v":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"b":1,"v":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"b":2,"v":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"b":3,"v":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"b":4,"v":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"b":5,"v":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"b":6,"v":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"b":7,"v":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"b":8,"v":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, +{"f":47,"b":[{"b":0,"v":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"b":1,"v":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"b":2,"v":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"b":3,"v":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"b":4,"v":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"b":5,"v":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"b":6,"v":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"b":7,"v":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"b":8,"v":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[12.64]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[75.28]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[80.6]}}]}, +{"f":48,"b":[{"b":0,"v":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"b":1,"v":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"b":2,"v":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"b":3,"v":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"b":4,"v":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"b":5,"v":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"b":6,"v":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"b":7,"v":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"b":8,"v":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[87.4]}}]}, +{"f":49,"b":[{"b":0,"v":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"b":1,"v":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"b":2,"v":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"b":3,"v":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"b":4,"v":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"b":5,"v":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"b":6,"v":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"b":7,"v":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"b":8,"v":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.22]}},{"b":11,"v":{"DEFAULT":[15.33]}},{"b":12,"v":{"DEFAULT":[4.09]}},{"b":13,"v":{"DEFAULT":[114.92]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[629.5]}}]}, +{"f":50,"b":[{"b":0,"v":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"b":1,"v":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"b":2,"v":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"b":3,"v":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"b":4,"v":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"b":5,"v":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"b":6,"v":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"b":7,"v":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"b":8,"v":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.34]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.66]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[172.1]}}]}, +{"f":51,"b":[{"b":0,"v":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"b":1,"v":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"b":2,"v":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"b":3,"v":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"b":4,"v":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"b":5,"v":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"b":6,"v":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"b":7,"v":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"b":8,"v":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[5.51]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.55]}},{"b":13,"v":{"DEFAULT":[37.22]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[222.1]}}]}, +{"f":52,"b":[{"b":0,"v":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"b":1,"v":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"b":2,"v":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"b":3,"v":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"b":4,"v":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"b":5,"v":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"b":6,"v":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"b":7,"v":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"b":8,"v":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.86]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[21.08]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, +{"f":53,"b":[{"b":0,"v":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"b":1,"v":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"b":2,"v":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"b":3,"v":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"b":4,"v":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"b":5,"v":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"b":6,"v":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"b":7,"v":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"b":8,"v":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.67]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.04]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[38.7]}}]}, +{"f":54,"b":[{"b":0,"v":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"b":1,"v":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"b":2,"v":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"b":3,"v":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"b":4,"v":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"b":5,"v":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"b":6,"v":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"b":7,"v":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"b":8,"v":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[33.92]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[43.3]}}]}, +{"f":55,"b":[{"b":0,"v":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"b":1,"v":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"b":2,"v":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"b":3,"v":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"b":4,"v":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"b":5,"v":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"b":6,"v":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"b":7,"v":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"b":8,"v":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.36]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[1.37]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[77.8]}}]}, +{"f":56,"b":[{"b":0,"v":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"b":1,"v":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"b":3,"v":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"b":4,"v":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"b":5,"v":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"b":6,"v":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"b":7,"v":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"b":8,"v":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.47]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[19.02]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[37.4]}}]}, +{"f":57,"b":[{"b":0,"v":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"b":1,"v":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"b":2,"v":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"b":3,"v":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"b":4,"v":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"b":5,"v":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"b":6,"v":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"b":7,"v":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"b":8,"v":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[1.03]}},{"b":13,"v":{"DEFAULT":[17.5]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[79.9]}}]}, +{"f":58,"b":[{"b":0,"v":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"b":1,"v":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"b":2,"v":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"b":3,"v":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"b":4,"v":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"b":5,"v":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"b":6,"v":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"b":7,"v":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"b":8,"v":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.15]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.64]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[95.2]}}]}, +{"f":59,"b":[{"b":0,"v":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"b":1,"v":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"b":2,"v":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"b":3,"v":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"b":4,"v":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"b":5,"v":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"b":6,"v":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"b":7,"v":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"b":8,"v":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.36]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[53.9]}}]}, +{"f":60,"b":[{"b":0,"v":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"b":1,"v":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"b":2,"v":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"b":3,"v":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"b":4,"v":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"b":5,"v":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"b":6,"v":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"b":8,"v":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.43]}},{"b":11,"v":{"DEFAULT":[2.46]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, +{"f":61,"b":[{"b":0,"v":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"b":1,"v":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"b":2,"v":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"b":3,"v":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"b":4,"v":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"b":5,"v":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"b":6,"v":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"b":7,"v":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"b":8,"v":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[37.5]}}]}, +{"f":62,"b":[{"b":0,"v":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"b":1,"v":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"b":2,"v":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"b":3,"v":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"b":4,"v":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"b":6,"v":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"b":7,"v":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"b":8,"v":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.34]}},{"b":11,"v":{"DEFAULT":[2.35]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.11]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, +{"f":63,"b":[{"b":0,"v":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"b":1,"v":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"b":2,"v":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"b":3,"v":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"b":4,"v":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"b":5,"v":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"b":6,"v":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"b":7,"v":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"b":8,"v":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.1]}},{"b":11,"v":{"DEFAULT":[8.53]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[480.3]}}]}, +{"f":64,"b":[{"b":0,"v":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"b":1,"v":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"b":2,"v":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"b":3,"v":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"b":4,"v":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"b":5,"v":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"b":6,"v":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"b":7,"v":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"b":8,"v":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, +{"f":65,"b":[{"b":0,"v":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"b":1,"v":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"b":2,"v":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"b":3,"v":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"b":4,"v":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"b":5,"v":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"b":6,"v":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"b":7,"v":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"b":8,"v":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.42]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[64.7]}}]}, +{"f":66,"b":[{"b":0,"v":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"b":1,"v":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"b":2,"v":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"b":3,"v":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"b":4,"v":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"b":5,"v":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"b":6,"v":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"b":7,"v":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"b":8,"v":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[74.2]}}]}, +{"f":67,"b":[{"b":0,"v":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"b":1,"v":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"b":2,"v":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"b":3,"v":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"b":4,"v":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"b":5,"v":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"b":6,"v":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"b":7,"v":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"b":8,"v":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"b":9,"v":{"DEFAULT":[2.85]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[290.1]}}]}, +{"f":68,"b":[{"b":0,"v":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"b":1,"v":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"b":2,"v":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"b":3,"v":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"b":4,"v":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"b":5,"v":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"b":6,"v":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"b":7,"v":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"b":8,"v":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[4.01]}},{"b":11,"v":{"DEFAULT":[4.03]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.84]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.7]}}]}, +{"f":69,"b":[{"b":0,"v":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"b":1,"v":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"b":2,"v":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"b":3,"v":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"b":4,"v":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"b":5,"v":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"b":6,"v":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"b":7,"v":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"b":8,"v":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[57.1]}}]}, +{"f":70,"b":[{"b":0,"v":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"b":1,"v":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"b":2,"v":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"b":3,"v":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"b":4,"v":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"b":5,"v":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"b":6,"v":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"b":7,"v":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"b":8,"v":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"b":9,"v":{"DEFAULT":[3.38]}},{"b":10,"v":{"DEFAULT":[4.91]}},{"b":11,"v":{"DEFAULT":[5.01]}},{"b":12,"v":{"DEFAULT":[3.66]}},{"b":13,"v":{"DEFAULT":[16.28]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[107.8]}}]}, +{"f":71,"b":[{"b":0,"v":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"b":1,"v":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"b":3,"v":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"b":4,"v":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"b":5,"v":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"b":6,"v":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"b":7,"v":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"b":8,"v":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.33]}},{"b":13,"v":{"DEFAULT":[23.83]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, +{"f":72,"b":[{"b":0,"v":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"b":1,"v":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"b":2,"v":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"b":3,"v":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"b":4,"v":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"b":5,"v":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"b":6,"v":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"b":7,"v":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"b":8,"v":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[45.5]}}]}, +{"f":73,"b":[{"b":0,"v":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"b":1,"v":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"b":2,"v":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"b":3,"v":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"b":4,"v":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"b":5,"v":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"b":6,"v":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"b":7,"v":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"b":8,"v":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[19.06]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, +{"f":74,"b":[{"b":0,"v":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"b":1,"v":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"b":2,"v":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"b":3,"v":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"b":4,"v":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"b":5,"v":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"b":6,"v":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"b":7,"v":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.67]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.29]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, +{"f":75,"b":[{"b":0,"v":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"b":1,"v":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"b":2,"v":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"b":3,"v":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"b":4,"v":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"b":5,"v":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"b":6,"v":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"b":7,"v":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"b":8,"v":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[40.4]}}]}, +{"f":76,"b":[{"b":0,"v":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"b":1,"v":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"b":2,"v":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"b":3,"v":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"b":4,"v":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"b":5,"v":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"b":6,"v":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"b":7,"v":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"b":8,"v":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[49.15]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[61.2]}}]}, +{"f":77,"b":[{"b":0,"v":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"b":1,"v":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"b":2,"v":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"b":3,"v":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"b":4,"v":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"b":5,"v":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"b":6,"v":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"b":7,"v":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"b":8,"v":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.18]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, +{"f":78,"b":[{"b":0,"v":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"b":1,"v":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"b":3,"v":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"b":4,"v":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"b":5,"v":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"b":6,"v":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"b":7,"v":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"b":8,"v":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.17]}},{"b":12,"v":{"DEFAULT":[4.85]}},{"b":13,"v":{"DEFAULT":[39.5]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[97]}}]}, +{"f":79,"b":[{"b":0,"v":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"b":1,"v":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"b":2,"v":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"b":3,"v":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"b":4,"v":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"b":5,"v":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"b":6,"v":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"b":7,"v":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"b":8,"v":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.98]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.92]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, +{"f":80,"b":[{"b":0,"v":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"b":1,"v":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"b":2,"v":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"b":3,"v":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"b":4,"v":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"b":5,"v":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"b":6,"v":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"b":7,"v":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"b":8,"v":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.72]}},{"b":11,"v":{"DEFAULT":[8.78]}},{"b":12,"v":{"DEFAULT":[2.14]}},{"b":13,"v":{"DEFAULT":[73.16]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[236.1]}}]}, +{"f":81,"b":[{"b":0,"v":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"b":1,"v":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"b":2,"v":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"b":3,"v":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"b":4,"v":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"b":5,"v":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"b":6,"v":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"b":7,"v":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"b":8,"v":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.35]}},{"b":12,"v":{"DEFAULT":[3.25]}},{"b":13,"v":{"DEFAULT":[53.14]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[366.6]}}]}, +{"f":82,"b":[{"b":0,"v":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"b":1,"v":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"b":2,"v":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"b":3,"v":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"b":4,"v":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"b":5,"v":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"b":6,"v":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"b":7,"v":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"b":8,"v":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[4.59]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.46]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.3]}}]}, +{"f":83,"b":[{"b":0,"v":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"b":1,"v":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"b":2,"v":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"b":3,"v":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"b":4,"v":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"b":5,"v":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"b":6,"v":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"b":7,"v":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"b":8,"v":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.96]}},{"b":13,"v":{"DEFAULT":[33.36]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[206.4]}}]}, +{"f":84,"b":[{"b":0,"v":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"b":1,"v":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"b":2,"v":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"b":3,"v":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"b":4,"v":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"b":5,"v":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"b":6,"v":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"b":7,"v":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"b":8,"v":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[31.62]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.6]}}]}, +{"f":85,"b":[{"b":0,"v":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"b":1,"v":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"b":2,"v":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"b":3,"v":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"b":4,"v":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"b":5,"v":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"b":6,"v":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"b":7,"v":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"b":8,"v":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.55]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.69]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, +{"f":86,"b":[{"b":0,"v":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"b":1,"v":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"b":2,"v":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"b":3,"v":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"b":4,"v":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"b":5,"v":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"b":6,"v":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"b":7,"v":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"b":8,"v":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"b":9,"v":{"DEFAULT":[1.11]}},{"b":10,"v":{"DEFAULT":[5.78]}},{"b":11,"v":{"DEFAULT":[6.22]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[43.49]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, +{"f":87,"b":[{"b":0,"v":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"b":1,"v":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"b":2,"v":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"b":3,"v":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"b":4,"v":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"b":5,"v":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"b":6,"v":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"b":7,"v":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"b":8,"v":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.22]}},{"b":11,"v":{"DEFAULT":[7.78]}},{"b":12,"v":{"DEFAULT":[2.79]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[213.8]}}]}, +{"f":88,"b":[{"b":0,"v":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"b":1,"v":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"b":2,"v":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"b":3,"v":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"b":4,"v":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"b":5,"v":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"b":6,"v":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"b":7,"v":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"b":8,"v":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.27]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.6]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[263.2]}}]}, +{"f":89,"b":[{"b":0,"v":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"b":1,"v":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"b":2,"v":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"b":3,"v":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"b":4,"v":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"b":5,"v":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"b":6,"v":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"b":7,"v":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"b":8,"v":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.14]}},{"b":11,"v":{"DEFAULT":[6.69]}},{"b":12,"v":{"DEFAULT":[2.54]}},{"b":13,"v":{"DEFAULT":[32.52]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[339.2]}}]}, +{"f":90,"b":[{"b":0,"v":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"b":1,"v":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"b":2,"v":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"b":3,"v":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"b":4,"v":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"b":5,"v":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"b":6,"v":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"b":7,"v":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"b":8,"v":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.66]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[70.6]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[213.5]}}]}, +{"f":91,"b":[{"b":0,"v":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"b":1,"v":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"b":2,"v":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"b":3,"v":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"b":4,"v":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"b":5,"v":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"b":6,"v":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"b":7,"v":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"b":8,"v":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.49]}},{"b":12,"v":{"DEFAULT":[1.99]}},{"b":13,"v":{"DEFAULT":[45.39]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[198.3]}}]}, +{"f":92,"b":[{"b":0,"v":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"b":1,"v":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"b":2,"v":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"b":3,"v":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"b":4,"v":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"b":5,"v":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"b":6,"v":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"b":7,"v":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"b":8,"v":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.92]}},{"b":12,"v":{"DEFAULT":[2.43]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[277.3]}}]}, +{"f":93,"b":[{"b":0,"v":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"b":1,"v":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"b":2,"v":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"b":3,"v":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"b":4,"v":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"b":5,"v":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"b":6,"v":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"b":7,"v":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"b":8,"v":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[8.63]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.24]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[225.4]}}]}, +{"f":94,"b":[{"b":0,"v":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"b":1,"v":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"b":2,"v":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"b":3,"v":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"b":4,"v":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"b":5,"v":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"b":6,"v":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"b":7,"v":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"b":8,"v":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.47]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[30.45]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219]}}]}, +{"f":95,"b":[{"b":0,"v":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"b":1,"v":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"b":2,"v":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"b":3,"v":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"b":4,"v":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"b":5,"v":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"b":6,"v":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"b":7,"v":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"b":8,"v":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[37.15]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[201.9]}}]}, +{"f":96,"b":[{"b":0,"v":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"b":1,"v":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"b":2,"v":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"b":3,"v":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"b":4,"v":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"b":5,"v":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"b":6,"v":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"b":7,"v":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"b":8,"v":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[1.27]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.46]}},{"b":12,"v":{"DEFAULT":[2.49]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[209.5]}}]}, +{"f":97,"b":[{"b":0,"v":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"b":1,"v":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"b":2,"v":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"b":3,"v":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"b":4,"v":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"b":5,"v":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"b":6,"v":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"b":7,"v":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"b":8,"v":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[6.17]}},{"b":11,"v":{"DEFAULT":[6.77]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[48.02]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[205]}}]}, +{"f":98,"b":[{"b":0,"v":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"b":1,"v":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"b":3,"v":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"b":4,"v":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"b":5,"v":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"b":6,"v":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"b":7,"v":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"b":8,"v":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.46]}},{"b":10,"v":{"DEFAULT":[6.3]}},{"b":11,"v":{"DEFAULT":[7.02]}},{"b":12,"v":{"DEFAULT":[2.94]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[288.7]}}]}, +{"f":99,"b":[{"b":0,"v":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"b":1,"v":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"b":2,"v":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"b":3,"v":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"b":4,"v":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"b":5,"v":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"b":6,"v":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"b":7,"v":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"b":8,"v":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.57]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.16]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, +{"f":100,"b":[{"b":0,"v":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"b":1,"v":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"b":2,"v":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"b":3,"v":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"b":4,"v":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"b":5,"v":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"b":6,"v":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"b":7,"v":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"b":8,"v":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.52]}},{"b":11,"v":{"DEFAULT":[3.63]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[29.01]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[34.8]}}]}, +{"f":101,"b":[{"b":0,"v":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"b":1,"v":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"b":2,"v":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"b":3,"v":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"b":4,"v":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"b":5,"v":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"b":6,"v":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"b":7,"v":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"b":8,"v":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, +{"f":102,"b":[{"b":0,"v":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"b":1,"v":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"b":2,"v":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"b":3,"v":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"b":4,"v":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"b":5,"v":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"b":6,"v":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"b":7,"v":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"b":8,"v":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[51.1]}}]}, +{"f":103,"b":[{"b":0,"v":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"b":1,"v":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"b":2,"v":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"b":3,"v":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"b":4,"v":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"b":5,"v":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"b":6,"v":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"b":7,"v":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[19.03]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[44.3]}}]}, +{"f":104,"b":[{"b":0,"v":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"b":1,"v":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"b":2,"v":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"b":3,"v":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"b":4,"v":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"b":5,"v":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"b":6,"v":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"b":7,"v":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"b":8,"v":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[31.41]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, +{"f":105,"b":[{"b":0,"v":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"b":1,"v":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"b":2,"v":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"b":3,"v":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"b":4,"v":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"b":5,"v":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"b":6,"v":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"b":7,"v":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"b":8,"v":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.38]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.09]}},{"b":13,"v":{"DEFAULT":[25.84]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[88.4]}}]}, +{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"b":1,"v":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"b":2,"v":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"b":3,"v":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"b":4,"v":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"b":5,"v":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"b":6,"v":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"b":7,"v":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"b":8,"v":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[1.14]}},{"b":13,"v":{"DEFAULT":[39.63]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93]}}]}, +{"f":107,"b":[{"b":0,"v":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"b":1,"v":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"b":2,"v":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"b":3,"v":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"b":4,"v":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"b":5,"v":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"b":6,"v":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"b":7,"v":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"b":8,"v":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"b":9,"v":{"DEFAULT":[0.98]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[98.2]}}]}, +{"f":108,"b":[{"b":0,"v":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"b":1,"v":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"b":2,"v":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"b":3,"v":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"b":4,"v":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"b":5,"v":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"b":6,"v":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"b":7,"v":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"b":8,"v":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.51]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.35]}},{"b":13,"v":{"DEFAULT":[68.56]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[383]}}]}, +{"f":109,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"b":1,"v":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"b":2,"v":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"b":3,"v":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"b":4,"v":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"b":5,"v":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"b":6,"v":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"b":7,"v":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"b":8,"v":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.82]}},{"b":12,"v":{"DEFAULT":[2.53]}},{"b":13,"v":{"DEFAULT":[22.33]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, +{"f":110,"b":[{"b":0,"v":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"b":1,"v":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"b":2,"v":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"b":3,"v":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"b":4,"v":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"b":5,"v":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"b":6,"v":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"b":7,"v":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"b":8,"v":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.75]}},{"b":11,"v":{"DEFAULT":[2.76]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.46]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":111,"b":[{"b":0,"v":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"b":1,"v":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"b":2,"v":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"b":3,"v":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"b":4,"v":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"b":5,"v":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"b":6,"v":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"b":7,"v":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"b":8,"v":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.52]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.98]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, +{"f":112,"b":[{"b":0,"v":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"b":2,"v":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"b":3,"v":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"b":4,"v":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"b":5,"v":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"b":6,"v":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"b":7,"v":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"b":8,"v":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[39.6]}}]}, +{"f":113,"b":[{"b":0,"v":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"b":1,"v":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"b":2,"v":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"b":3,"v":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"b":4,"v":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"b":6,"v":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"b":7,"v":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"b":8,"v":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":114,"b":[{"b":0,"v":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"b":1,"v":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"b":2,"v":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"b":3,"v":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"b":4,"v":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"b":5,"v":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"b":6,"v":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"b":7,"v":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"b":8,"v":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[1.83]}},{"b":11,"v":{"DEFAULT":[1.84]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[12.63]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":115,"b":[{"b":0,"v":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"b":1,"v":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"b":2,"v":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"b":3,"v":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"b":4,"v":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"b":5,"v":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"b":6,"v":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"b":7,"v":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.96]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129]}}]}, +{"f":116,"b":[{"b":0,"v":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"b":1,"v":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"b":2,"v":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"b":3,"v":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"b":5,"v":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"b":6,"v":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"b":7,"v":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"b":8,"v":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.58]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[3.08]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[112.1]}}]}, +{"f":117,"b":[{"b":0,"v":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"b":1,"v":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"b":2,"v":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"b":3,"v":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"b":4,"v":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"b":6,"v":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"b":7,"v":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"b":8,"v":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.76]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, +{"f":118,"b":[{"b":0,"v":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"b":1,"v":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"b":2,"v":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"b":3,"v":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"b":4,"v":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"b":5,"v":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"b":6,"v":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"b":7,"v":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"b":8,"v":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.34]}},{"b":13,"v":{"DEFAULT":[16.49]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[62.2]}}]}, +{"f":119,"b":[{"b":0,"v":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"b":1,"v":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"b":3,"v":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"b":4,"v":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"b":5,"v":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"b":6,"v":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"b":7,"v":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"b":8,"v":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.64]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[29.53]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, +{"f":120,"b":[{"b":0,"v":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"b":1,"v":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"b":2,"v":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"b":3,"v":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"b":4,"v":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"b":5,"v":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"b":6,"v":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"b":7,"v":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"b":8,"v":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.35]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, +{"f":121,"b":[{"b":0,"v":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"b":1,"v":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"b":2,"v":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"b":3,"v":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"b":4,"v":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"b":5,"v":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"b":6,"v":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"b":7,"v":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"b":8,"v":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.5]}}]}, +{"f":122,"b":[{"b":0,"v":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"b":1,"v":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"b":2,"v":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"b":3,"v":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"b":4,"v":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"b":5,"v":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"b":6,"v":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"b":7,"v":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"b":8,"v":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[4.87]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.59]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[203]}}]}, +{"f":123,"b":[{"b":0,"v":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"b":1,"v":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"b":2,"v":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"b":3,"v":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"b":4,"v":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"b":5,"v":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"b":6,"v":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"b":7,"v":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"b":8,"v":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[17.54]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[175.8]}}]}, +{"f":124,"b":[{"b":0,"v":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"b":1,"v":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"b":2,"v":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"b":3,"v":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"b":5,"v":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"b":6,"v":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"b":7,"v":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"b":8,"v":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.19]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, +{"f":125,"b":[{"b":0,"v":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"b":1,"v":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"b":2,"v":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"b":3,"v":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"b":4,"v":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"b":5,"v":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"b":6,"v":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"b":7,"v":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"b":8,"v":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.79]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, +{"f":126,"b":[{"b":0,"v":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"b":1,"v":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"b":2,"v":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"b":3,"v":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"b":4,"v":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"b":5,"v":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"b":6,"v":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"b":7,"v":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"b":8,"v":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[21.66]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[62.4]}}]}, +{"f":127,"b":[{"b":0,"v":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"b":2,"v":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"b":3,"v":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"b":4,"v":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"b":5,"v":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"b":6,"v":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"b":7,"v":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"b":8,"v":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.16]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[44.5]}}]}, +{"f":128,"b":[{"b":0,"v":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"b":1,"v":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"b":2,"v":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"b":3,"v":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"b":4,"v":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"b":5,"v":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"b":6,"v":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"b":7,"v":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"b":8,"v":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.18]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.76]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, +{"f":129,"b":[{"b":0,"v":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"b":1,"v":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"b":2,"v":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"b":3,"v":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"b":4,"v":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"b":5,"v":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"b":6,"v":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"b":7,"v":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"b":8,"v":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.07]}},{"b":11,"v":{"DEFAULT":[6.74]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.86]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[164.4]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"b":1,"v":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"b":3,"v":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"b":4,"v":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"b":5,"v":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"b":6,"v":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"b":7,"v":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"b":8,"v":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.97]}},{"b":11,"v":{"DEFAULT":[1.93]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"b":1,"v":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"b":2,"v":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"b":3,"v":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"b":4,"v":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"b":5,"v":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"b":6,"v":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"b":7,"v":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"b":8,"v":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.48]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.57]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, +{"f":132,"b":[{"b":0,"v":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"b":1,"v":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"b":2,"v":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"b":3,"v":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"b":4,"v":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"b":5,"v":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"b":6,"v":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"b":7,"v":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"b":8,"v":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[1.74]}},{"b":11,"v":{"DEFAULT":[1.76]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, +{"f":133,"b":[{"b":0,"v":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"b":1,"v":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"b":2,"v":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"b":3,"v":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"b":4,"v":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"b":5,"v":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"b":6,"v":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"b":7,"v":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.36]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, +{"f":134,"b":[{"b":0,"v":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"b":1,"v":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"b":2,"v":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"b":3,"v":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"b":4,"v":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"b":5,"v":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"b":6,"v":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"b":7,"v":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"b":8,"v":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.08]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[36.7]}}]}, +{"f":135,"b":[{"b":0,"v":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"b":1,"v":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"b":2,"v":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"b":3,"v":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"b":4,"v":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"b":5,"v":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"b":6,"v":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"b":7,"v":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"b":8,"v":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.41]}},{"b":11,"v":{"DEFAULT":[2.42]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.46]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, +{"f":136,"b":[{"b":0,"v":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"b":1,"v":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"b":2,"v":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"b":3,"v":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"b":4,"v":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"b":5,"v":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"b":6,"v":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"b":7,"v":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"b":8,"v":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.43]}},{"b":12,"v":{"DEFAULT":[0.93]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[70.5]}}]}, +{"f":137,"b":[{"b":0,"v":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"b":1,"v":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"b":2,"v":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"b":3,"v":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"b":4,"v":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"b":5,"v":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"b":6,"v":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"b":7,"v":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"b":8,"v":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.86]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[28.65]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[86.6]}}]}, +{"f":138,"b":[{"b":0,"v":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"b":1,"v":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"b":2,"v":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"b":3,"v":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"b":4,"v":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"b":5,"v":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"b":6,"v":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"b":7,"v":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"b":8,"v":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.29]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, +{"f":139,"b":[{"b":0,"v":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"b":1,"v":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"b":2,"v":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"b":3,"v":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"b":4,"v":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"b":5,"v":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"b":6,"v":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"b":7,"v":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"b":8,"v":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.13]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[22.26]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[67.3]}}]}, +{"f":140,"b":[{"b":0,"v":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"b":1,"v":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"b":2,"v":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"b":3,"v":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"b":4,"v":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"b":5,"v":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"b":6,"v":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"b":7,"v":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"b":8,"v":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.21]}},{"b":11,"v":{"DEFAULT":[4.31]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[31.72]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[89.6]}}]}, +{"f":141,"b":[{"b":0,"v":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"b":1,"v":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"b":2,"v":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"b":3,"v":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"b":4,"v":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"b":5,"v":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"b":6,"v":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"b":7,"v":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"b":8,"v":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.04]}},{"b":11,"v":{"DEFAULT":[3.05]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[21.61]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[71.8]}}]}, +{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"b":1,"v":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"b":2,"v":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"b":3,"v":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"b":4,"v":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"b":5,"v":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"b":6,"v":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"b":7,"v":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"b":8,"v":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.16]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.33]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, +{"f":143,"b":[{"b":0,"v":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"b":2,"v":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"b":3,"v":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"b":4,"v":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"b":5,"v":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"b":6,"v":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"b":7,"v":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"b":8,"v":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.93]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, +{"f":144,"b":[{"b":0,"v":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"b":1,"v":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"b":2,"v":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"b":3,"v":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"b":4,"v":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"b":5,"v":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"b":6,"v":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"b":7,"v":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"b":8,"v":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.79]}},{"b":10,"v":{"DEFAULT":[6.45]}},{"b":11,"v":{"DEFAULT":[6.52]}},{"b":12,"v":{"DEFAULT":[4.93]}},{"b":13,"v":{"DEFAULT":[47.07]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[254.1]}}]}, +{"f":145,"b":[{"b":0,"v":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"b":1,"v":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"b":2,"v":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"b":3,"v":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"b":4,"v":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"b":5,"v":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"b":6,"v":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"b":7,"v":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"b":8,"v":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[6.57]}},{"b":11,"v":{"DEFAULT":[6.82]}},{"b":12,"v":{"DEFAULT":[5.12]}},{"b":13,"v":{"DEFAULT":[48.29]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[263]}}]}, +{"f":146,"b":[{"b":0,"v":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"b":1,"v":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"b":2,"v":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"b":3,"v":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"b":4,"v":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"b":5,"v":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"b":6,"v":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"b":7,"v":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"b":8,"v":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[30.7]}}]}, +{"f":147,"b":[{"b":0,"v":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"b":1,"v":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"b":2,"v":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"b":3,"v":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"b":4,"v":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"b":5,"v":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"b":6,"v":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"b":7,"v":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"b":8,"v":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.31]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.47]}},{"b":13,"v":{"DEFAULT":[25.88]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, +{"f":148,"b":[{"b":0,"v":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"b":1,"v":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"b":2,"v":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"b":3,"v":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"b":4,"v":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"b":5,"v":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"b":6,"v":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"b":7,"v":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"b":8,"v":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[5.38]}},{"b":11,"v":{"DEFAULT":[5.41]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[46.22]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, +{"f":149,"b":[{"b":0,"v":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"b":1,"v":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"b":2,"v":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"b":3,"v":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"b":4,"v":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"b":5,"v":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"b":6,"v":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"b":7,"v":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[17.91]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, +{"f":150,"b":[{"b":0,"v":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"b":1,"v":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"b":2,"v":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"b":3,"v":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"b":4,"v":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"b":5,"v":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"b":6,"v":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"b":7,"v":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"b":8,"v":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[9.84]}},{"b":11,"v":{"DEFAULT":[15.59]}},{"b":12,"v":{"DEFAULT":[44.78]}},{"b":13,"v":{"DEFAULT":[89.78]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, +{"f":151,"b":[{"b":0,"v":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"b":1,"v":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"b":2,"v":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"b":3,"v":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"b":4,"v":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"b":5,"v":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"b":6,"v":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"b":7,"v":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"b":8,"v":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.78]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, +{"f":152,"b":[{"b":0,"v":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"b":1,"v":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"b":2,"v":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"b":3,"v":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"b":4,"v":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"b":5,"v":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"b":6,"v":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"b":7,"v":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"b":8,"v":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[2.33]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.42]}},{"b":12,"v":{"DEFAULT":[2.73]}},{"b":13,"v":{"DEFAULT":[40.57]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[286.8]}}]}, +{"f":153,"b":[{"b":0,"v":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"b":1,"v":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"b":2,"v":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"b":3,"v":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"b":4,"v":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"b":5,"v":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"b":6,"v":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"b":7,"v":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.95]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, +{"f":154,"b":[{"b":0,"v":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"b":1,"v":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"b":2,"v":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"b":3,"v":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"b":4,"v":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"b":5,"v":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"b":6,"v":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"b":7,"v":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"b":8,"v":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.86]}},{"b":11,"v":{"DEFAULT":[9.93]}},{"b":12,"v":{"DEFAULT":[2.45]}},{"b":13,"v":{"DEFAULT":[75.72]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[281.6]}}]}, +{"f":155,"b":[{"b":0,"v":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"b":1,"v":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"b":2,"v":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"b":3,"v":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"b":4,"v":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"b":5,"v":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"b":6,"v":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"b":7,"v":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"b":8,"v":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.98]}},{"b":13,"v":{"DEFAULT":[21.36]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[405.5]}}]}, +{"f":156,"b":[{"b":0,"v":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"b":1,"v":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"b":2,"v":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"b":3,"v":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"b":4,"v":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"b":5,"v":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"b":6,"v":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"b":7,"v":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"b":8,"v":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.42]}},{"b":11,"v":{"DEFAULT":[3.44]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[25.65]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[87.8]}}]}, +{"f":157,"b":[{"b":0,"v":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"b":1,"v":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"b":2,"v":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"b":3,"v":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"b":4,"v":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"b":5,"v":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"b":6,"v":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"b":7,"v":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"b":8,"v":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[16.36]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]}, +{"f":158,"b":[{"b":0,"v":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"b":1,"v":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"b":2,"v":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"b":3,"v":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"b":4,"v":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"b":5,"v":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"b":6,"v":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"b":7,"v":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"b":8,"v":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.92]}},{"b":10,"v":{"DEFAULT":[29.28]}},{"b":11,"v":{"DEFAULT":[29.73]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[615.46]}},{"b":14,"v":{"DEFAULT":[95.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[104.7]}}]}, +{"f":159,"b":[{"b":0,"v":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"b":1,"v":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"b":2,"v":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"b":3,"v":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"b":4,"v":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"b":5,"v":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"b":6,"v":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"b":7,"v":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"b":8,"v":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, +{"f":160,"b":[{"b":0,"v":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"b":1,"v":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"b":2,"v":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"b":3,"v":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"b":4,"v":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"b":5,"v":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"b":6,"v":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"b":7,"v":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"b":8,"v":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[18.03]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[31.6]}}]}, +{"f":161,"b":[{"b":0,"v":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"b":1,"v":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"b":2,"v":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"b":3,"v":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"b":4,"v":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"b":5,"v":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"b":6,"v":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"b":7,"v":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"b":8,"v":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.21]}},{"b":11,"v":{"DEFAULT":[2.23]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[16.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.6]}}]}, +{"f":162,"b":[{"b":0,"v":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"b":1,"v":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"b":2,"v":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"b":3,"v":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"b":4,"v":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"b":5,"v":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"b":6,"v":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"b":7,"v":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"b":8,"v":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.93]}},{"b":12,"v":{"DEFAULT":[8.44]}},{"b":13,"v":{"DEFAULT":[33.64]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, +{"f":163,"b":[{"b":0,"v":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"b":1,"v":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"b":2,"v":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"b":3,"v":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"b":4,"v":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"b":5,"v":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"b":6,"v":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"b":7,"v":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"b":8,"v":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[38.79]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, +{"f":164,"b":[{"b":0,"v":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"b":2,"v":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"b":3,"v":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"b":4,"v":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"b":5,"v":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"b":6,"v":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"b":7,"v":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"b":8,"v":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.71]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[28.85]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, +{"f":165,"b":[{"b":0,"v":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"b":1,"v":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"b":2,"v":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"b":3,"v":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"b":4,"v":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"b":5,"v":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"b":6,"v":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"b":7,"v":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"b":8,"v":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[4.38]}},{"b":11,"v":{"DEFAULT":[4.45]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.44]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[72.9]}}]}, +{"f":166,"b":[{"b":0,"v":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"b":1,"v":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"b":2,"v":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"b":3,"v":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"b":4,"v":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"b":5,"v":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"b":6,"v":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"b":7,"v":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"b":8,"v":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.62]}},{"b":11,"v":{"DEFAULT":[5.62]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[47.7]}}]}, +{"f":167,"b":[{"b":0,"v":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"b":1,"v":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"b":2,"v":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"b":3,"v":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"b":4,"v":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"b":5,"v":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"b":6,"v":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"b":7,"v":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"b":8,"v":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.92]}},{"b":11,"v":{"DEFAULT":[4.18]}},{"b":12,"v":{"DEFAULT":[2.29]}},{"b":13,"v":{"DEFAULT":[30.94]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[88.2]}}]}, +{"f":168,"b":[{"b":0,"v":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"b":1,"v":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"b":2,"v":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"b":3,"v":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"b":4,"v":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"b":5,"v":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"b":6,"v":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"b":7,"v":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"b":8,"v":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[5.83]}},{"b":11,"v":{"DEFAULT":[8.21]}},{"b":12,"v":{"DEFAULT":[5.94]}},{"b":13,"v":{"DEFAULT":[48.32]}},{"b":14,"v":{"DEFAULT":[127.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[131.9]}}]}, +{"f":169,"b":[{"b":0,"v":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"b":1,"v":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"b":2,"v":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"b":3,"v":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"b":4,"v":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"b":5,"v":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"b":7,"v":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"b":8,"v":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.09]}},{"b":11,"v":{"DEFAULT":[4.12]}},{"b":12,"v":{"DEFAULT":[1.21]}},{"b":13,"v":{"DEFAULT":[31.89]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.9]}}]}, +{"f":170,"b":[{"b":0,"v":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"b":1,"v":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"b":2,"v":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"b":3,"v":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"b":4,"v":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"b":5,"v":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"b":6,"v":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"b":7,"v":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"b":8,"v":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.84]}},{"b":10,"v":{"DEFAULT":[3.63]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.49]}},{"b":13,"v":{"DEFAULT":[26.84]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[83.7]}}]}, +{"f":171,"b":[{"b":0,"v":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"b":1,"v":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"b":2,"v":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"b":3,"v":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"b":4,"v":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"b":5,"v":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"b":6,"v":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"b":7,"v":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"b":8,"v":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[4.38]}},{"b":10,"v":{"DEFAULT":[7.91]}},{"b":11,"v":{"DEFAULT":[8.11]}},{"b":12,"v":{"DEFAULT":[4.66]}},{"b":13,"v":{"DEFAULT":[36.85]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1073.1]}}]}, +{"f":172,"b":[{"b":0,"v":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"b":1,"v":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"b":2,"v":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"b":3,"v":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"b":4,"v":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"b":5,"v":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"b":6,"v":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"b":7,"v":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"b":8,"v":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.84]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, +{"f":173,"b":[{"b":0,"v":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"b":1,"v":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"b":2,"v":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"b":3,"v":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"b":4,"v":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"b":5,"v":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"b":6,"v":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"b":7,"v":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"b":8,"v":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[3.16]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[15.78]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, +{"f":174,"b":[{"b":0,"v":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"b":1,"v":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"b":2,"v":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"b":3,"v":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"b":4,"v":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"b":5,"v":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"b":6,"v":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"b":7,"v":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"b":8,"v":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[7.49]}},{"b":11,"v":{"DEFAULT":[9.56]}},{"b":12,"v":{"DEFAULT":[5.93]}},{"b":13,"v":{"DEFAULT":[56.65]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[282.7]}}]}, +{"f":175,"b":[{"b":0,"v":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"b":1,"v":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"b":2,"v":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"b":3,"v":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"b":4,"v":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"b":5,"v":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"b":6,"v":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"b":7,"v":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"b":8,"v":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.75]}},{"b":11,"v":{"DEFAULT":[6.33]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.65]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[174.6]}}]}, +{"f":176,"b":[{"b":0,"v":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"b":1,"v":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"b":2,"v":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"b":4,"v":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"b":5,"v":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"b":6,"v":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"b":7,"v":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"b":8,"v":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.82]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.93]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, +{"f":177,"b":[{"b":0,"v":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"b":1,"v":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"b":2,"v":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"b":3,"v":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"b":4,"v":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"b":5,"v":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"b":6,"v":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"b":7,"v":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"b":8,"v":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[19.82]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, +{"f":178,"b":[{"b":0,"v":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"b":1,"v":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"b":2,"v":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"b":3,"v":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"b":4,"v":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"b":5,"v":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"b":6,"v":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"b":7,"v":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"b":8,"v":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.32]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, +{"f":179,"b":[{"b":0,"v":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"b":1,"v":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"b":2,"v":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"b":3,"v":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"b":4,"v":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"b":5,"v":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"b":6,"v":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"b":7,"v":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"b":8,"v":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.76]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[70.7]}}]}, +{"f":180,"b":[{"b":0,"v":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"b":1,"v":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"b":2,"v":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"b":3,"v":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"b":4,"v":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"b":5,"v":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"b":6,"v":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"b":7,"v":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"b":8,"v":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.03]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":181,"b":[{"b":0,"v":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"b":2,"v":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"b":3,"v":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"b":4,"v":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"b":5,"v":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"b":6,"v":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"b":7,"v":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"b":8,"v":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[30.89]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.2]}}]}, +{"f":182,"b":[{"b":0,"v":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"b":1,"v":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"b":2,"v":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"b":3,"v":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"b":4,"v":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"b":5,"v":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"b":6,"v":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"b":7,"v":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"b":8,"v":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.12]}},{"b":11,"v":{"DEFAULT":[8.55]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.81]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[479.6]}}]}, +{"f":183,"b":[{"b":0,"v":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"b":1,"v":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"b":2,"v":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"b":3,"v":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"b":4,"v":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"b":5,"v":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"b":6,"v":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"b":7,"v":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"b":8,"v":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.51]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[284.8]}}]}, +{"f":184,"b":[{"b":0,"v":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"b":1,"v":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"b":2,"v":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"b":3,"v":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"b":4,"v":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"b":5,"v":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"b":6,"v":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"b":7,"v":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"b":8,"v":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.44]}},{"b":12,"v":{"DEFAULT":[1.42]}},{"b":13,"v":{"DEFAULT":[46.68]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, +{"f":185,"b":[{"b":0,"v":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"b":1,"v":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"b":2,"v":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"b":3,"v":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"b":4,"v":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"b":5,"v":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"b":6,"v":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"b":7,"v":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"b":8,"v":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[3.61]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[114.2]}}]}, +{"f":186,"b":[{"b":0,"v":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"b":1,"v":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"b":2,"v":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"b":3,"v":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"b":4,"v":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"b":5,"v":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"b":6,"v":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"b":7,"v":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"b":8,"v":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.22]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[4.78]}},{"b":13,"v":{"DEFAULT":[39.14]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[103.1]}}]}, +{"f":187,"b":[{"b":0,"v":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"b":1,"v":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"b":2,"v":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"b":3,"v":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"b":4,"v":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"b":5,"v":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"b":6,"v":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"b":7,"v":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"b":8,"v":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.73]}},{"b":11,"v":{"DEFAULT":[8.75]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.02]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[240.3]}}]}, +{"f":188,"b":[{"b":0,"v":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"b":1,"v":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"b":2,"v":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"b":3,"v":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"b":4,"v":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"b":5,"v":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"b":6,"v":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"b":7,"v":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"b":8,"v":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[4.35]}},{"b":11,"v":{"DEFAULT":[4.36]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.11]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[163.7]}}]}, +{"f":189,"b":[{"b":0,"v":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"b":1,"v":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"b":2,"v":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"b":3,"v":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"b":4,"v":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"b":5,"v":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"b":6,"v":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"b":7,"v":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"b":8,"v":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, +{"f":190,"b":[{"b":0,"v":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"b":1,"v":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"b":2,"v":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"b":3,"v":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"b":4,"v":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"b":5,"v":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"b":6,"v":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"b":7,"v":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"b":8,"v":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"b":9,"v":{"DEFAULT":[7.66]}},{"b":10,"v":{"DEFAULT":[21.32]}},{"b":11,"v":{"DEFAULT":[24.73]}},{"b":12,"v":{"DEFAULT":[40.66]}},{"b":13,"v":{"DEFAULT":[128.26]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2470.1]}}]}, +{"f":191,"b":[{"b":0,"v":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"b":1,"v":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"b":2,"v":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"b":3,"v":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"b":4,"v":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"b":5,"v":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"b":6,"v":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"b":7,"v":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"b":8,"v":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3.03]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[65.1]}}]}, +{"f":192,"b":[{"b":0,"v":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"b":1,"v":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"b":2,"v":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"b":3,"v":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"b":4,"v":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"b":5,"v":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"b":6,"v":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"b":7,"v":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"b":8,"v":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, +{"f":193,"b":[{"b":0,"v":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"b":1,"v":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"b":2,"v":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"b":3,"v":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"b":4,"v":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"b":5,"v":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"b":6,"v":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"b":7,"v":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"b":8,"v":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.51]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.73]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, +{"f":194,"b":[{"b":0,"v":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"b":1,"v":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"b":2,"v":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"b":3,"v":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"b":4,"v":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"b":5,"v":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"b":6,"v":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"b":7,"v":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"b":8,"v":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.12]}},{"b":11,"v":{"DEFAULT":[4.19]}},{"b":12,"v":{"DEFAULT":[1.27]}},{"b":13,"v":{"DEFAULT":[30.28]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[235.9]}}]}, +{"f":195,"b":[{"b":0,"v":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"b":1,"v":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"b":2,"v":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"b":3,"v":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"b":4,"v":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"b":5,"v":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"b":6,"v":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"b":7,"v":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"b":8,"v":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"b":9,"v":{"DEFAULT":[1.88]}},{"b":10,"v":{"DEFAULT":[10.98]}},{"b":11,"v":{"DEFAULT":[19.28]}},{"b":12,"v":{"DEFAULT":[9.94]}},{"b":13,"v":{"DEFAULT":[93.05]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[565.4]}}]}, +{"f":196,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"b":1,"v":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"b":2,"v":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"b":3,"v":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"b":4,"v":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"b":5,"v":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"b":6,"v":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"b":7,"v":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"b":8,"v":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.22]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[42]}}]}, +{"f":197,"b":[{"b":0,"v":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"b":1,"v":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"b":2,"v":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"b":3,"v":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"b":4,"v":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"b":5,"v":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"b":6,"v":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"b":7,"v":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"b":8,"v":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[3.94]}},{"b":13,"v":{"DEFAULT":[34.52]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, +{"f":198,"b":[{"b":0,"v":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"b":1,"v":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"b":2,"v":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"b":3,"v":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"b":4,"v":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"b":5,"v":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"b":6,"v":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"b":7,"v":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"b":8,"v":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[9.25]}},{"b":11,"v":{"DEFAULT":[9.25]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[85.79]}},{"b":14,"v":{"DEFAULT":[12.6]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, +{"f":199,"b":[{"b":0,"v":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"b":1,"v":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"b":2,"v":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"b":3,"v":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"b":4,"v":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"b":5,"v":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"b":6,"v":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"b":7,"v":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"b":8,"v":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.23]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.28]}},{"b":13,"v":{"DEFAULT":[16.62]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[63.8]}}]}, +{"f":200,"b":[{"b":0,"v":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"b":1,"v":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"b":2,"v":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"b":3,"v":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"b":4,"v":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"b":5,"v":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"b":6,"v":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"b":7,"v":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"b":8,"v":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.91]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.45]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, +{"f":201,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"b":1,"v":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"b":2,"v":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"b":3,"v":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"b":4,"v":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"b":5,"v":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"b":6,"v":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"b":7,"v":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"b":8,"v":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.55]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[64.2]}}]}, +{"f":202,"b":[{"b":0,"v":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"b":1,"v":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"b":2,"v":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"b":3,"v":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"b":4,"v":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"b":6,"v":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"b":7,"v":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"b":8,"v":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[19.21]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, +{"f":203,"b":[{"b":0,"v":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"b":1,"v":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"b":2,"v":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"b":3,"v":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"b":4,"v":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"b":5,"v":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"b":6,"v":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"b":7,"v":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"b":8,"v":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.17]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.72]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[95.8]}}]}, +{"f":204,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"b":1,"v":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"b":2,"v":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"b":3,"v":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"b":4,"v":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"b":5,"v":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"b":6,"v":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"b":7,"v":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"b":8,"v":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, +{"f":205,"b":[{"b":0,"v":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"b":1,"v":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"b":2,"v":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"b":3,"v":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"b":4,"v":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"b":5,"v":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"b":6,"v":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"b":7,"v":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"b":8,"v":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.92]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, +{"f":206,"b":[{"b":0,"v":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"b":1,"v":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"b":2,"v":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"b":3,"v":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"b":4,"v":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"b":5,"v":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"b":6,"v":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"b":7,"v":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"b":8,"v":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.79]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":207,"b":[{"b":0,"v":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"b":1,"v":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"b":2,"v":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"b":3,"v":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"b":4,"v":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"b":5,"v":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"b":6,"v":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"b":7,"v":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"b":8,"v":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.94]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[22.52]}},{"b":14,"v":{"DEFAULT":[8.5]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[38.5]}}]}, +{"f":208,"b":[{"b":0,"v":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"b":1,"v":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"b":2,"v":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"b":4,"v":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"b":5,"v":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"b":6,"v":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"b":7,"v":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"b":8,"v":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.11]}},{"b":13,"v":{"DEFAULT":[28.62]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.9]}},{"b":16,"v":{"DEFAULT":[87.1]}}]}, +{"f":209,"b":[{"b":0,"v":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"b":1,"v":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"b":2,"v":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"b":3,"v":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"b":4,"v":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"b":5,"v":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"b":6,"v":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"b":7,"v":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[22.22]}},{"b":14,"v":{"DEFAULT":[37.2]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, +{"f":210,"b":[{"b":0,"v":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"b":1,"v":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"b":2,"v":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"b":3,"v":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"b":4,"v":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"b":5,"v":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"b":6,"v":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"b":7,"v":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"b":8,"v":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[21.14]}},{"b":14,"v":{"DEFAULT":[37]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[72.1]}}]},]; +export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.31-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index ceaaeb1a3..c27a85587 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[26,26.6,25.9,25.7,26.2,25,25.9,26,25.9,25.9,26,26,25.6,26,25.8],"script":[2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3],"paint":[23.2,23.7,23.1,22.8,23.4,22.3,23.1,23.1,23.1,23.1,23.2,23.2,22.7,23.2,23]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[29.4,30.1,29.9,29.3,30.2,29.8,30.9,30.7,29.6,30.7,30.2,30.3,29.5,30.4,30],"script":[5.1,5.3,5.3,5.2,5.1,5,5.2,5.3,5.1,5.3,5.3,5.2,4.9,5.2,5.1],"paint":[23.6,24.2,23.9,23.5,24.4,24.3,25,24.8,23.9,24.7,24.3,24.5,24.1,24.5,24.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.6,16.8,16.4,18.6,17.1,16.1,17.1,16.5,17.2,17,17.7,17.2,17.5,16.7,17.2],"script":[1.1,1.2,0.8,1.4,1.4,1.2,1.1,1.2,1.2,1.3,1.5,0.8,1.6,1.1,1.5],"paint":[13.6,13.6,14,15.6,14.8,13.5,14.7,14.1,14.2,13.8,13.9,13.9,14.3,13.4,13.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.6,4.3,3.9,3.9,4,3.9,4.3,4.3,5.2,4,4.1,3.9,4,3.6,4.1,4.7,4.1,4.4,4.7,4.3,4.3,4.9,4.3],"script":[0.6,0.8,0.7,1.1,0.2,0.9,0.7,0.5,0.8,0.7,1,0.7,0.8,0.7,1,0.9,0.2,0.9,0.7,0.2,0.8,0.1,0.2,0.5,0.9],"paint":[2.6,2.8,2.2,2.3,2.9,2.2,3.1,2.3,2.5,2.6,2.9,2.3,2.6,2.2,2.9,2,3.2,3,2.4,3.5,3.1,3.1,2.8,3.5,2.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[20.4,18.5,19.5,19.5,19.8,19.6,19.8,19.8,19.2,19.4,20.1,19.9,19.9,20.1,18.1],"script":[1.3,0.6,0.2,0.2,0.8,0.5,1.3,0.4,0.9,0.5,1.2,0.8,0.5,0.2,0.5],"paint":[17.3,15.9,17.1,17,16.8,16.8,16.2,17.1,16.2,17.3,15.8,16.9,17.4,17.8,15.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13.4,13.6,13.8,15.1,15.2,13.7,13.7,13.7,14.8,13.7,13.8,13.4,13.7,14.1],"script":[0.4,0.2,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.4,0.4,0.4,0.3,0.5,0.2],"paint":[11.8,12.2,11.9,12.3,13.3,13.4,12.4,12.6,12.4,13.6,12.1,12.6,12.4,12.3,12.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[280.7,285.7,280.3,280.7,283.6,281.9,283.5,279.9,284.9,280.6,282.4,282.2,282,280.6,279.9],"script":[28.6,28.4,28.2,28.3,28.4,28.6,28.8,28.4,28.4,27.7,29,28.2,28.8,28.1,28],"paint":[242.3,246.9,243.2,243,244.6,243.5,245.1,242.3,247.4,243.8,244,244.8,243.5,242.9,242.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31,31,31.6,31.9,30.8,31.6,30.7,30.7,31.4,31.5,31.8,33.4,31.7,31.4],"script":[2.2,2.2,2.2,2.1,2.3,2.2,2.2,2.1,2.3,2.2,2.2,2.2,2.2,2.1,2.2],"paint":[28.3,27.9,27.8,28.5,28.4,27.8,28.4,27.8,27.5,28.2,28.3,28.5,29.9,28.5,28.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.7,13.2,13.6,12.4,13.1,13.7,13.7,13.1,13.3,13.4,12.5,13.8,13.1,13.6],"script":[9.9,10.2,10.2,10.7,10.1,10.6,10.5,10.4,10.5,10.6,10.6,10.1,11.4,10,10.2],"paint":[3,2.3,2.7,1.2,0.8,1.7,2.4,2.3,1.3,1.5,2.1,0.7,0.9,1.2,2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6549615859985352]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.52382755279541]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5806798934936523]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8013334274291992]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.29527473449707]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,25.2,25.3,25.5,25.5,25.7,26,26,26,25.9,25.9,26,25.6,25.6,25.8],"script":[1.9,1.8,1.9,2,1.9,2,1.9,1.9,2,1.9,2,1.9,1.9,1.9,1.9],"paint":[22.4,23,22.9,23.1,23.1,23.3,23.5,23.6,23.6,23.5,23.5,23.6,23.2,23.1,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.4,29.3,29.2,29.4,29,30.2,30.3,29.9,29.9,30,30.2,29.5,29.6,29.8],"script":[4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.5,4.5,4.6,4.7,4.6,4.2,4.5,4.3],"paint":[25.1,24.4,24.4,24.2,24.6,24.2,25.2,25.2,24.8,24.9,24.9,25.1,24.9,24.5,25]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.8,17.6,17.3,17.7,16,16.8,15.5,17.9,17.1,16.1,17.3,16.9,16.2,17.3,17.2],"script":[1.9,1.5,1.6,1.4,1,1.6,1.5,1.6,1.3,1.9,0.9,1.5,1.7,1.6,2.2],"paint":[13.9,13.1,13.6,13.8,12.8,13.2,12.9,14.3,13.9,13.1,14.1,13.9,12.9,13.1,13.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.9,5.2,4.1,4.2,4.8,5.4,4.6,3.6,5.2,5.3,5,4.7,4.8,4.1,4.7,4.6,4,4.2,5.1,5.3,4.5,4.1,5,5.1],"script":[0.8,1,1,0.5,1,1,1.2,0.9,0.2,1.2,0.8,1,0.5,1.1,0.9,0.5,0.8,0.8,0.9,1.1,1.6,1,0.7,0.8,1.2],"paint":[3.8,2.9,2.9,3.4,2.5,3.1,3.9,3.3,3.2,2.5,2.7,3.8,3.4,2.9,2.6,3.4,3,2.2,2.4,3.2,3,2.3,2.2,3.1,2.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[21.4,20.2,18.9,19.9,20.1,20.1,20.7,20.9,20.8,21.3,18.8,19.6,21.6,18.1,20],"script":[1.3,0.9,1.4,1.2,0.8,1.3,1.5,1.3,1.3,1.3,1.2,1.4,1.7,0.8,1.8],"paint":[18,17.1,15.5,17.5,17.5,17.3,17.9,18,16.9,17.8,16.1,15.9,17.4,15.4,16.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.6,14.6,14.1,14.3,14.2,15.3,14.7,15.5,16,13.4,13.8,13.9,14.1,14.8],"script":[0.5,0.8,0.5,0.5,0.5,0.7,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[12.8,12.8,12.9,12.1,13,12.4,13.6,13.4,13.8,14.3,11.8,11.9,12.4,12.7,13]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[289.1,287.9,286,284.8,287,299.6,289.9,291,296.3,288.6,286,288.8,289.7,287.8,287.1],"script":[27.7,28.2,28.2,27.8,27.6,28.2,28.2,28.4,28.5,28.7,28.2,28.3,28.4,28.2,27.9],"paint":[252.1,250.8,248.8,247.9,250.4,262.2,252.2,253.5,259,251,248.4,251.2,251.9,250.4,250.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.5,32.8,33.3,32.1,32.7,33.6,32.4,33.2,32.6,33.2,32.7,32.1,33.2,33.3],"script":[2.3,2.2,2.2,2.3,2.3,2.2,2.3,2.4,2.4,2.4,2.3,2.2,2.2,2.3,2.2],"paint":[29.7,29.1,29.4,29.8,28.9,29.4,30.2,29.1,29.7,29.3,29.7,29.5,28.9,29.8,29.9]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.2,14.4,14.7,14.9,14.3,14.5,14.7,14.5,14.1,14.5,14.4,13.9,13.8,14.5],"script":[11.2,11.2,11.5,11.1,11.6,11.1,11.2,11.6,11.4,11.6,11.3,10.9,10.9,10.7,11.7],"paint":[0.8,1.9,2.6,2.1,1.8,1.7,1.8,2.2,1.3,1.7,0.8,1.8,1.7,2,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902118682861328]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2837743759155273]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3049917221069336]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7148208618164062]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62580394744873]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.4,25.9,25.2,25.8,25.4,26,26.1,25,25.7,25.5,25.9,25.2,25.9,25.5],"script":[2.4,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.4,2.5],"paint":[23.1,22.6,23.2,22.5,23,22.7,23.1,23.4,22.3,22.9,22.8,23.2,22.4,23,22.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.6,28.8,29,28.2,29,28.5,28.4,29.6,29.5,28,28.6,28.9,28.7],"script":[4.5,4.7,4.5,4.7,4.6,4.6,4.8,4.7,4.7,4.8,4.9,4.4,4.9,4.6,4.6],"paint":[23.5,23.1,23.7,23.7,23.9,23.1,23.8,23.4,23.2,24.3,24.2,23.2,23.3,23.9,23.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.2,17.6,15.4,17,14.9,15.4,15.3,15.5,14.9,16.4,15.4,15.1,15.2,14.9,17.8],"script":[0.8,1,1,1,0.6,0.8,0.8,1.1,0.7,0.8,0.8,0.9,1.1,0.2,1.2],"paint":[14,14.9,13,14,12.2,13.6,13.2,12.6,13.1,13.8,13.1,12.3,12.6,12.6,14.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[6.2,4.3,3.9,4.1,4.5,4.8,5,4.3,4.1,4.1,4,4.5,4.1,4.8,4.9,4.7,4.1,3.6,4.5,3.9,4.3,4.1,4.2,4.5,4.3],"script":[1.1,1,1.1,1.3,1.2,1.2,0.6,1,0.6,0.8,0.8,1,1.1,1.4,0.8,1.2,1.1,0.5,1.2,1,0.8,1.2,1,0.8,0.9],"paint":[4.9,2.9,2,1.8,2.3,2.4,3.6,3.2,2.3,2.3,2.6,3.3,2.3,2,3.3,2.7,2.6,2.4,2.5,2.2,3,2.2,2.6,2.9,2.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[19.8,20.4,19.3,18.3,17.4,19.1,19.7,20.6,19.6,21,18.8,19.8,19.9,18.4,20.4],"script":[1.1,1.2,0.9,1.1,0.8,0.8,0.8,0.8,1.4,0.8,1.3,1.2,1.1,1.1,1.1],"paint":[16.3,16.8,17.3,16.6,15.2,16.7,16.3,18,16.2,18.2,15.9,17.2,16.6,15.4,17.4]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,14.5,14,13.2,14,13.7,13.1,13.8,13.6,13.8,13.2,13.3,14.1,13.9,13.1],"script":[0.2,0.5,0.2,0.2,0.3,0.3,0.2,0.4,0.3,0.4,0.5,0.5,0.5,0.4,0.4],"paint":[11.6,13.1,12.8,12.3,12.6,12.3,12,12.8,12.4,12.4,11.8,12.1,12.4,12.4,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[285.7,278.3,279.3,279.7,279.9,279.5,278.9,279.3,288.4,283.4,284.2,279.4,282.6,282.2,281.7],"script":[27,27.2,26.7,25.8,27,26.7,26.9,26.3,27,26.1,26.4,26.6,26.2,27,26.9],"paint":[249.7,241.9,243.9,245,243.8,243.5,242.7,243.8,251.2,247.7,247.7,243.7,246.5,245.9,245.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.4,31.3,31.7,31.4,30.9,31.8,31,31.5,31.1,31.5,31.6,31.8,31.7],"script":[2.6,2.6,2.4,2.6,2.5,2.6,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5],"paint":[28.1,28.3,28,27.8,28.1,27.8,27.6,28.3,27.6,28,27.6,28.1,28.1,28.2,28]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,14.1,13.5,14.3,13.7,13.8,13.4,13.8,13,14,14.1,13.5,14.5,14.7,13.2],"script":[10.7,11.2,10.7,11.2,11.4,10.6,10.6,10.6,10.5,11.3,11.1,11,11.2,11.6,10.8],"paint":[1.7,1.3,1.9,1.1,0.8,1.6,1.2,2.9,0.8,1.7,2,1.6,1.7,2.1,1.2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.609257698059082]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.469059944152832]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.495968818664551]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7314004898071289]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.887676239013672]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.2,25.8,26.6,25.8,25.2,26.2,26.3,26.2,27.1,26.1,25.7,26,26.3,26,25.9],"script":[2.7,2.6,2.5,2.7,2.6,2.5,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5],"paint":[23,22.8,23.6,22.6,22.1,23.2,23.1,23.2,24.1,23.2,22.8,23,23.4,23,23]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.2,29.9,30.4,30.4,29.6,30.8,30,29.5,29.8,30,30.4,30.1,30.3,30.2],"script":[5.7,5.4,5.4,5.5,5.6,5.2,5.6,5.3,5.7,5.4,5.6,5.5,5.6,5.5,5.6],"paint":[24.1,24.2,23.9,24.2,24.2,23.7,24.5,24.1,23.1,23.7,23.7,24.2,23.9,24.1,23.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,22.4,17.9,16.3,15.8,16.7,17.2,17.3,16,17.5,16.5,17.1,16.8,16.3,17.2],"script":[1.3,1.9,1.4,0.8,1.1,0.9,1.4,1.3,1.4,1.4,1.1,0.8,1.7,0.9,1.5],"paint":[14.6,17.3,13.8,13.7,12.5,13.4,13.1,13.8,12.3,13.6,14,14.6,13,14.2,13.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.9,4,4,4.4,3.8,4.5,4,4.3,4.9,3.6,4.1,4.3,4.2,3.7,4.4,4.4,3.9,4.4,4.6,3.7,4.5,4.9,4.9,4.5],"script":[1,1.1,0.1,0.9,0.4,0.6,0.8,0.7,0.5,1.4,0.8,0.7,0.7,0.8,0.2,0.8,0.9,0.8,0.7,0.5,0.5,1,1,0.2,0.7],"paint":[2.3,3.3,3.3,2.3,3.5,2.5,3.5,2.6,2.3,1.9,2,1.9,2.8,2.8,2.4,2.4,2.2,2.3,2.5,3.8,2.5,2.8,3,3.2,3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[20.5,21.5,20.8,21.4,20.1,20.8,21.9,20.4,20,21.5,21.4,22.4,20.5,21.4,19.5],"script":[1.4,1.7,1.8,1.8,1.6,1.6,1.9,1.8,1.8,1.4,1.5,2,1.6,2,1.3],"paint":[15.8,17.7,16.7,18.2,16.9,16.1,18.2,16.8,16.3,18.4,18.3,18.3,17.1,17.4,16.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.4,14.7,14.3,14.6,14.3,15,13.8,14.3,14.2,13.5,14.8,16.3,15.3,15.4,15.8],"script":[0.6,0.6,0.6,0.5,0.7,0.5,0.6,0.5,0.8,0.6,0.6,0.5,0.7,0.7,0.6],"paint":[14,13.2,12.9,13,12.5,13.4,12.3,13,12.3,12,13.3,14.6,13.2,13.6,13.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[286.9,283.7,282.3,284.2,282.5,283.6,285.1,284.2,283,284.8,283.6,284.4,285.2,283.4,298.7],"script":[31.4,30.4,30.9,30.9,30.6,30.8,31.2,31,30.8,30.8,31.2,31.4,31.3,31.2,30.8],"paint":[246.2,244.2,242.1,244.1,242.5,243.5,244.6,243.9,243.2,244.5,243.2,243.6,245,243.5,258.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,32.1,31.5,32.5,34.1,31.5,32.2,31.9,32.1,31.9,31.4,32.5,32.1,32.3,32.3],"script":[3.1,3,3,3,3.3,3,3.2,3.1,3,3.1,3.1,3,3,3.2,2.9],"paint":[27.7,28.1,27.6,28.2,29.3,27.5,28,27.7,28,28,27.4,28.3,28.1,28.1,28.1]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,14.5,14.7,14.1,16.4,16,16.9,14.5,14.7,16.4,14.5,15.2,16.7,17.2,16.3],"script":[13.6,11.9,12.1,11.3,13.5,13.6,14.1,11.6,11.6,13.5,11.5,12.3,13.9,14.1,13.9],"paint":[0.9,2,1.6,2,1.4,0.7,2.2,1.5,1.9,2.1,2.3,1,1.1,1.7,0.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5569972991943359]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7348203659057617]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.796039581298828]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7327775955200195]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.08317279815674]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.2,25.3,27.1,25.9,26.1,26,25.8,25.4,27.7,26.4,25.7,26,26.1,26.2],"script":[2.4,2.5,2.4,2.6,2.6,2.6,2.4,2.4,2.5,2.6,2.6,2.4,2.5,2.4,2.6],"paint":[23.3,22.4,22.5,24,22.8,23.1,23.2,23,22.5,24.7,23.4,22.9,23,23.3,23.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[31.3,31.1,31.1,30.2,30.1,29.9,30.8,31.1,30.9,31.3,29.7,30.3,30.7,31.1,30.3],"script":[5.6,6,5.9,5.9,5.8,5.3,5.7,5.8,5.8,5.8,5.4,5.6,6.1,5.8,5.7],"paint":[25,24.4,24.4,23.6,23.8,23.9,24.4,24.6,24.4,24.7,23.7,24,24,24.7,23.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.8,17.5,16.1,17.5,16.4,17.4,17.8,18.7,18.6,18.5,17.2,16.5,16.3,17],"script":[1.5,1.9,1.5,0.9,1.3,1.5,1.3,1.8,1.8,2,1.4,2.1,1.5,1.5,1.5],"paint":[13.9,13.8,14.7,13.1,13.5,13.3,13.3,13.5,14.4,14.6,15,13.3,14,12.7,12.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.8,4.6,5.3,5.4,4.5,4.8,4.4,4.5,4.8,4.9,4.5,5.3,4.8,5.8,4.5,4.7,5,4.9,4.9,4.9,4.4,6.1,4.4,4.4],"script":[0.9,1.3,1.2,1,1.3,0.9,1.5,1.1,1.2,0.8,1.4,1.1,1.4,1.2,1.8,1.4,1.2,1.1,1.3,0.8,1.1,0.9,1.1,0.9,1.1],"paint":[3.1,2.4,1.9,2.7,3,3.4,2.6,2.7,2,3.2,2.7,2.9,2.8,2.3,2.9,2.3,2.7,3,2.5,2.9,3,2.7,4.4,2.7,2.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20.3,19.7,19.3,20.6,21.6,21.4,20.7,20.1,20.8,20.4,20.9,20,21.1,21.2],"script":[1.1,1.1,0.9,1.8,1.5,1,1.2,1.7,1,1.1,1.5,1.3,1.3,1.4,1.5],"paint":[17.8,16.7,16.1,16.3,16.7,19.1,18.6,16.4,17.4,17.8,16.8,16.6,17.2,16.7,17.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,14.2,14.2,14.2,14.3,13.6,13.8,14.5,14.9,14.7,13.7,13.2,13.9,14.5,14.1],"script":[0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.6,0.6,0.5,0.5,0.5,0.5,0.6,0.7],"paint":[12.9,12.6,12.5,12.4,12.9,12,12.6,13.1,13.6,13,12.1,11.8,12.4,13,12.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[282.3,284.6,284.2,282.9,281.4,286.3,282.1,285.4,288.9,281,283.3,282.7,286.8,290.3,287.7],"script":[29.7,29.4,30.3,30,29.8,30.1,29.6,29.7,30.6,29,29.5,29.5,32.6,30.5,29.4],"paint":[243.5,245.9,244.8,243.4,242.2,246.7,243.4,246,249.2,242.9,244.5,243.6,245.1,250,248.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,31.6,31.4,32,31.9,31.5,32.2,31.5,31.9,32.1,31.5,31.7,32,32.6,31.9],"script":[2.7,2.8,2.7,2.7,2.8,2.7,2.9,3,2.8,2.6,2.6,2.7,2.8,2.7,2.7],"paint":[28.3,27.8,27.7,28.3,28.2,27.8,28.3,27.5,28.2,28.6,28,27.9,28.2,28.9,28.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,14.4,15,14.7,14.6,15,15,15.1,14.7,14.9,14.4,15.1,14.9,14.3,15.8],"script":[11.7,11.6,11.5,12.1,11.9,11.8,11.8,11.8,11.7,11.7,11.4,11.9,12,11.3,12.2],"paint":[2,1.6,1.7,1.6,2.4,1.8,1.7,1.7,1.8,1.7,1.2,2.6,1.8,2,1.9]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6012802124023438]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.76639461517334]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.810731887817383]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8781604766845703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.33494758605957]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.6,24.7,24.8,23.8,23.9,24.5,24.3,24.3,24.1,24.7,23.9,24.6,24.3,25],"script":[1.4,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.5,1.4,1.3,1.4,1.5,1.4,1.4],"paint":[22.7,22.7,22.9,22.8,22,22.1,22.8,22.5,22.4,22.3,22.8,22.1,22.6,22.5,23.1]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27.6,28,27.5,27.6,27.3,27.9,27.4,27.8,28,27.4,28.6,27.5,27.8,27.9],"script":[3.4,3.6,3.6,3.4,3.7,3.4,3.5,3.5,3.6,3.5,3.7,3.7,3.6,3.6,3.6],"paint":[23,23.6,23.9,23.6,23.4,23.3,23.9,23.5,23.7,23.9,23.2,24.3,23.5,23.7,23.7]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,17.5,14.8,16.3,15.6,15.9,17.8,15.9,15.3,15.9,14.3,19,15.3,15.6,16],"script":[0.8,0.9,0.1,0.8,0.6,0.5,0.8,0.8,0.7,0.5,0.6,0.5,0.8,1,1.1],"paint":[13,14.6,12.3,13.4,13.2,13.5,14.4,14,13,14.2,11.9,14.9,13.1,13,13.5]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.5,4.1,4.1,3.8,4.7,4.3,3.8,3.6,3.9,3.8,4.3,4.2,5.2,3.9,4.1,3.6,3.6,3.9,3.6,3.8,3.9,4.2,4.2,4.2],"script":[0.1,0.1,0.2,0.5,0.6,0.7,0.7,0.7,0.5,0.4,0.7,0.4,0.6,0.7,0.1,0.4,0.7,0.5,0.1,0.3,0.6,0.1,0.6,0.7,0.4],"paint":[2.9,2.5,3,3.5,2.8,3.5,2.8,1.8,2.2,2.7,2.4,2.7,2.8,3.3,2.7,3.5,2.1,2.5,2.9,2,2.5,3.6,2.6,2.9,3]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[17.4,18.3,18.6,17.4,17.7,18.9,23.2,17.6,17.8,18.4,19.2,19,18.6,18.1,16.8],"script":[0.1,0.6,0.1,0.1,0.6,0.6,0.1,0.1,0.8,0.7,0.1,0.8,0.1,0.1,0.1],"paint":[16.2,16.2,16.6,15,15.1,16.7,19.8,15.9,15.1,15.7,16.4,16.5,16.8,16.2,15.5]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.3,13.8,14.4,13.9,14.6,14.4,14.5,14.3,13.8,14.3,14.5,14.5,13.2,14.3,14.1],"script":[0.4,0.4,0.2,0.3,0.2,0.4,0.4,0.4,0.4,0.2,0.4,0.2,0.2,0.4,0.2],"paint":[13.8,12.4,13.3,12.4,13.1,12.7,12.7,12.9,12.2,12.9,13,13.1,12.1,12.9,12.9]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[264.3,261.7,262.3,262.3,261.5,267.4,263.5,263.6,264.6,261.5,262,266.7,261.6,263.5,261.7],"script":[15.4,15.6,15.6,15.7,15.7,15.8,15.7,15.9,15.2,15.6,15.4,16,15.5,15.6,15.7],"paint":[240.2,237.3,237.5,237.7,236.6,242.7,238.6,238.5,240.5,236.9,237.3,241.9,236.8,238.8,237]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,30.5,30.8,30.3,30.9,30.6,30.2,30.4,30.6,30.4,30.6,30.6,31.5,30.4,30.6],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.5,1.4,1.5,1.4,1.5],"paint":[27.9,28.1,28.4,27.8,28.5,28.2,27.7,28.1,28.2,28,28.2,28.2,28.8,28,28.1]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.1,12.7,13,12.5,12.9,13.3,12.5,13.4,12.5,12.3,12.8,13.1,13,13.4],"script":[10.4,9.8,9.9,10.1,9.7,10.1,9.7,9.7,10.7,9.7,9.4,9.8,10.3,10.4,10.1],"paint":[1.2,2.4,1.4,1.1,1.6,1.7,2.4,0.9,1.5,1.6,2.6,1.7,1.6,0.7,1.6]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490627288818359]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8997936248779297]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9383211135864258]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012947082519531]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.4,25.3,25.2,24.8,25.3,25.1,25,25.4,25.5,25.3,24.8,25.1,25,25],"script":[1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.4,1.3,1.3],"paint":[23.5,23.6,23.5,23.4,23.1,23.6,23.4,23.2,23.7,23.7,23.4,23.1,23.2,23.2,23.3]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.1,28.5,27.9,28.7,28.5,29.1,29.1,28.3,29.1,29.4,29.4,28.3,29.3,28.8],"script":[3.4,3.4,3.3,3.5,3.6,3.6,3.6,3.8,3.6,3.6,3.7,3.7,3.5,3.6,3.7],"paint":[24.7,24.2,24.6,24,24.4,24.4,25,24.8,24.3,25,25.2,25.2,24.3,25.1,24.7]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,17.7,17.2,18.6,17.2,16.1,16.4,16,16.2,15.9,15.4,16.2,16.5,15.1,17],"script":[0.9,0.3,0.7,0.7,0.1,0.6,0.1,0.1,0.8,0.8,0.1,0.7,0.4,0.1,0.5],"paint":[14.9,15.1,14.3,15.6,15.6,13.2,14.5,13.8,13.3,12.7,13.6,13.8,13.9,12.9,14.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[4,3.8,4.3,3,3.8,3.8,3.4,3.9,3.9,3.9,4.2,3.9,3.8,3.4,3.1,4.4,4,6,3.1,3.9,4,3.7,3.5,3.8,3.5],"script":[0,0.3,0.7,0.2,0.2,0.7,0,0.1,0.4,0,0,0.1,0.1,0,0,0,0.7,0.1,0,0,0,0,0,0.5,0.1],"paint":[2.1,2.4,3.4,2.3,3.1,2.6,2.6,2.9,2.7,2.9,2.8,3.4,2.2,2.6,2,3,2.3,4.5,2.5,2.9,3.4,2.7,3.3,2.7,2]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.6,19.8,20.2,18.5,19.1,20.6,19,20.4,20.5,20.1,20.1,18.8,18.9,19],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.8,0.7,0.5,0.4,0.1],"paint":[16.7,17.4,17.8,17.4,16.2,16.6,18.1,17.4,18.8,18,17.5,17.4,15.8,17.4,16.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.9,13.6,14.6,14,13.8,13.5,13.7,13.7,13,14.4,14.2,13.8,14.1,13.5,13.2],"script":[0.1,0.2,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3,0.2],"paint":[13.5,12.7,13.4,12.6,12.8,12.6,12.6,12.9,11.9,13.6,13.1,12.7,13,12.3,12.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[269.8,271.7,268.8,268.5,267.7,268.3,267.3,271.4,268.7,268.3,270.3,268.6,267.8,279.4,278.3],"script":[14,14,13.6,13.7,13.9,13.5,13.8,13.8,13.3,13.7,13.9,13.5,13.9,13.8,13.9],"paint":[246.7,248.4,246,245.3,244.4,245.7,244.4,248.1,246.2,245.3,247.2,245.5,244.5,255.5,254.7]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.2,30,30,30.2,30.6,31.2,30.4,30.3,30.5,30.7,30.9,30.7,30.6,30.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[27.6,27.9,27.8,27.7,27.7,28.4,28.8,27.9,28,28.2,28.3,28.3,28.4,28.2,28.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13.5,12.1,12.3,14.1,13.8,12.9,13,13.8,12.6,13.1,12.7,13.4,12.4,12.6],"script":[10.2,10.2,10,9.4,10.8,10.6,10.3,9.8,10.2,9.7,10.3,10.1,10.5,9.5,9.8],"paint":[2,2,0.9,1.6,1.8,1.3,1.9,1.9,1.6,1.7,0.9,1.5,1.8,1.5,1.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4733724594116211]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7887449264526367]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8046636581420898]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5892019271850586]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.475665092468262]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}}] \ No newline at end of file +[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7804546356201172]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.701602935791016]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.71019172668457]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5199708938598633]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.9317398071289]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5480680465698242]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.554281234741211]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.273308753967285]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.8753814697265625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.40983867645264]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[29.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5130691528320312]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.736143112182617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.813131332397461]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.107969284057617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.137581825256348]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1247739791870117]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.668036460876465]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7355756759643555]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.707991600036621]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.677685737609863]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.124281883239746]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6573028564453125]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7305736541748047]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6972951889038086]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.674309730529785]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5228166580200195]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.828743934631348]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.853344917297363]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.118180274963379]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.39214515686035]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.130523681640625]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.716960906982422]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7943506240844727]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7830543518066406]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.90111541748047]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5638313293457031]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.954111099243164]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.021417617797852]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4622535705566406]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.714426040649414]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[158.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324434280395508]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.462996482849121]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.562638282775879]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.427117347717285]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.9520902633667]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873327255249023]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.926417350769043]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.02712345123291]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.81550884246826]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.81212329864502]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6102790832519531]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8133621215820312]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8695192337036133]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.805999755859375]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.58242130279541]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9693546295166016]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.970414161682129]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.971555709838867]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.0195112228393555]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.955989837646484]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.061036109924316]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.67124080657959]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.875746726989746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37116622924805]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.15918731689453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.83461952209473]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.78805637359619]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.84860897064209]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.3020715713501]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.81596851348877]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6466579437255859]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.498262405395508]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527353286743164]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7978572845458984]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.282408714294434]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7144250869750977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6487512588500977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8291072845458984]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.557438850402832]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.016355514526367]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8701353073120117]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7321882247924805]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.816035270690918]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0977239608764648]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.59339427947998]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6688327789306641]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.670557975769043]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7514867782592773]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9825620651245117]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.584179878234863]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7170677185058594]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.533288955688477]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.564603805541992]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2497005462646484]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.277915954589844]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5033645629882812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.850752830505371]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8534669876098633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6313543319702148]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.648594856262207]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6040544509887695]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7080955505371094]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7008790969848633]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8054409027099609]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.81447124481201]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8540573120117188]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.365616798400879]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.400456428527832]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.478118896484375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.693777084350586]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[346.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5662965774536133]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2286481857299805]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.213926315307617]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7100896835327148]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.953502655029297]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.805506706237793]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.225713729858398]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.314657211303711]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3121767044067383]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.35826873779297]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7443227767944336]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.964658737182617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.985597610473633]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6676416397094727]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.838895797729492]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[168.7]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.624821662902832]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9079294204711914]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.951869010925293]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.684422492980957]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.05843448638916]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.6]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6143827438354492]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8971624374389648]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9390954971313477]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6891355514526367]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012824058532715]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.8]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6010408401489258]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.990011215209961]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.036379814147949]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6422033309936523]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.496575355529785]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6637563705444336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.671767234802246]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.705085754394531]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9576692581176758]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.76193714141846]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6486625671386719]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.666378974914551]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.765705108642578]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0226306915283203]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.158863067626953]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.223213195800781]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.164497375488281]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.164779663085938]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.134173393249512]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.93343734741211]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[984.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5754966735839844]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3913002014160156]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4268722534179688]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6977405548095703]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95158290863037]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5823783874511719]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1282949447631836]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1071624755859375]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7695455551147461]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.758095741271973]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6561355590820312]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.627976417541504]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.562768936157227]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9666309356689453]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.449618339538574]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.24592399597168]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.192009925842285]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.230036735534668]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.256852149963379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.08543586730957]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5869245529174805]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.182247161865234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.211800575256348]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.062032699584961]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.04022979736328]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7273960113525391]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9033660888671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.225467681884766]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2966690063476562]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.970210075378418]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2997455596923828]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.730719566345215]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.281462669372559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.125727653503418]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24367809295654]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291213989257812]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2711753845214844]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2019948959350586]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8175430297851562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.761988639831543]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6350555419921875]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.248970031738281]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.884618759155273]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9016351699829102]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.34021282196045]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5972061157226562]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.045897483825684]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.071386337280273]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1606311798095703]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1229887008667]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5451717376708984]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9681663513183594]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.066629409790039]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6433811187744141]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.880518913269043]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8460683822631836]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.643153190612793]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6214113235473633]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.073225975036621]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.009462356567383]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.622044563293457]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.002596855163574]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.010848045349121]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.835902214050293]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.299354553222656]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5836181640625]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7753381729125977]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8468399047851562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7773532867431641]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.121651649475098]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5896310806274414]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.289639472961426]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2942590713500977]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.697718620300293]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62725067138672]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6438417434692383]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.449915885925293]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.4791259765625]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0068578720092773]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12136268615723]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120527267456055]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.639345169067383]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.597149848937988]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2624378204345703]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27529335021973]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7621994018554688]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.204743385314941]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.142613410949707]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0129585266113281]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.105714797973633]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.346522331237793]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.221152305603027]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.326862335205078]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09367561340332]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.92218017578125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[629.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1626176834106445]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.758243560791016]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.336838722229004]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.6927289962768555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.66135883331299]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[172.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7741727828979492]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514687538146973]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.531018257141113]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.546525001525879]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.217732429504395]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808300018310547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8559751510620117]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8668041229248047]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8445272445678711]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.080493927001953]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5732936859130859]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.635763168334961]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6673450469970703]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7030305862426758]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.04368019104004]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.61370849609375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.043519973754883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.083294868469238]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7266397476196289]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.91557216644287]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8143367767333984]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.359827995300293]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3946762084960938]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3741464614868164]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8940372467041]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5458879470825195]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4669437408447266]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5476388931274414]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7141580581665039]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.016407012939453]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7609901428222656]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6951465606689453]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653345108032227]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.031198501586914]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.497085571289062]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8166971206665039]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1328773498535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.152883529663086]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.12255859375]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.638179779052734]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5943021774291992]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6553211212158203]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.596734046936035]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7271127700805664]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.3585844039917]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891357421875]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4300975799560547]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.464888572692871]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.756587028503418]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.3368558883667]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986108779907227]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.995802879333496]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0202550888061523]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7451982498168945]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.160560607910156]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559391975402832]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3419933319091797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.352231979370117]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7482967376708984]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.106847763061523]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5811967849731445]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.099721908569336]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.533857345581055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.157256126403809]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.772847175598145]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[480.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5696544647216797]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3488950729370117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3947219848632812]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350568771362305]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.2009334564209]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6427574157714844]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9780378341674805]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.41512393951416]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8950672149658203]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1475133895874]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716001510620117]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9543943405151367]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.990999221801758]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1730737686157227]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.811062812805176]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.845004081726074]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.797246932983398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.787343978881836]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314798355102539]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.49604606628418]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.1]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5517683029174805]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.006746292114258]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02640438079834]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.761540412902832]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.84206199645996]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6950721740722656]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5557785034179688]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5425310134887695]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9374370574951172]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.60407066345215]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.1]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3768415451049805]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9089555740356445]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.006411552429199]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.664393424987793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.281550407409668]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8808250427246094]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.412508964538574]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.379556655883789]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3287086486816406]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.82754898071289]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6093864440917969]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1005859375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1675643920898438]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8215188980102539]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.911052703857422]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6112041473388672]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.630006790161133]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6469058990478516]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8258380889892578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.059950828552246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5529890060424805]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6205806732177734]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6707963943481445]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7532625198364258]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.285937309265137]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6028232574462891]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3534278869628906]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3900232315063477]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7610569000244141]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.110946655273438]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7053070068359375]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.741999626159668]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819445610046387]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0216350555419922]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14742183685303]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[61.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6606159210205078]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.066756248474121]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.1287031173706055]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9392509460449219]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.17781448364258]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0705327987670898]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.213217735290527]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.171822547912598]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.850666046142578]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.49588871002197]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[97]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.493072509765625]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.979111671447754]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.988943099975586]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.267091751098633]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92032623291016]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2026329040527344]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.71860122680664]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.780943870544434]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1373291015625]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.16176223754883]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[236.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8456459045410156]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.642852783203125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.352056503295898]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.254793167114258]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14303493499756]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[366.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1720056533813477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5933122634887695]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.076066017150879]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9302043914794922]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.46361541748047]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1551103591918945]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.696261405944824]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.056138038635254]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9550657272338867]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.36069107055664]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1485328674316406]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.454543113708496]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.905866622924805]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8971290588378906]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.618470191955566]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149296760559082]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.548349380493164]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.022992134094238]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9739532470703125]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.693784713745117]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1119604110717773]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.776449203491211]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.215978622436523]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8903913497924805]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.485578536987305]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3924837112426758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.217677116394043]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.776643753051758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.790724754333496]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.65873908996582]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5546188354492188]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.266175270080566]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.719915390014648]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.327932357788086]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60484313964844]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.706192970275879]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.142668724060059]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.690890312194824]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5411376953125]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.52224922180176]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[339.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3005762100219727]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.664432525634766]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.321878433227539]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.131575584411621]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.59714126586914]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2187995910644531]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9862823486328125]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.48721981048584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9865007400512695]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.38824653625488]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4026451110839844]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433895111083984]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.923381805419922]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4295148849487305]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.440735816955566]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3411483764648438]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.627699851989746]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.318523406982422]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1759376525878906]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.23661422729492]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2366905212402344]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.465743064880371]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.834593772888184]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9212417602539062]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.453356742858887]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1553611755371094]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069391250610352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5186967849731445]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8899574279785156]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.145355224609375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[201.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2711639404296875]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.945793151855469]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.462956428527832]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.493075370788574]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38289165496826]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1685962677001953]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.165302276611328]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.766231536865234]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9219512939453125]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.0153112411499]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4591541290283203]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.295771598815918]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.019558906555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9407882690429688]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.012826919555664]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[288.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5745954513549805]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524754524230957]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.56618595123291]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.457036018371582]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.163437843322754]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5900392532348633]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5230064392089844]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6323060989379883]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6587820053100586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.013845443725586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5166263580322266]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.848897933959961]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7722158432006836]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8737955093383789]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.89602756500244]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189994812011719]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.743117332458496]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7696313858032227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9182825088500977]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807257652282715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5930547714233398]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56527042388916]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.614274024963379]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7581081390380859]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.025753021240234]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986251831054688]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7760190963745117]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7920351028442383]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8317422866821289]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.40744113922119]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6555957794189453]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3754215240478516]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3842382431030273]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0908498764038086]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.84324836730957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9399089813232422]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.937980651855469]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048296928405762]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.135258674621582]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.631184577941895]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9799919128417969]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.601199150085449]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6909961700439453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.193359375]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.856722831726074]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7831344604492188]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.507598876953125]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.20376205444336]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.345932006835938]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.56476402282715]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[383]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7422494888305664]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8279829025268555]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8233327865600586]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.529299736022949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.334200859069824]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5636606216430664]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7526893615722656]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760098457336426]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7322492599487305]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.45913600921631]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44667720794677734]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5003862380981445]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.515448570251465]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3591156005859375]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.981186866760254]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49529266357421875]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.724177360534668]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.772085189819336]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7226696014404297]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.072800636291504]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644826889038086]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9609222412109375]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0113658905029297]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8396015167236328]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.660969734191895]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5724029541015625]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8287076950073242]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8366403579711914]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6594877243041992]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.626521110534668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.753408432006836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.064512252807617]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140619277954102]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5818614959716797]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.95647621154785]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508296966552734]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.580999374389648]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.56385612487793]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0833606719970703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.512922286987305]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[112.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6940650939941406]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.597169876098633]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6483497619628906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.053060531616211]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.755897521972656]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7459735870361328]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2724952697753906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3015480041503906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3401260375976562]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.492534637451172]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6621389389038086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624574661254883]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.641482353210449]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8375263214111328]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.52980899810791]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5277957916259766]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7687768936157227]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8084239959716797]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.872105598449707]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.35142421722412]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6152744293212891]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.918811798095703]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.979991912841797]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4369192123413086]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.5925874710083]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7590389251708984]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.873154640197754]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.86092472076416]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.515194892883301]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.585633277893066]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3347587585449219]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1276721954345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1886863708496094]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7997112274169922]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.539783477783203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[175.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48917293548583984]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.166651725769043]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.193112373352051]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6436395645141602]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86898136138916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6073207855224609]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7855224609375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7842607498168945]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7987785339355469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.59042453765869]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6901874542236328]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8683900833129883]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8625049591064453]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8650588989257812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.65694522857666]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.4]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6036882400512695]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7007579803466797]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.730854034423828]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8720874786376953]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.16014575958252]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8477945327758789]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1807260513305664]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.205763816833496]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1345634460449219]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.75906753540039]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1450309753417969]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.065735816955566]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.735942840576172]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8616676330566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.863115310668945]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164.4]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46895599365234375]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9677743911743164]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.928619384765625]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6171340942382812]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013200759887695]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47638511657714844]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7882747650146484]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.800760269165039]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5741634368896484]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.478334426879883]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5358676910400391]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.742197036743164]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7609081268310547]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6370124816894531]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.09604549407959]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5011138916015625]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.886707305908203]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8896007537841797]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.967710494995117]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.35887145996094]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5606784820556641]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.077930450439453]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0020751953125]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6400337219238281]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.02220344543457]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5435400009155273]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4081945419311523]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.415799140930176]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6559877395629883]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.456475257873535]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6525955200195312]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.329913139343262]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.431464195251465]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9340553283691406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.395493507385254]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547258377075195]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8578271865844727]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.893484115600586]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.171834945678711]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.646581649780273]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.858922004699707]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.2211503982543945]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.294930458068848]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1289901733398438]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47651290893555]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6976604461669922]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1021785736083984]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1319971084594727]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0184268951416016]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.264480590820312]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8884353637695312]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.206464767456055]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.310001373291016]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3989458084106445]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.71572971343994]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6967668533325195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0440711975097656]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.049104690551758]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.017533302307129]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.606117248535156]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5344572067260742]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0962209701538086]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1608314514160156]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9999885559082031]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.329374313354492]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7229738235473633]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.952317237854004]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.981106758117676]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.804966926574707]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.926068305969238]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7915868759155273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.451281547546387]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.522219657897949]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.931109428405762]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.072813987731934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[254.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7813653945922852]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.571454048156738]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.818474769592285]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.123181343078613]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.289931297302246]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5997714996337891]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6279382705688477]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.648758888244629]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9460687637329102]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28592014312744]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.7]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6085071563720703]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.307554244995117]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.346816062927246]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.470423698425293]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.880990982055664]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214570999145508]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.381025314331055]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.412445068359375]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8747434616088867]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.216437339782715]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6295204162597656]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.458812713623047]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5467529296875]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8539962768554688]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.912774085998535]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873994827270508]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.84391975402832]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.586036682128906]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.7777156829834]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.78382110595703]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.581995964050293]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.834000587463379]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.868013381958008]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8090496063232422]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.783058166503906]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.326578140258789]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.403861045837402]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.421059608459473]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.734299659729004]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.573543548583984]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[286.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5573406219482422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.598541259765625]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6989078521728516]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.09844970703125]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.94937801361084]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9995946884155273]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.862215042114258]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.931148529052734]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.45145320892334]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.7168960571289]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[281.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7736759185791016]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.832524299621582]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.903874397277832]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9832029342651367]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.362706184387207]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[405.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8214540481567383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4175710678100586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4391775131225586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0100765228271484]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.646400451660156]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184892654418945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3724746704101562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3656005859375]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7752017974853516]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.36058521270752]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"01_run1k","values":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"02_replace1k","values":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"04_select1k","values":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"05_swap1k","values":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"07_create10k","values":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9189090728759766]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[29.282416343688965]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[29.73321533203125]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6006050109863281]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[615.4609441757202]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[95.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.554840087890625]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8832197189331055]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8928709030151367]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6064558029174805]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.304900169372559]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7556791305541992]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3518762588500977]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.403101921081543]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9692201614379883]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032843589782715]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[31.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5912494659423828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.21185302734375]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2321176528930664]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7253131866455078]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.117511749267578]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8239517211914062]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32576847076416]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.9292497634887695]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.437203407287598]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.644211769104004]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6649494171142578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742987632751465]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.677057266235352]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.68896484375]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.78525447845459]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6475505828857422]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6502647399902344]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.714531898498535]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9943656921386719]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.85181999206543]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741670608520508]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.3793487548828125]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.447455406188965]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.195226669311523]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.441566467285156]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6582546234130859]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.616334915161133]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.617406845092773]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9659233093261719]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44912242889404]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7284231185913086]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9187450408935547]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.177557945251465]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2905149459838867]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.940454483032227]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8502740859985352]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.832951545715332]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.212776184082031]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.941891670227051]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.32406997680664]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[127.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[131.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"01_run1k","values":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"02_replace1k","values":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"07_create10k","values":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6084270477294922]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.09062385559082]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.118589401245117]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2077388763427734]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.88510036468506]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8438358306884766]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634610176086426]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.601742744445801]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.4910831451416016]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.837151527404785]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.381065368652344]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.913834571838379]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.110092163085938]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.658964157104492]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.854068756103516]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1073.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5340757369995117]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7833290100097656]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8382272720336914]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.783665657043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.119430541992188]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7088127136230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.159454345703125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.144804000854492]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8786163330078125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.776725769042969]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764277458190918]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.491896629333496]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.561244010925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9316511154174805]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64506435394287]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615772247314453]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.752252578735352]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.325299263000488]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.695610046386719]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.64689350128174]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[174.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6857204437255859]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.820673942565918]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8494300842285156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8222379684448242]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.926042556762695]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5542526245117188]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6002445220947266]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.618154525756836]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6867952346801758]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.815208435058594]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5163745880126953]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0778989791870117]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.322443962097168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6873941421508789]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.998469352722168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5523490905761719]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8252363204956055]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.750547409057617]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8201675415039062]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.75911235809326]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5964336395263672]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9866714477539062]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0264739990234375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7047748565673828]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.15754222869873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7415637969970703]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9501514434814453]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9785375595092773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9895973205566406]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.885876655578613]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.2]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5828189849853516]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.123703002929688]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.548064231872559]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.164665222167969]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.81257915496826]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[479.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.8413171768188477]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.800344467163086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.78706169128418]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314901351928711]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.51369857788086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[284.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6319818496704102]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.47098445892334]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.44230842590332]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4199934005737305]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.68405723571777]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.395395278930664]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.846027374267578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048587799072266]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.613348960876465]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.197758674621582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.999262809753418]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.219165802001953]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.098799705505371]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.778217315673828]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14489555358887]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2025566101074219]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.733373641967773]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.754152297973633]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.145580291748047]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.02319049835205]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[240.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.766378402709961]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.354438781738281]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.362306594848633]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7009496688842773]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.114625930786133]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.583247184753418]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.496914863586426]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5447378158569336]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4642763137817383]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07200813293457]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.661443710327148]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.32093048095703]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.726356506347656]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.66411209106445]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.25845336914062]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2470.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741832733154297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9774398803710938]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0305938720703125]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8632621765136719]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.295598030090332]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6220617294311523]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7417993545532227]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7256689071655273]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9008922576904297]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.80637264251709]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8953609466552734]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.512033462524414]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.69873046875]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0992107391357422]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.730972290039062]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9959030151367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.122137069702148]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.189812660217285]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2651891708374023]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.2808198928833]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838872909545898]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.976861000061035]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.282492637634277]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.943842887878418]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.05252742767334]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[565.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5232305526733398]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9907760620117188]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1786909103393555]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6416788101196289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.223931312561035]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6444692611694336]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.960765838623047]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9702701568603516]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.9423599243164062]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.51907539367676]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"01_run1k","values":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6174411773681641]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.251507759094238]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.246901512145996]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.915827751159668]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[85.78846454620361]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7378768920898438]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2272682189941406]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.298114776611328]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.275012969970703]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.61553955078125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6167697906494141]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.908583641052246]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.976996421813965]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4535770416259766]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580761909484863]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6071262359619141]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.768472671508789]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7811479568481445]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7974891662597656]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.545183181762695]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.2]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6553411483764648]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6277685165405273]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6073875427246094]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7939624786376953]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.214959144592285]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8985929489135742]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1742172241210938]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1948862075805664]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1344852447509766]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.721461296081543]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4622774124145508]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8840656280517578]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9048471450805664]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.997834205627441]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4572582244873047]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016714096069336]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8851909637451172]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950393676757812]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.920961380004883]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5072345733642578]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7877740859985352]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7936010360717773]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5872926712036133]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.481759071350098]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5631475448608398]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9572277069091797]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9413328170776367]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7309656143188477]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.520204544067383]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8555831909179688]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8237686157226562]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.898469924926758]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1145868301391602]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.618300437927246]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.9]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6835517883300781]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0817203521728516]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1073837280273438]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9728012084960938]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.215370178222656]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6856794357299805]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9568729400634766]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9776878356933594]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9556646347045898]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.142014503479004]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}}] \ No newline at end of file From 1245639f067b2a4f78c1120d4d9fa8ecd93236ec Mon Sep 17 00:00:00 2001 From: Casey Foster Date: Tue, 30 Sep 2025 18:53:06 -0500 Subject: [PATCH 14/39] endr@0.2.1 --- frameworks/keyed/endr/package-lock.json | 8 ++++---- frameworks/keyed/endr/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frameworks/keyed/endr/package-lock.json b/frameworks/keyed/endr/package-lock.json index 6ba886ded..38bc0ea29 100644 --- a/frameworks/keyed/endr/package-lock.json +++ b/frameworks/keyed/endr/package-lock.json @@ -8,7 +8,7 @@ "name": "js-framework-benchmark-endr", "version": "1.0.0", "dependencies": { - "endr": "0.2.0", + "endr": "0.2.1", "esbuild": "0", "eslint": "9", "eslint-config-coderiety": "2" @@ -1547,9 +1547,9 @@ } }, "node_modules/endr": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/endr/-/endr-0.2.0.tgz", - "integrity": "sha512-F6FSLOo8KFRrAXxePPV7YudAu/ScGnxrn4wiT8gPWRdfrBYiQHFLMZCZ4ra1dvxECd81ws0Y+6yC1il9CkleNg==", + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/endr/-/endr-0.2.1.tgz", + "integrity": "sha512-+3sKm55IIFt7XJB2bVKT3nuxuFj2751z0Bf0qSTNLN6c5WW8tJasUtgDKWMdv05RzEidv9cxl72uxbwNO07qZg==", "license": "MIT" }, "node_modules/es-abstract": { diff --git a/frameworks/keyed/endr/package.json b/frameworks/keyed/endr/package.json index 566261cc9..36b0cd100 100644 --- a/frameworks/keyed/endr/package.json +++ b/frameworks/keyed/endr/package.json @@ -12,7 +12,7 @@ "dev": "esbuild src/index.js --loader:.js=jsx --jsx=automatic --jsx-import-source=endr --outfile=dist/index.js --bundle --minify --watch" }, "dependencies": { - "endr": "0.2.0", + "endr": "0.2.1", "esbuild": "0", "eslint-config-coderiety": "2", "eslint": "9" From f55547163af90dd872c9717432b78cf2603ec9bd Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Wed, 1 Oct 2025 21:22:08 +0100 Subject: [PATCH 15/39] fix typo --- frameworks/keyed/ripple/src/Main.ripple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/keyed/ripple/src/Main.ripple b/frameworks/keyed/ripple/src/Main.ripple index c9e738c3b..a16eec498 100644 --- a/frameworks/keyed/ripple/src/Main.ripple +++ b/frameworks/keyed/ripple/src/Main.ripple @@ -161,7 +161,7 @@ export default component App() { for (const row of @items) { const id = row.id; -
{id} { @selected = id; }}>{row.@label} From ce850171ded6ef2b9334e5cc8a7f3bb2cabd8a04 Mon Sep 17 00:00:00 2001 From: Columsys Date: Mon, 6 Oct 2025 01:22:46 +0800 Subject: [PATCH 16/39] feat: add Zess framework --- frameworks/keyed/zess/index.html | 12 + frameworks/keyed/zess/package-lock.json | 1180 +++++++++++++++++++++++ frameworks/keyed/zess/package.json | 22 + frameworks/keyed/zess/src/main.jsx | 97 ++ frameworks/keyed/zess/vite.config.js | 14 + 5 files changed, 1325 insertions(+) create mode 100644 frameworks/keyed/zess/index.html create mode 100644 frameworks/keyed/zess/package-lock.json create mode 100644 frameworks/keyed/zess/package.json create mode 100644 frameworks/keyed/zess/src/main.jsx create mode 100644 frameworks/keyed/zess/vite.config.js diff --git a/frameworks/keyed/zess/index.html b/frameworks/keyed/zess/index.html new file mode 100644 index 000000000..e97e8985e --- /dev/null +++ b/frameworks/keyed/zess/index.html @@ -0,0 +1,12 @@ + + + + + Zess-keyed + + + +
+ + + diff --git a/frameworks/keyed/zess/package-lock.json b/frameworks/keyed/zess/package-lock.json new file mode 100644 index 000000000..187c97c60 --- /dev/null +++ b/frameworks/keyed/zess/package-lock.json @@ -0,0 +1,1180 @@ +{ + "name": "js-framework-benchmark-keyed-zess", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "js-framework-benchmark-keyed-zess", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@zessjs/core": "^1.0.8" + }, + "devDependencies": { + "@zessjs/vite-plugin": "^1.0.8", + "vite": "^7.1.9" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", + "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz", + "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", + "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz", + "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", + "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", + "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", + "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", + "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", + "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", + "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", + "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", + "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", + "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", + "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", + "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", + "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", + "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", + "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", + "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", + "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", + "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", + "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", + "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", + "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", + "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", + "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", + "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", + "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", + "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", + "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", + "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", + "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", + "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", + "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", + "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", + "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", + "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", + "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", + "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", + "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", + "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", + "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", + "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", + "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", + "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", + "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", + "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", + "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@zessjs/compiler": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@zessjs/compiler/-/compiler-1.0.8.tgz", + "integrity": "sha512-b3DP+fEo/Lql02RhAN+k4WvYc8RKTs9T8s2M5wnoo4q8Jz6NzOqvp8QiAEP9kQlly85mETH8cgoB8mOr959w0g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "astring": "^1.9.0", + "entities": "^7.0.0", + "merge-source-map": "^1.1.0", + "meriyah": "^6.1.4", + "source-map": "^0.7.6" + }, + "engines": { + "node": ">=18.12.0" + } + }, + "node_modules/@zessjs/core": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@zessjs/core/-/core-1.0.8.tgz", + "integrity": "sha512-bEVxZZKDdbfCVuCpNrBMvL66YX64NZrq/6YIswgFDnhM+QVKlDuk6nwmrQBVCoXGBPpkIS3wVSeEYcdIE5efLQ==", + "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "csstype": "^3.1.3" + } + }, + "node_modules/@zessjs/vite-plugin": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@zessjs/vite-plugin/-/vite-plugin-1.0.8.tgz", + "integrity": "sha512-GUOGURugUm4eFtxTScJuUqZOQ1F3O+8RAINKwoRVZzpESlHSbcBxvH2qSgx/E9hfUNw+DCeMNvodS3a0cZw5kw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12.0" + }, + "peerDependencies": { + "@zessjs/compiler": "1.0.8", + "vite": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmmirror.com/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", + "dev": true, + "license": "MIT", + "bin": { + "astring": "bin/astring" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT", + "peer": true + }, + "node_modules/entities": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.0.tgz", + "integrity": "sha512-FDWG5cmEYf2Z00IkYRhbFrwIwvdFKH07uV8dvNy0omp/Qb1xcyCWp2UDtcwJF4QZZvk0sLudP6/hAu42TaqVhQ==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.10.tgz", + "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.10", + "@esbuild/android-arm": "0.25.10", + "@esbuild/android-arm64": "0.25.10", + "@esbuild/android-x64": "0.25.10", + "@esbuild/darwin-arm64": "0.25.10", + "@esbuild/darwin-x64": "0.25.10", + "@esbuild/freebsd-arm64": "0.25.10", + "@esbuild/freebsd-x64": "0.25.10", + "@esbuild/linux-arm": "0.25.10", + "@esbuild/linux-arm64": "0.25.10", + "@esbuild/linux-ia32": "0.25.10", + "@esbuild/linux-loong64": "0.25.10", + "@esbuild/linux-mips64el": "0.25.10", + "@esbuild/linux-ppc64": "0.25.10", + "@esbuild/linux-riscv64": "0.25.10", + "@esbuild/linux-s390x": "0.25.10", + "@esbuild/linux-x64": "0.25.10", + "@esbuild/netbsd-arm64": "0.25.10", + "@esbuild/netbsd-x64": "0.25.10", + "@esbuild/openbsd-arm64": "0.25.10", + "@esbuild/openbsd-x64": "0.25.10", + "@esbuild/openharmony-arm64": "0.25.10", + "@esbuild/sunos-x64": "0.25.10", + "@esbuild/win32-arm64": "0.25.10", + "@esbuild/win32-ia32": "0.25.10", + "@esbuild/win32-x64": "0.25.10" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "license": "MIT", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/merge-source-map/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meriyah": { + "version": "6.1.4", + "resolved": "https://registry.npmmirror.com/meriyah/-/meriyah-6.1.4.tgz", + "integrity": "sha512-Sz8FzjzI0kN13GK/6MVEsVzMZEPvOhnmmI1lU5+/1cGOiK3QUahntrNNtdVeihrO7t9JpoH75iMNXg6R6uWflQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/rollup": { + "version": "4.52.4", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.52.4.tgz", + "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.4", + "@rollup/rollup-android-arm64": "4.52.4", + "@rollup/rollup-darwin-arm64": "4.52.4", + "@rollup/rollup-darwin-x64": "4.52.4", + "@rollup/rollup-freebsd-arm64": "4.52.4", + "@rollup/rollup-freebsd-x64": "4.52.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", + "@rollup/rollup-linux-arm-musleabihf": "4.52.4", + "@rollup/rollup-linux-arm64-gnu": "4.52.4", + "@rollup/rollup-linux-arm64-musl": "4.52.4", + "@rollup/rollup-linux-loong64-gnu": "4.52.4", + "@rollup/rollup-linux-ppc64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-musl": "4.52.4", + "@rollup/rollup-linux-s390x-gnu": "4.52.4", + "@rollup/rollup-linux-x64-gnu": "4.52.4", + "@rollup/rollup-linux-x64-musl": "4.52.4", + "@rollup/rollup-openharmony-arm64": "4.52.4", + "@rollup/rollup-win32-arm64-msvc": "4.52.4", + "@rollup/rollup-win32-ia32-msvc": "4.52.4", + "@rollup/rollup-win32-x64-gnu": "4.52.4", + "@rollup/rollup-win32-x64-msvc": "4.52.4", + "fsevents": "~2.3.2" + } + }, + "node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/vite": { + "version": "7.1.9", + "resolved": "https://registry.npmmirror.com/vite/-/vite-7.1.9.tgz", + "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + } + } +} diff --git a/frameworks/keyed/zess/package.json b/frameworks/keyed/zess/package.json new file mode 100644 index 000000000..b03e2b0aa --- /dev/null +++ b/frameworks/keyed/zess/package.json @@ -0,0 +1,22 @@ +{ + "name": "js-framework-benchmark-keyed-zess", + "version": "1.0.0", + "description": "Benchmark for Zess", + "js-framework-benchmark": { + "frameworkVersionFromPackage": "@zessjs/core", + "frameworkHomeURL": "https://rpsffx.github.io/zess/" + }, + "scripts": { + "dev": "vite", + "build-prod": "vite build", + "preview": "vite preview" + }, + "license": "MIT", + "devDependencies": { + "@zessjs/vite-plugin": "^1.0.8", + "vite": "^7.1.9" + }, + "dependencies": { + "@zessjs/core": "^1.0.8" + } +} diff --git a/frameworks/keyed/zess/src/main.jsx b/frameworks/keyed/zess/src/main.jsx new file mode 100644 index 000000000..7bbbc0d25 --- /dev/null +++ b/frameworks/keyed/zess/src/main.jsx @@ -0,0 +1,97 @@ +import { useSignal, useSelector, batch, render, For } from "@zessjs/core"; + +const adjectives = ["pretty", "large", "big", "small", "tall", "short", "long", "handsome", "plain", "quaint", "clean", "elegant", "easy", "angry", "crazy", "helpful", "mushy", "odd", "unsightly", "adorable", "important", "inexpensive", "cheap", "expensive", "fancy"]; // prettier-ignore +const colors = ["red", "yellow", "blue", "green", "pink", "brown", "purple", "brown", "white", "black", "orange"]; // prettier-ignore +const nouns = ["table", "chair", "house", "bbq", "desk", "car", "pony", "cookie", "sandwich", "burger", "pizza", "mouse", "keyboard"]; // prettier-ignore + +const random = (max) => Math.round(Math.random() * 1000) % max; + +let nextId = 1; + +const buildData = (count) => { + let data = new Array(count); + for (let i = 0; i < count; ++i) { + const [label, setLabel] = useSignal( + `${adjectives[random(adjectives.length)]} ${colors[random(colors.length)]} ${nouns[random(nouns.length)]}` + ); + data[i] = { id: nextId++, label, setLabel }; + } + return data; +}; + +const Button = ([id, text, fn]) => ( +
+ +
+); + +render(() => { + const [data, setData] = useSignal([]); + const [selected, setSelected] = useSignal(null); + const run = () => setData(buildData(1_000)); + const runLots = () => setData(buildData(10_000)); + const add = () => setData((d) => [...d, ...buildData(1_000)]); + const update = () => + batch(() => { + for (let i = 0, d = data(), len = d.length; i < len; i += 10) d[i].setLabel((l) => l + " !!!"); + }); + const clear = () => setData([]); + const swapRows = () => { + const list = data().slice(); + if (list.length > 998) { + let item = list[1]; + list[1] = list[998]; + list[998] = item; + setData(list); + } + }; + const isSelected = useSelector(selected); + + return ( +
+
+
+
+

Zess

+
+
+
+
+
+
+
+ + + + {(row) => { + let rowId = row.id; + return ( + + + + + ); // prettier-ignore + }} + + +
+ + setSelected(rowId)} textContent={row.label()} /> + + setData((d) => d.toSpliced(d.findIndex((d) => d.id === rowId), 1))}> + + +
+
+ ); +}, document.getElementById("main")); diff --git a/frameworks/keyed/zess/vite.config.js b/frameworks/keyed/zess/vite.config.js new file mode 100644 index 000000000..7987e844f --- /dev/null +++ b/frameworks/keyed/zess/vite.config.js @@ -0,0 +1,14 @@ +import zess from "@zessjs/vite-plugin"; +import { defineConfig } from "vite"; + +export default defineConfig({ + plugins: [zess()], + build: { + rollupOptions: { + input: "src/main.jsx", + output: { + entryFileNames: "main.js", + }, + }, + }, +}); From 00b865ccfbd4a21f368f6cf6733b59fae2af0976 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Tue, 7 Oct 2025 20:56:58 +0200 Subject: [PATCH 17/39] chrome 141 results --- webdriver-ts-results/src/App.tsx | 4 +- webdriver-ts-results/src/results.ts | 422 ++++++++++++++-------------- webdriver-ts/package-lock.json | 421 +++++++++++++++++++-------- webdriver-ts/package.json | 22 +- webdriver-ts/results.json | 2 +- 5 files changed, 536 insertions(+), 335 deletions(-) diff --git a/webdriver-ts-results/src/App.tsx b/webdriver-ts-results/src/App.tsx index 8cefbf6b2..d2e681b84 100644 --- a/webdriver-ts-results/src/App.tsx +++ b/webdriver-ts-results/src/App.tsx @@ -30,7 +30,7 @@ const KnownIssuesList = () => { const App = () => { // eslint-disable-next-line no-constant-condition - const version = "Chrome 140.0.7339.81" + const version = "Chrome 141.0.7390.55" const disclaimer = false ? (

js-framework-benchmark results for {version}

@@ -49,7 +49,7 @@ const App = () => { const testEnvironmentInfo = (

- The benchmark was run on a MacBook Pro 14 (48 GB RAM, M4 14/20 Cores, OSX 15.6.1), {version} + The benchmark was run on a MacBook Pro 14 (48 GB RAM, M4 14/20 Cores, OSX 26.0.1), {version} (arm64) using the puppeteer benchmark driver with reduced tracing.

); diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index 2bc1da4aa..03ceb8125 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -1,216 +1,216 @@ import {RawResult} from './Common'; export const results: RawResult[]=[ -{"f":0,"b":[{"b":0,"v":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"b":1,"v":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"b":2,"v":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"b":3,"v":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"b":4,"v":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"b":5,"v":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"b":6,"v":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"b":7,"v":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"b":8,"v":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[16.7]}},{"b":11,"v":{"DEFAULT":[16.71]}},{"b":12,"v":{"DEFAULT":[1.52]}},{"b":13,"v":{"DEFAULT":[155.93]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[67.6]}}]}, -{"f":1,"b":[{"b":0,"v":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"b":1,"v":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"b":2,"v":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"b":3,"v":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"b":4,"v":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"b":5,"v":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"b":6,"v":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"b":7,"v":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"b":8,"v":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[6.55]}},{"b":11,"v":{"DEFAULT":[8.27]}},{"b":12,"v":{"DEFAULT":[4.88]}},{"b":13,"v":{"DEFAULT":[46.41]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[29.5]}}]}, -{"f":2,"b":[{"b":0,"v":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"b":1,"v":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"b":2,"v":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"b":3,"v":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"b":4,"v":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"b":5,"v":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"b":6,"v":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"b":7,"v":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"b":8,"v":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"b":9,"v":{"DEFAULT":[1.51]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.81]}},{"b":12,"v":{"DEFAULT":[2.11]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[149.6]}}]}, -{"f":3,"b":[{"b":0,"v":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"b":1,"v":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"b":2,"v":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"b":3,"v":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"b":4,"v":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"b":5,"v":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"b":6,"v":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"b":7,"v":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"b":8,"v":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.74]}},{"b":12,"v":{"DEFAULT":[1.71]}},{"b":13,"v":{"DEFAULT":[22.68]}},{"b":14,"v":{"DEFAULT":[109.2]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[122.6]}}]}, -{"f":4,"b":[{"b":0,"v":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"b":1,"v":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"b":2,"v":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"b":3,"v":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"b":4,"v":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"b":5,"v":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"b":6,"v":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"b":7,"v":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"b":8,"v":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[1.12]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.67]}},{"b":14,"v":{"DEFAULT":[109.3]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[120.8]}}]}, -{"f":5,"b":[{"b":0,"v":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"b":1,"v":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"b":2,"v":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"b":3,"v":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"b":4,"v":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"b":5,"v":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"b":6,"v":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"b":7,"v":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"b":8,"v":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.52]}},{"b":10,"v":{"DEFAULT":[4.83]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[2.12]}},{"b":13,"v":{"DEFAULT":[29.39]}},{"b":14,"v":{"DEFAULT":[144.2]}},{"b":15,"v":{"DEFAULT":[44.7]}},{"b":16,"v":{"DEFAULT":[151.3]}}]}, -{"f":6,"b":[{"b":0,"v":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"b":1,"v":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"b":2,"v":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"b":3,"v":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"b":4,"v":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"b":5,"v":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"b":6,"v":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"b":7,"v":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"b":8,"v":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.72]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[1.78]}},{"b":13,"v":{"DEFAULT":[22.9]}},{"b":14,"v":{"DEFAULT":[110.6]}},{"b":15,"v":{"DEFAULT":[33.7]}},{"b":16,"v":{"DEFAULT":[130.8]}}]}, -{"f":7,"b":[{"b":0,"v":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"b":1,"v":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"b":3,"v":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"b":4,"v":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"b":5,"v":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"b":6,"v":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"b":7,"v":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"b":8,"v":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"b":9,"v":{"DEFAULT":[1.56]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[30.71]}},{"b":14,"v":{"DEFAULT":[151.4]}},{"b":15,"v":{"DEFAULT":[46.3]}},{"b":16,"v":{"DEFAULT":[158.7]}}]}, -{"f":8,"b":[{"b":0,"v":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"b":1,"v":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"b":2,"v":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"b":3,"v":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"b":4,"v":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"b":5,"v":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"b":6,"v":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"b":7,"v":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"b":8,"v":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[8.43]}},{"b":13,"v":{"DEFAULT":[17.95]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, -{"f":9,"b":[{"b":0,"v":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"b":1,"v":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"b":2,"v":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"b":3,"v":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"b":4,"v":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"b":5,"v":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"b":6,"v":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"b":7,"v":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"b":8,"v":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[10.93]}},{"b":11,"v":{"DEFAULT":[11.03]}},{"b":12,"v":{"DEFAULT":[50.82]}},{"b":13,"v":{"DEFAULT":[103.81]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46]}}]}, -{"f":10,"b":[{"b":0,"v":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"b":1,"v":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"b":2,"v":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"b":3,"v":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"b":4,"v":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"b":5,"v":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"b":6,"v":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"b":7,"v":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"b":8,"v":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.81]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[43.5]}}]}, -{"f":11,"b":[{"b":0,"v":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"b":1,"v":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"b":2,"v":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"b":3,"v":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"b":4,"v":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"b":5,"v":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"b":6,"v":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"b":7,"v":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"b":8,"v":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"b":9,"v":{"DEFAULT":[1.97]}},{"b":10,"v":{"DEFAULT":[6.97]}},{"b":11,"v":{"DEFAULT":[6.97]}},{"b":12,"v":{"DEFAULT":[7.02]}},{"b":13,"v":{"DEFAULT":[47.96]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[215.7]}}]}, -{"f":12,"b":[{"b":0,"v":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"b":1,"v":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"b":2,"v":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"b":3,"v":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"b":4,"v":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"b":5,"v":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"b":6,"v":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"b":7,"v":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"b":8,"v":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"b":9,"v":{"DEFAULT":[41.06]}},{"b":10,"v":{"DEFAULT":[52.67]}},{"b":11,"v":{"DEFAULT":[52.88]}},{"b":12,"v":{"DEFAULT":[49.37]}},{"b":13,"v":{"DEFAULT":[134.16]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[76.6]}}]}, -{"f":13,"b":[{"b":0,"v":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"b":1,"v":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"b":2,"v":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"b":3,"v":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"b":4,"v":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"b":5,"v":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"b":6,"v":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"b":7,"v":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"b":8,"v":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"b":9,"v":{"DEFAULT":[51.83]}},{"b":10,"v":{"DEFAULT":[64.79]}},{"b":11,"v":{"DEFAULT":[64.85]}},{"b":12,"v":{"DEFAULT":[61.3]}},{"b":13,"v":{"DEFAULT":[136.82]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[67.2]}}]}, -{"f":14,"b":[{"b":0,"v":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"b":1,"v":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"b":2,"v":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"b":3,"v":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"b":4,"v":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"b":5,"v":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"b":6,"v":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"b":7,"v":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"b":8,"v":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.28]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":15,"b":[{"b":0,"v":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"b":1,"v":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"b":2,"v":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"b":3,"v":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"b":4,"v":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"b":5,"v":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"b":6,"v":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"b":7,"v":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"b":8,"v":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.83]}},{"b":12,"v":{"DEFAULT":[1.56]}},{"b":13,"v":{"DEFAULT":[28.02]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.2]}}]}, -{"f":16,"b":[{"b":0,"v":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"b":1,"v":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"b":2,"v":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"b":3,"v":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"b":4,"v":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"b":5,"v":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"b":6,"v":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"b":7,"v":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"b":8,"v":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.82]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.59]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, -{"f":17,"b":[{"b":0,"v":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"b":1,"v":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"b":2,"v":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"b":3,"v":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"b":4,"v":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"b":5,"v":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"b":6,"v":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"b":7,"v":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"b":8,"v":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[28.58]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[60.7]}}]}, -{"f":18,"b":[{"b":0,"v":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"b":1,"v":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"b":2,"v":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"b":3,"v":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"b":4,"v":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"b":5,"v":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"b":6,"v":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"b":7,"v":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"b":8,"v":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"b":9,"v":{"DEFAULT":[0.72]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[1.25]}},{"b":13,"v":{"DEFAULT":[36.28]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[67.8]}}]}, -{"f":19,"b":[{"b":0,"v":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"b":1,"v":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"b":2,"v":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"b":4,"v":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"b":5,"v":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"b":6,"v":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"b":7,"v":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"b":8,"v":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.85]}},{"b":11,"v":{"DEFAULT":[1.85]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.65]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[38.4]}}]}, -{"f":20,"b":[{"b":0,"v":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"b":1,"v":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"b":2,"v":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"b":3,"v":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"b":4,"v":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"b":5,"v":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"b":6,"v":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"b":7,"v":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"b":8,"v":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.71]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.81]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[39.8]}}]}, -{"f":21,"b":[{"b":0,"v":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"b":1,"v":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"b":2,"v":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"b":3,"v":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"b":4,"v":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"b":5,"v":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"b":6,"v":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"b":7,"v":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"b":8,"v":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[5.37]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[5.48]}},{"b":13,"v":{"DEFAULT":[37.69]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[346.6]}}]}, -{"f":22,"b":[{"b":0,"v":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"b":1,"v":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"b":2,"v":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"b":3,"v":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"b":4,"v":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"b":5,"v":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"b":6,"v":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"b":7,"v":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"b":8,"v":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.23]}},{"b":11,"v":{"DEFAULT":[2.21]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[15.95]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.1]}}]}, -{"f":23,"b":[{"b":0,"v":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"b":1,"v":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"b":2,"v":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"b":3,"v":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"b":4,"v":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"b":5,"v":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"b":6,"v":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"b":7,"v":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"b":8,"v":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[7.23]}},{"b":11,"v":{"DEFAULT":[7.31]}},{"b":12,"v":{"DEFAULT":[1.31]}},{"b":13,"v":{"DEFAULT":[63.36]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[68.8]}}]}, -{"f":24,"b":[{"b":0,"v":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"b":1,"v":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"b":2,"v":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"b":3,"v":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"b":4,"v":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"b":6,"v":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"b":7,"v":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"b":8,"v":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[2.67]}},{"b":13,"v":{"DEFAULT":[23.84]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[168.7]}}]}, -{"f":25,"b":[{"b":0,"v":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"b":1,"v":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"b":2,"v":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"b":3,"v":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"b":4,"v":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"b":6,"v":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"b":7,"v":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"b":8,"v":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[1.91]}},{"b":11,"v":{"DEFAULT":[1.95]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[13.06]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[44.6]}}]}, -{"f":26,"b":[{"b":0,"v":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"b":1,"v":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"b":2,"v":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"b":3,"v":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"b":4,"v":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"b":5,"v":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"b":6,"v":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"b":7,"v":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"b":8,"v":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[45.8]}}]}, -{"f":27,"b":[{"b":0,"v":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"b":1,"v":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"b":2,"v":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"b":3,"v":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"b":4,"v":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"b":5,"v":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"b":6,"v":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"b":7,"v":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"b":8,"v":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.04]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.5]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[3.7]}},{"b":16,"v":{"DEFAULT":[30.9]}}]}, -{"f":28,"b":[{"b":0,"v":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"b":1,"v":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"b":2,"v":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"b":3,"v":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"b":4,"v":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"b":5,"v":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"b":6,"v":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"b":7,"v":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"b":8,"v":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.67]}},{"b":11,"v":{"DEFAULT":[4.71]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[57.4]}}]}, -{"f":29,"b":[{"b":0,"v":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"b":1,"v":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"b":2,"v":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"b":3,"v":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"b":4,"v":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"b":5,"v":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"b":6,"v":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"b":7,"v":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"b":8,"v":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.16]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.1]}}]}, -{"f":30,"b":[{"b":0,"v":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"b":1,"v":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"b":2,"v":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"b":3,"v":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"b":4,"v":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"b":5,"v":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"b":6,"v":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"b":7,"v":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"b":8,"v":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[8.22]}},{"b":10,"v":{"DEFAULT":[14.16]}},{"b":11,"v":{"DEFAULT":[14.16]}},{"b":12,"v":{"DEFAULT":[9.13]}},{"b":13,"v":{"DEFAULT":[63.93]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[984.2]}}]}, -{"f":31,"b":[{"b":0,"v":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"b":1,"v":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"b":2,"v":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"b":3,"v":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"b":4,"v":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"b":5,"v":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"b":6,"v":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"b":7,"v":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"b":8,"v":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.43]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[27.95]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[36.5]}}]}, -{"f":32,"b":[{"b":0,"v":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"b":1,"v":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"b":2,"v":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"b":3,"v":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"b":4,"v":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"b":5,"v":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"b":6,"v":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"b":7,"v":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"b":8,"v":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[23.76]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[43.6]}}]}, -{"f":33,"b":[{"b":0,"v":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"b":1,"v":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"b":2,"v":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"b":3,"v":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"b":4,"v":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"b":5,"v":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"b":6,"v":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"b":7,"v":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"b":8,"v":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.56]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, -{"f":34,"b":[{"b":0,"v":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"b":1,"v":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"b":2,"v":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"b":3,"v":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"b":4,"v":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"b":5,"v":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"b":6,"v":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"b":7,"v":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"b":8,"v":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"b":9,"v":{"DEFAULT":[5.25]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.23]}},{"b":12,"v":{"DEFAULT":[6.26]}},{"b":13,"v":{"DEFAULT":[61.09]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[122.1]}}]}, -{"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"b":1,"v":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"b":2,"v":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"b":3,"v":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"b":4,"v":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"b":5,"v":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"b":7,"v":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"b":8,"v":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[4.18]}},{"b":11,"v":{"DEFAULT":[4.21]}},{"b":12,"v":{"DEFAULT":[1.06]}},{"b":13,"v":{"DEFAULT":[34.04]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[37.3]}}]}, -{"f":36,"b":[{"b":0,"v":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"b":1,"v":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"b":2,"v":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"b":3,"v":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"b":4,"v":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"b":5,"v":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"b":6,"v":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"b":7,"v":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"b":8,"v":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[30.97]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[75.5]}}]}, -{"f":37,"b":[{"b":0,"v":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"b":1,"v":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"b":2,"v":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"b":3,"v":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"b":4,"v":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"b":5,"v":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"b":6,"v":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"b":7,"v":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"b":8,"v":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.28]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[261.9]}}]}, -{"f":38,"b":[{"b":0,"v":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"b":1,"v":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"b":2,"v":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"b":3,"v":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"b":4,"v":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"b":5,"v":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"b":6,"v":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"b":7,"v":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"b":8,"v":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[26.76]}},{"b":14,"v":{"DEFAULT":[8.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, -{"f":39,"b":[{"b":0,"v":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"b":1,"v":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"b":2,"v":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"b":3,"v":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"b":4,"v":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"b":5,"v":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"b":6,"v":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"b":7,"v":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"b":8,"v":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[35.34]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, -{"f":40,"b":[{"b":0,"v":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"b":1,"v":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"b":2,"v":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"b":3,"v":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"b":4,"v":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"b":5,"v":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"b":6,"v":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"b":7,"v":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"b":8,"v":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.05]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.12]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[46.7]}}]}, -{"f":41,"b":[{"b":0,"v":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"b":1,"v":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"b":2,"v":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"b":3,"v":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"b":4,"v":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"b":5,"v":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"b":6,"v":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"b":7,"v":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"b":8,"v":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.07]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[23.88]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[48.9]}}]}, -{"f":42,"b":[{"b":0,"v":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"b":1,"v":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"b":2,"v":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"b":3,"v":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"b":4,"v":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"b":5,"v":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"b":6,"v":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"b":7,"v":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"b":8,"v":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[27.01]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[78.9]}}]}, -{"f":43,"b":[{"b":0,"v":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"b":1,"v":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"b":2,"v":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"b":3,"v":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"b":4,"v":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"b":5,"v":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"b":6,"v":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"b":7,"v":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"b":8,"v":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.3]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":44,"b":[{"b":0,"v":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"b":1,"v":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"b":2,"v":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"b":3,"v":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"b":4,"v":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"b":5,"v":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"b":6,"v":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"b":7,"v":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"b":8,"v":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[62.3]}}]}, -{"f":45,"b":[{"b":0,"v":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"b":1,"v":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"b":2,"v":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"b":3,"v":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"b":5,"v":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"b":6,"v":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"b":7,"v":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"b":8,"v":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.29]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.63]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[41.4]}}]}, -{"f":46,"b":[{"b":0,"v":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"b":1,"v":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"b":2,"v":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"b":3,"v":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"b":4,"v":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"b":5,"v":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"b":6,"v":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"b":7,"v":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"b":8,"v":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[48.2]}}]}, -{"f":47,"b":[{"b":0,"v":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"b":1,"v":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"b":2,"v":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"b":3,"v":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"b":4,"v":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"b":5,"v":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"b":6,"v":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"b":7,"v":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"b":8,"v":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[12.64]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[75.28]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[80.6]}}]}, -{"f":48,"b":[{"b":0,"v":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"b":1,"v":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"b":2,"v":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"b":3,"v":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"b":4,"v":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"b":5,"v":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"b":6,"v":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"b":7,"v":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"b":8,"v":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[87.4]}}]}, -{"f":49,"b":[{"b":0,"v":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"b":1,"v":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"b":2,"v":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"b":3,"v":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"b":4,"v":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"b":5,"v":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"b":6,"v":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"b":7,"v":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"b":8,"v":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.22]}},{"b":11,"v":{"DEFAULT":[15.33]}},{"b":12,"v":{"DEFAULT":[4.09]}},{"b":13,"v":{"DEFAULT":[114.92]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[629.5]}}]}, -{"f":50,"b":[{"b":0,"v":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"b":1,"v":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"b":2,"v":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"b":3,"v":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"b":4,"v":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"b":5,"v":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"b":6,"v":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"b":7,"v":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"b":8,"v":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.34]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.66]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[172.1]}}]}, -{"f":51,"b":[{"b":0,"v":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"b":1,"v":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"b":2,"v":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"b":3,"v":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"b":4,"v":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"b":5,"v":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"b":6,"v":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"b":7,"v":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"b":8,"v":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[5.51]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.55]}},{"b":13,"v":{"DEFAULT":[37.22]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[222.1]}}]}, -{"f":52,"b":[{"b":0,"v":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"b":1,"v":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"b":2,"v":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"b":3,"v":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"b":4,"v":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"b":5,"v":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"b":6,"v":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"b":7,"v":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"b":8,"v":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.86]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[21.08]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[42.8]}}]}, -{"f":53,"b":[{"b":0,"v":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"b":1,"v":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"b":2,"v":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"b":3,"v":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"b":4,"v":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"b":5,"v":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"b":6,"v":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"b":7,"v":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"b":8,"v":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.67]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.04]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[38.7]}}]}, -{"f":54,"b":[{"b":0,"v":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"b":1,"v":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"b":2,"v":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"b":3,"v":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"b":4,"v":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"b":5,"v":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"b":6,"v":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"b":7,"v":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"b":8,"v":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[33.92]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[43.3]}}]}, -{"f":55,"b":[{"b":0,"v":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"b":1,"v":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"b":2,"v":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"b":3,"v":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"b":4,"v":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"b":5,"v":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"b":6,"v":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"b":7,"v":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"b":8,"v":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.36]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[1.37]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[77.8]}}]}, -{"f":56,"b":[{"b":0,"v":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"b":1,"v":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"b":3,"v":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"b":4,"v":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"b":5,"v":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"b":6,"v":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"b":7,"v":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"b":8,"v":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.47]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[19.02]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[37.4]}}]}, -{"f":57,"b":[{"b":0,"v":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"b":1,"v":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"b":2,"v":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"b":3,"v":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"b":4,"v":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"b":5,"v":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"b":6,"v":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"b":7,"v":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"b":8,"v":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[1.03]}},{"b":13,"v":{"DEFAULT":[17.5]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[79.9]}}]}, -{"f":58,"b":[{"b":0,"v":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"b":1,"v":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"b":2,"v":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"b":3,"v":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"b":4,"v":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"b":5,"v":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"b":6,"v":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"b":7,"v":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"b":8,"v":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.15]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.64]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[95.2]}}]}, -{"f":59,"b":[{"b":0,"v":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"b":1,"v":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"b":2,"v":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"b":3,"v":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"b":4,"v":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"b":5,"v":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"b":6,"v":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"b":7,"v":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"b":8,"v":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.36]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[53.9]}}]}, -{"f":60,"b":[{"b":0,"v":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"b":1,"v":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"b":2,"v":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"b":3,"v":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"b":4,"v":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"b":5,"v":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"b":6,"v":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"b":8,"v":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.43]}},{"b":11,"v":{"DEFAULT":[2.46]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, -{"f":61,"b":[{"b":0,"v":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"b":1,"v":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"b":2,"v":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"b":3,"v":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"b":4,"v":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"b":5,"v":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"b":6,"v":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"b":7,"v":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"b":8,"v":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[37.5]}}]}, -{"f":62,"b":[{"b":0,"v":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"b":1,"v":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"b":2,"v":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"b":3,"v":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"b":4,"v":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"b":5,"v":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"b":6,"v":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"b":7,"v":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"b":8,"v":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.34]}},{"b":11,"v":{"DEFAULT":[2.35]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.11]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":63,"b":[{"b":0,"v":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"b":1,"v":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"b":2,"v":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"b":3,"v":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"b":4,"v":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"b":5,"v":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"b":6,"v":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"b":7,"v":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"b":8,"v":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.1]}},{"b":11,"v":{"DEFAULT":[8.53]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[480.3]}}]}, -{"f":64,"b":[{"b":0,"v":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"b":1,"v":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"b":2,"v":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"b":3,"v":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"b":4,"v":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"b":5,"v":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"b":6,"v":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"b":7,"v":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"b":8,"v":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, -{"f":65,"b":[{"b":0,"v":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"b":1,"v":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"b":2,"v":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"b":3,"v":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"b":4,"v":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"b":5,"v":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"b":6,"v":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"b":7,"v":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"b":8,"v":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.42]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[64.7]}}]}, -{"f":66,"b":[{"b":0,"v":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"b":1,"v":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"b":2,"v":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"b":3,"v":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"b":4,"v":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"b":5,"v":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"b":6,"v":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"b":7,"v":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"b":8,"v":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.99]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[74.2]}}]}, -{"f":67,"b":[{"b":0,"v":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"b":1,"v":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"b":2,"v":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"b":3,"v":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"b":4,"v":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"b":5,"v":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"b":6,"v":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"b":7,"v":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"b":8,"v":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"b":9,"v":{"DEFAULT":[2.85]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[290.1]}}]}, -{"f":68,"b":[{"b":0,"v":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"b":1,"v":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"b":2,"v":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"b":3,"v":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"b":4,"v":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"b":5,"v":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"b":6,"v":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"b":7,"v":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"b":8,"v":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[4.01]}},{"b":11,"v":{"DEFAULT":[4.03]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.84]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.7]}}]}, -{"f":69,"b":[{"b":0,"v":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"b":1,"v":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"b":2,"v":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"b":3,"v":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"b":4,"v":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"b":5,"v":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"b":6,"v":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"b":7,"v":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"b":8,"v":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[17.6]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[57.1]}}]}, -{"f":70,"b":[{"b":0,"v":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"b":1,"v":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"b":2,"v":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"b":3,"v":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"b":4,"v":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"b":5,"v":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"b":6,"v":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"b":7,"v":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"b":8,"v":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"b":9,"v":{"DEFAULT":[3.38]}},{"b":10,"v":{"DEFAULT":[4.91]}},{"b":11,"v":{"DEFAULT":[5.01]}},{"b":12,"v":{"DEFAULT":[3.66]}},{"b":13,"v":{"DEFAULT":[16.28]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[107.8]}}]}, -{"f":71,"b":[{"b":0,"v":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"b":1,"v":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"b":3,"v":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"b":4,"v":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"b":5,"v":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"b":6,"v":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"b":7,"v":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"b":8,"v":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.33]}},{"b":13,"v":{"DEFAULT":[23.83]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, -{"f":72,"b":[{"b":0,"v":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"b":1,"v":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"b":2,"v":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"b":3,"v":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"b":4,"v":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"b":5,"v":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"b":6,"v":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"b":7,"v":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"b":8,"v":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[45.5]}}]}, -{"f":73,"b":[{"b":0,"v":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"b":1,"v":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"b":2,"v":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"b":3,"v":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"b":4,"v":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"b":5,"v":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"b":6,"v":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"b":7,"v":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"b":8,"v":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[19.06]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[39.4]}}]}, -{"f":74,"b":[{"b":0,"v":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"b":1,"v":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"b":2,"v":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"b":3,"v":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"b":4,"v":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"b":5,"v":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"b":6,"v":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"b":7,"v":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.67]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.29]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":75,"b":[{"b":0,"v":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"b":1,"v":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"b":2,"v":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"b":3,"v":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"b":4,"v":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"b":5,"v":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"b":6,"v":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"b":7,"v":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"b":8,"v":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[40.4]}}]}, -{"f":76,"b":[{"b":0,"v":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"b":1,"v":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"b":2,"v":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"b":3,"v":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"b":4,"v":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"b":5,"v":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"b":6,"v":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"b":7,"v":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"b":8,"v":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[49.15]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[61.2]}}]}, -{"f":77,"b":[{"b":0,"v":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"b":1,"v":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"b":2,"v":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"b":3,"v":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"b":4,"v":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"b":5,"v":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"b":6,"v":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"b":7,"v":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"b":8,"v":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.18]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, -{"f":78,"b":[{"b":0,"v":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"b":1,"v":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"b":2,"v":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"b":3,"v":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"b":4,"v":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"b":5,"v":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"b":6,"v":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"b":7,"v":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"b":8,"v":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.17]}},{"b":12,"v":{"DEFAULT":[4.85]}},{"b":13,"v":{"DEFAULT":[39.5]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[97]}}]}, -{"f":79,"b":[{"b":0,"v":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"b":1,"v":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"b":2,"v":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"b":3,"v":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"b":4,"v":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"b":5,"v":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"b":6,"v":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"b":7,"v":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"b":8,"v":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.98]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.92]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, -{"f":80,"b":[{"b":0,"v":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"b":1,"v":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"b":2,"v":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"b":3,"v":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"b":4,"v":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"b":5,"v":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"b":6,"v":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"b":7,"v":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"b":8,"v":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.72]}},{"b":11,"v":{"DEFAULT":[8.78]}},{"b":12,"v":{"DEFAULT":[2.14]}},{"b":13,"v":{"DEFAULT":[73.16]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[236.1]}}]}, -{"f":81,"b":[{"b":0,"v":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"b":1,"v":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"b":2,"v":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"b":3,"v":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"b":4,"v":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"b":5,"v":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"b":6,"v":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"b":7,"v":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"b":8,"v":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.35]}},{"b":12,"v":{"DEFAULT":[3.25]}},{"b":13,"v":{"DEFAULT":[53.14]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[366.6]}}]}, -{"f":82,"b":[{"b":0,"v":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"b":1,"v":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"b":2,"v":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"b":3,"v":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"b":4,"v":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"b":5,"v":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"b":6,"v":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"b":7,"v":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"b":8,"v":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[4.59]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.46]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.3]}}]}, -{"f":83,"b":[{"b":0,"v":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"b":1,"v":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"b":2,"v":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"b":3,"v":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"b":4,"v":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"b":5,"v":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"b":6,"v":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"b":7,"v":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"b":8,"v":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.96]}},{"b":13,"v":{"DEFAULT":[33.36]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[206.4]}}]}, -{"f":84,"b":[{"b":0,"v":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"b":1,"v":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"b":2,"v":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"b":3,"v":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"b":4,"v":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"b":5,"v":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"b":6,"v":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"b":7,"v":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"b":8,"v":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[31.62]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.6]}}]}, -{"f":85,"b":[{"b":0,"v":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"b":1,"v":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"b":2,"v":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"b":3,"v":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"b":4,"v":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"b":5,"v":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"b":6,"v":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"b":7,"v":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"b":8,"v":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.55]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.69]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, -{"f":86,"b":[{"b":0,"v":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"b":1,"v":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"b":2,"v":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"b":3,"v":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"b":4,"v":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"b":5,"v":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"b":6,"v":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"b":7,"v":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"b":8,"v":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"b":9,"v":{"DEFAULT":[1.11]}},{"b":10,"v":{"DEFAULT":[5.78]}},{"b":11,"v":{"DEFAULT":[6.22]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[43.49]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, -{"f":87,"b":[{"b":0,"v":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"b":1,"v":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"b":2,"v":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"b":3,"v":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"b":4,"v":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"b":5,"v":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"b":6,"v":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"b":7,"v":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"b":8,"v":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.22]}},{"b":11,"v":{"DEFAULT":[7.78]}},{"b":12,"v":{"DEFAULT":[2.79]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[213.8]}}]}, -{"f":88,"b":[{"b":0,"v":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"b":1,"v":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"b":2,"v":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"b":3,"v":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"b":4,"v":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"b":5,"v":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"b":6,"v":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"b":7,"v":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"b":8,"v":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.27]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.6]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[263.2]}}]}, -{"f":89,"b":[{"b":0,"v":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"b":1,"v":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"b":2,"v":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"b":3,"v":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"b":4,"v":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"b":5,"v":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"b":6,"v":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"b":7,"v":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"b":8,"v":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.14]}},{"b":11,"v":{"DEFAULT":[6.69]}},{"b":12,"v":{"DEFAULT":[2.54]}},{"b":13,"v":{"DEFAULT":[32.52]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[339.2]}}]}, -{"f":90,"b":[{"b":0,"v":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"b":1,"v":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"b":2,"v":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"b":3,"v":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"b":4,"v":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"b":5,"v":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"b":6,"v":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"b":7,"v":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"b":8,"v":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.66]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.13]}},{"b":13,"v":{"DEFAULT":[70.6]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[213.5]}}]}, -{"f":91,"b":[{"b":0,"v":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"b":1,"v":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"b":2,"v":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"b":3,"v":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"b":4,"v":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"b":5,"v":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"b":6,"v":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"b":7,"v":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"b":8,"v":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.49]}},{"b":12,"v":{"DEFAULT":[1.99]}},{"b":13,"v":{"DEFAULT":[45.39]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[198.3]}}]}, -{"f":92,"b":[{"b":0,"v":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"b":1,"v":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"b":2,"v":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"b":3,"v":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"b":4,"v":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"b":5,"v":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"b":6,"v":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"b":7,"v":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"b":8,"v":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.92]}},{"b":12,"v":{"DEFAULT":[2.43]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[277.3]}}]}, -{"f":93,"b":[{"b":0,"v":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"b":1,"v":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"b":2,"v":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"b":3,"v":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"b":4,"v":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"b":5,"v":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"b":6,"v":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"b":7,"v":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"b":8,"v":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[8.63]}},{"b":11,"v":{"DEFAULT":[9.32]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.24]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[225.4]}}]}, -{"f":94,"b":[{"b":0,"v":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"b":1,"v":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"b":2,"v":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"b":3,"v":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"b":4,"v":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"b":5,"v":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"b":6,"v":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"b":7,"v":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"b":8,"v":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.47]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[30.45]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219]}}]}, -{"f":95,"b":[{"b":0,"v":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"b":1,"v":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"b":2,"v":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"b":3,"v":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"b":4,"v":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"b":5,"v":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"b":6,"v":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"b":7,"v":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"b":8,"v":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.89]}},{"b":13,"v":{"DEFAULT":[37.15]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[201.9]}}]}, -{"f":96,"b":[{"b":0,"v":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"b":1,"v":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"b":2,"v":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"b":3,"v":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"b":4,"v":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"b":5,"v":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"b":6,"v":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"b":7,"v":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"b":8,"v":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"b":9,"v":{"DEFAULT":[1.27]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.46]}},{"b":12,"v":{"DEFAULT":[2.49]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[209.5]}}]}, -{"f":97,"b":[{"b":0,"v":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"b":1,"v":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"b":2,"v":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"b":3,"v":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"b":4,"v":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"b":5,"v":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"b":6,"v":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"b":7,"v":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"b":8,"v":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"b":9,"v":{"DEFAULT":[1.17]}},{"b":10,"v":{"DEFAULT":[6.17]}},{"b":11,"v":{"DEFAULT":[6.77]}},{"b":12,"v":{"DEFAULT":[1.92]}},{"b":13,"v":{"DEFAULT":[48.02]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[205]}}]}, -{"f":98,"b":[{"b":0,"v":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"b":1,"v":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"b":2,"v":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"b":3,"v":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"b":4,"v":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"b":5,"v":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"b":6,"v":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"b":7,"v":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"b":8,"v":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.46]}},{"b":10,"v":{"DEFAULT":[6.3]}},{"b":11,"v":{"DEFAULT":[7.02]}},{"b":12,"v":{"DEFAULT":[2.94]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[288.7]}}]}, -{"f":99,"b":[{"b":0,"v":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"b":1,"v":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"b":2,"v":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"b":3,"v":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"b":4,"v":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"b":5,"v":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"b":6,"v":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"b":7,"v":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"b":8,"v":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.57]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.16]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, -{"f":100,"b":[{"b":0,"v":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"b":1,"v":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"b":2,"v":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"b":3,"v":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"b":4,"v":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"b":5,"v":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"b":6,"v":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"b":7,"v":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"b":8,"v":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.52]}},{"b":11,"v":{"DEFAULT":[3.63]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[29.01]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[34.8]}}]}, -{"f":101,"b":[{"b":0,"v":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"b":1,"v":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"b":2,"v":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"b":3,"v":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"b":4,"v":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"b":5,"v":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"b":6,"v":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"b":7,"v":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"b":8,"v":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, -{"f":102,"b":[{"b":0,"v":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"b":1,"v":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"b":2,"v":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"b":3,"v":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"b":4,"v":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"b":5,"v":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"b":6,"v":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"b":7,"v":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"b":8,"v":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[51.1]}}]}, -{"f":103,"b":[{"b":0,"v":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"b":1,"v":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"b":2,"v":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"b":3,"v":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"b":4,"v":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"b":5,"v":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"b":6,"v":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"b":7,"v":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[19.03]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[44.3]}}]}, -{"f":104,"b":[{"b":0,"v":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"b":1,"v":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"b":2,"v":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"b":3,"v":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"b":4,"v":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"b":5,"v":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"b":6,"v":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"b":7,"v":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"b":8,"v":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[31.41]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, -{"f":105,"b":[{"b":0,"v":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"b":1,"v":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"b":2,"v":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"b":3,"v":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"b":4,"v":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"b":5,"v":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"b":6,"v":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"b":7,"v":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"b":8,"v":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.38]}},{"b":11,"v":{"DEFAULT":[3.38]}},{"b":12,"v":{"DEFAULT":[1.09]}},{"b":13,"v":{"DEFAULT":[25.84]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[88.4]}}]}, -{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"b":1,"v":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"b":2,"v":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"b":3,"v":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"b":4,"v":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"b":5,"v":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"b":6,"v":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"b":7,"v":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"b":8,"v":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[1.14]}},{"b":13,"v":{"DEFAULT":[39.63]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93]}}]}, -{"f":107,"b":[{"b":0,"v":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"b":1,"v":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"b":2,"v":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"b":3,"v":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"b":4,"v":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"b":5,"v":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"b":6,"v":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"b":7,"v":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"b":8,"v":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"b":9,"v":{"DEFAULT":[0.98]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[98.2]}}]}, -{"f":108,"b":[{"b":0,"v":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"b":1,"v":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"b":2,"v":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"b":3,"v":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"b":4,"v":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"b":5,"v":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"b":6,"v":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"b":7,"v":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"b":8,"v":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.51]}},{"b":11,"v":{"DEFAULT":[11.2]}},{"b":12,"v":{"DEFAULT":[23.35]}},{"b":13,"v":{"DEFAULT":[68.56]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[383]}}]}, -{"f":109,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"b":1,"v":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"b":2,"v":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"b":3,"v":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"b":4,"v":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"b":5,"v":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"b":6,"v":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"b":7,"v":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"b":8,"v":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.82]}},{"b":12,"v":{"DEFAULT":[2.53]}},{"b":13,"v":{"DEFAULT":[22.33]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, -{"f":110,"b":[{"b":0,"v":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"b":1,"v":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"b":2,"v":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"b":3,"v":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"b":4,"v":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"b":5,"v":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"b":6,"v":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"b":7,"v":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"b":8,"v":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.75]}},{"b":11,"v":{"DEFAULT":[2.76]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.46]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":111,"b":[{"b":0,"v":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"b":1,"v":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"b":2,"v":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"b":3,"v":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"b":4,"v":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"b":5,"v":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"b":6,"v":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"b":7,"v":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"b":8,"v":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.52]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.98]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[33.8]}}]}, -{"f":112,"b":[{"b":0,"v":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"b":2,"v":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"b":3,"v":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"b":4,"v":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"b":5,"v":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"b":6,"v":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"b":7,"v":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"b":8,"v":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[39.6]}}]}, -{"f":113,"b":[{"b":0,"v":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"b":1,"v":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"b":2,"v":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"b":3,"v":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"b":4,"v":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"b":6,"v":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"b":7,"v":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"b":8,"v":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":114,"b":[{"b":0,"v":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"b":1,"v":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"b":2,"v":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"b":3,"v":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"b":4,"v":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"b":5,"v":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"b":6,"v":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"b":7,"v":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"b":8,"v":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[1.83]}},{"b":11,"v":{"DEFAULT":[1.84]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[12.63]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, -{"f":115,"b":[{"b":0,"v":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"b":1,"v":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"b":2,"v":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"b":3,"v":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"b":4,"v":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"b":5,"v":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"b":6,"v":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"b":7,"v":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"b":8,"v":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.96]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[129]}}]}, -{"f":116,"b":[{"b":0,"v":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"b":1,"v":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"b":2,"v":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"b":3,"v":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"b":4,"v":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"b":5,"v":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"b":6,"v":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"b":7,"v":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"b":8,"v":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.58]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[3.08]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[112.1]}}]}, -{"f":117,"b":[{"b":0,"v":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"b":1,"v":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"b":2,"v":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"b":3,"v":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"b":4,"v":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"b":6,"v":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"b":7,"v":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"b":8,"v":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.76]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":118,"b":[{"b":0,"v":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"b":1,"v":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"b":2,"v":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"b":3,"v":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"b":4,"v":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"b":5,"v":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"b":6,"v":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"b":7,"v":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"b":8,"v":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[3.27]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.34]}},{"b":13,"v":{"DEFAULT":[16.49]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[62.2]}}]}, -{"f":119,"b":[{"b":0,"v":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"b":1,"v":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"b":3,"v":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"b":4,"v":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"b":5,"v":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"b":6,"v":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"b":7,"v":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"b":8,"v":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.62]}},{"b":11,"v":{"DEFAULT":[3.64]}},{"b":12,"v":{"DEFAULT":[0.84]}},{"b":13,"v":{"DEFAULT":[29.53]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, -{"f":120,"b":[{"b":0,"v":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"b":1,"v":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"b":2,"v":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"b":3,"v":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"b":4,"v":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"b":5,"v":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"b":6,"v":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"b":7,"v":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"b":8,"v":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.81]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.35]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, -{"f":121,"b":[{"b":0,"v":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"b":1,"v":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"b":2,"v":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"b":3,"v":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"b":4,"v":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"b":5,"v":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"b":6,"v":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"b":7,"v":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"b":8,"v":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[60.5]}}]}, -{"f":122,"b":[{"b":0,"v":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"b":1,"v":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"b":2,"v":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"b":3,"v":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"b":4,"v":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"b":5,"v":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"b":6,"v":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"b":7,"v":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"b":8,"v":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[4.87]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.59]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[203]}}]}, -{"f":123,"b":[{"b":0,"v":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"b":1,"v":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"b":2,"v":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"b":3,"v":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"b":4,"v":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"b":5,"v":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"b":6,"v":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"b":7,"v":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"b":8,"v":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[17.54]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[175.8]}}]}, -{"f":124,"b":[{"b":0,"v":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"b":1,"v":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"b":2,"v":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"b":3,"v":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"b":5,"v":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"b":6,"v":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"b":7,"v":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"b":8,"v":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.19]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":125,"b":[{"b":0,"v":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"b":1,"v":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"b":2,"v":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"b":3,"v":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"b":4,"v":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"b":5,"v":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"b":6,"v":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"b":7,"v":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"b":8,"v":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.79]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, -{"f":126,"b":[{"b":0,"v":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"b":1,"v":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"b":2,"v":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"b":3,"v":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"b":4,"v":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"b":5,"v":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"b":6,"v":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"b":7,"v":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"b":8,"v":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[21.66]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[62.4]}}]}, -{"f":127,"b":[{"b":0,"v":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"b":2,"v":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"b":3,"v":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"b":4,"v":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"b":5,"v":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"b":6,"v":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"b":7,"v":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"b":8,"v":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.16]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[44.5]}}]}, -{"f":128,"b":[{"b":0,"v":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"b":1,"v":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"b":2,"v":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"b":3,"v":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"b":4,"v":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"b":5,"v":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"b":6,"v":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"b":7,"v":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"b":8,"v":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.18]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.76]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, -{"f":129,"b":[{"b":0,"v":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"b":1,"v":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"b":2,"v":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"b":3,"v":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"b":4,"v":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"b":5,"v":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"b":6,"v":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"b":7,"v":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"b":8,"v":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.07]}},{"b":11,"v":{"DEFAULT":[6.74]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.86]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[164.4]}}]}, -{"f":130,"b":[{"b":0,"v":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"b":1,"v":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"b":3,"v":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"b":4,"v":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"b":5,"v":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"b":6,"v":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"b":7,"v":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"b":8,"v":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.97]}},{"b":11,"v":{"DEFAULT":[1.93]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, -{"f":131,"b":[{"b":0,"v":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"b":1,"v":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"b":2,"v":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"b":3,"v":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"b":4,"v":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"b":5,"v":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"b":6,"v":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"b":7,"v":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"b":8,"v":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.48]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.57]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[38.2]}}]}, -{"f":132,"b":[{"b":0,"v":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"b":1,"v":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"b":2,"v":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"b":3,"v":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"b":4,"v":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"b":5,"v":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"b":6,"v":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"b":7,"v":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"b":8,"v":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[1.74]}},{"b":11,"v":{"DEFAULT":[1.76]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, -{"f":133,"b":[{"b":0,"v":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"b":1,"v":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"b":2,"v":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"b":3,"v":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"b":4,"v":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"b":5,"v":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"b":6,"v":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"b":7,"v":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"b":8,"v":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.36]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[46.8]}}]}, -{"f":134,"b":[{"b":0,"v":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"b":1,"v":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"b":2,"v":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"b":3,"v":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"b":4,"v":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"b":5,"v":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"b":6,"v":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"b":7,"v":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"b":8,"v":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.08]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[36.7]}}]}, -{"f":135,"b":[{"b":0,"v":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"b":1,"v":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"b":2,"v":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"b":3,"v":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"b":4,"v":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"b":5,"v":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"b":6,"v":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"b":7,"v":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"b":8,"v":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.41]}},{"b":11,"v":{"DEFAULT":[2.42]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.46]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[36.4]}}]}, -{"f":136,"b":[{"b":0,"v":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"b":1,"v":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"b":2,"v":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"b":3,"v":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"b":4,"v":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"b":5,"v":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"b":6,"v":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"b":7,"v":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"b":8,"v":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.43]}},{"b":12,"v":{"DEFAULT":[0.93]}},{"b":13,"v":{"DEFAULT":[35.4]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[70.5]}}]}, -{"f":137,"b":[{"b":0,"v":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"b":1,"v":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"b":2,"v":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"b":3,"v":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"b":4,"v":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"b":5,"v":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"b":6,"v":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"b":7,"v":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"b":8,"v":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.86]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[1.17]}},{"b":13,"v":{"DEFAULT":[28.65]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[86.6]}}]}, -{"f":138,"b":[{"b":0,"v":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"b":1,"v":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"b":2,"v":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"b":3,"v":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"b":4,"v":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"b":5,"v":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"b":6,"v":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"b":7,"v":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"b":8,"v":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.29]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, -{"f":139,"b":[{"b":0,"v":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"b":1,"v":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"b":2,"v":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"b":3,"v":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"b":4,"v":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"b":5,"v":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"b":6,"v":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"b":7,"v":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"b":8,"v":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.13]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[22.26]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[67.3]}}]}, -{"f":140,"b":[{"b":0,"v":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"b":1,"v":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"b":2,"v":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"b":3,"v":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"b":4,"v":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"b":5,"v":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"b":6,"v":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"b":7,"v":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"b":8,"v":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.21]}},{"b":11,"v":{"DEFAULT":[4.31]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[31.72]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[89.6]}}]}, -{"f":141,"b":[{"b":0,"v":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"b":1,"v":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"b":2,"v":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"b":3,"v":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"b":4,"v":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"b":5,"v":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"b":6,"v":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"b":7,"v":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"b":8,"v":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.04]}},{"b":11,"v":{"DEFAULT":[3.05]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[21.61]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[71.8]}}]}, -{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"b":1,"v":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"b":2,"v":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"b":3,"v":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"b":4,"v":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"b":5,"v":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"b":6,"v":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"b":7,"v":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"b":8,"v":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.16]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[23.33]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, -{"f":143,"b":[{"b":0,"v":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"b":1,"v":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"b":2,"v":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"b":3,"v":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"b":4,"v":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"b":5,"v":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"b":6,"v":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"b":7,"v":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"b":8,"v":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.93]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, -{"f":144,"b":[{"b":0,"v":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"b":1,"v":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"b":2,"v":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"b":3,"v":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"b":4,"v":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"b":5,"v":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"b":6,"v":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"b":7,"v":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"b":8,"v":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.79]}},{"b":10,"v":{"DEFAULT":[6.45]}},{"b":11,"v":{"DEFAULT":[6.52]}},{"b":12,"v":{"DEFAULT":[4.93]}},{"b":13,"v":{"DEFAULT":[47.07]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[254.1]}}]}, -{"f":145,"b":[{"b":0,"v":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"b":1,"v":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"b":2,"v":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"b":3,"v":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"b":4,"v":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"b":5,"v":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"b":6,"v":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"b":7,"v":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"b":8,"v":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[6.57]}},{"b":11,"v":{"DEFAULT":[6.82]}},{"b":12,"v":{"DEFAULT":[5.12]}},{"b":13,"v":{"DEFAULT":[48.29]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[263]}}]}, -{"f":146,"b":[{"b":0,"v":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"b":1,"v":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"b":2,"v":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"b":3,"v":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"b":4,"v":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"b":5,"v":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"b":6,"v":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"b":7,"v":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"b":8,"v":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[30.7]}}]}, -{"f":147,"b":[{"b":0,"v":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"b":1,"v":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"b":2,"v":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"b":3,"v":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"b":4,"v":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"b":5,"v":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"b":6,"v":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"b":7,"v":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"b":8,"v":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.31]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.47]}},{"b":13,"v":{"DEFAULT":[25.88]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, -{"f":148,"b":[{"b":0,"v":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"b":1,"v":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"b":2,"v":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"b":3,"v":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"b":4,"v":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"b":5,"v":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"b":6,"v":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"b":7,"v":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"b":8,"v":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[5.38]}},{"b":11,"v":{"DEFAULT":[5.41]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[46.22]}},{"b":14,"v":{"DEFAULT":[23.6]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[48.3]}}]}, -{"f":149,"b":[{"b":0,"v":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"b":1,"v":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"b":2,"v":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"b":3,"v":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"b":4,"v":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"b":5,"v":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"b":6,"v":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"b":7,"v":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.46]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[17.91]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[43.4]}}]}, -{"f":150,"b":[{"b":0,"v":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"b":1,"v":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"b":2,"v":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"b":3,"v":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"b":4,"v":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"b":5,"v":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"b":6,"v":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"b":7,"v":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"b":8,"v":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[9.84]}},{"b":11,"v":{"DEFAULT":[15.59]}},{"b":12,"v":{"DEFAULT":[44.78]}},{"b":13,"v":{"DEFAULT":[89.78]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, -{"f":151,"b":[{"b":0,"v":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"b":1,"v":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"b":2,"v":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"b":3,"v":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"b":4,"v":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"b":5,"v":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"b":6,"v":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"b":7,"v":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"b":8,"v":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.87]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.78]}},{"b":14,"v":{"DEFAULT":[13.5]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":152,"b":[{"b":0,"v":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"b":1,"v":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"b":2,"v":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"b":3,"v":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"b":4,"v":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"b":5,"v":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"b":6,"v":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"b":7,"v":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"b":8,"v":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[2.33]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.42]}},{"b":12,"v":{"DEFAULT":[2.73]}},{"b":13,"v":{"DEFAULT":[40.57]}},{"b":14,"v":{"DEFAULT":[354]}},{"b":15,"v":{"DEFAULT":[80.5]}},{"b":16,"v":{"DEFAULT":[286.8]}}]}, -{"f":153,"b":[{"b":0,"v":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"b":1,"v":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"b":2,"v":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"b":3,"v":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"b":4,"v":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"b":5,"v":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"b":6,"v":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"b":7,"v":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[19.95]}},{"b":14,"v":{"DEFAULT":[7.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, -{"f":154,"b":[{"b":0,"v":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"b":1,"v":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"b":2,"v":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"b":3,"v":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"b":4,"v":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"b":5,"v":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"b":6,"v":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"b":7,"v":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"b":8,"v":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[2]}},{"b":10,"v":{"DEFAULT":[9.86]}},{"b":11,"v":{"DEFAULT":[9.93]}},{"b":12,"v":{"DEFAULT":[2.45]}},{"b":13,"v":{"DEFAULT":[75.72]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[281.6]}}]}, -{"f":155,"b":[{"b":0,"v":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"b":1,"v":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"b":2,"v":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"b":3,"v":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"b":4,"v":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"b":5,"v":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"b":6,"v":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"b":7,"v":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"b":8,"v":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[3.83]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.98]}},{"b":13,"v":{"DEFAULT":[21.36]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[405.5]}}]}, -{"f":156,"b":[{"b":0,"v":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"b":1,"v":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"b":2,"v":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"b":3,"v":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"b":4,"v":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"b":5,"v":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"b":6,"v":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"b":7,"v":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"b":8,"v":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[3.42]}},{"b":11,"v":{"DEFAULT":[3.44]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[25.65]}},{"b":14,"v":{"DEFAULT":[63.5]}},{"b":15,"v":{"DEFAULT":[16.7]}},{"b":16,"v":{"DEFAULT":[87.8]}}]}, -{"f":157,"b":[{"b":0,"v":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"b":1,"v":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"b":2,"v":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"b":3,"v":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"b":4,"v":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"b":5,"v":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"b":6,"v":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"b":7,"v":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"b":8,"v":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[16.36]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.1]}}]}, -{"f":158,"b":[{"b":0,"v":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"b":1,"v":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"b":2,"v":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"b":3,"v":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"b":4,"v":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"b":5,"v":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"b":6,"v":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"b":7,"v":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"b":8,"v":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"b":9,"v":{"DEFAULT":[0.92]}},{"b":10,"v":{"DEFAULT":[29.28]}},{"b":11,"v":{"DEFAULT":[29.73]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[615.46]}},{"b":14,"v":{"DEFAULT":[95.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[104.7]}}]}, -{"f":159,"b":[{"b":0,"v":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"b":1,"v":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"b":2,"v":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"b":3,"v":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"b":4,"v":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"b":5,"v":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"b":6,"v":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"b":7,"v":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"b":8,"v":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, -{"f":160,"b":[{"b":0,"v":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"b":1,"v":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"b":2,"v":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"b":3,"v":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"b":4,"v":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"b":5,"v":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"b":6,"v":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"b":7,"v":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"b":8,"v":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[18.03]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[31.6]}}]}, -{"f":161,"b":[{"b":0,"v":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"b":1,"v":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"b":2,"v":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"b":3,"v":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"b":4,"v":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"b":5,"v":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"b":6,"v":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"b":7,"v":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"b":8,"v":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.21]}},{"b":11,"v":{"DEFAULT":[2.23]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[16.12]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.6]}}]}, -{"f":162,"b":[{"b":0,"v":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"b":1,"v":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"b":2,"v":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"b":3,"v":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"b":4,"v":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"b":5,"v":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"b":6,"v":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"b":7,"v":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"b":8,"v":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[4.33]}},{"b":11,"v":{"DEFAULT":[4.93]}},{"b":12,"v":{"DEFAULT":[8.44]}},{"b":13,"v":{"DEFAULT":[33.64]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[19.7]}},{"b":16,"v":{"DEFAULT":[85.9]}}]}, -{"f":163,"b":[{"b":0,"v":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"b":1,"v":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"b":2,"v":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"b":3,"v":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"b":4,"v":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"b":5,"v":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"b":6,"v":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"b":7,"v":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"b":8,"v":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.74]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[38.79]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[55.5]}}]}, -{"f":164,"b":[{"b":0,"v":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"b":2,"v":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"b":3,"v":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"b":4,"v":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"b":5,"v":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"b":6,"v":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"b":7,"v":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"b":8,"v":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.71]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[28.85]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, -{"f":165,"b":[{"b":0,"v":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"b":1,"v":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"b":2,"v":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"b":3,"v":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"b":4,"v":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"b":5,"v":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"b":6,"v":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"b":7,"v":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"b":8,"v":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[4.38]}},{"b":11,"v":{"DEFAULT":[4.45]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[34.44]}},{"b":14,"v":{"DEFAULT":[52.8]}},{"b":15,"v":{"DEFAULT":[14.8]}},{"b":16,"v":{"DEFAULT":[72.9]}}]}, -{"f":166,"b":[{"b":0,"v":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"b":1,"v":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"b":2,"v":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"b":3,"v":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"b":4,"v":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"b":5,"v":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"b":6,"v":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"b":7,"v":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"b":8,"v":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.62]}},{"b":11,"v":{"DEFAULT":[5.62]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[47.7]}}]}, -{"f":167,"b":[{"b":0,"v":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"b":1,"v":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"b":2,"v":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"b":3,"v":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"b":4,"v":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"b":5,"v":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"b":6,"v":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"b":7,"v":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"b":8,"v":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.73]}},{"b":10,"v":{"DEFAULT":[3.92]}},{"b":11,"v":{"DEFAULT":[4.18]}},{"b":12,"v":{"DEFAULT":[2.29]}},{"b":13,"v":{"DEFAULT":[30.94]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[88.2]}}]}, -{"f":168,"b":[{"b":0,"v":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"b":1,"v":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"b":2,"v":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"b":3,"v":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"b":4,"v":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"b":5,"v":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"b":6,"v":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"b":7,"v":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"b":8,"v":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[5.83]}},{"b":11,"v":{"DEFAULT":[8.21]}},{"b":12,"v":{"DEFAULT":[5.94]}},{"b":13,"v":{"DEFAULT":[48.32]}},{"b":14,"v":{"DEFAULT":[127.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[131.9]}}]}, -{"f":169,"b":[{"b":0,"v":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"b":1,"v":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"b":2,"v":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"b":3,"v":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"b":4,"v":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"b":5,"v":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"b":7,"v":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"b":8,"v":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[4.09]}},{"b":11,"v":{"DEFAULT":[4.12]}},{"b":12,"v":{"DEFAULT":[1.21]}},{"b":13,"v":{"DEFAULT":[31.89]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[38.9]}}]}, -{"f":170,"b":[{"b":0,"v":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"b":1,"v":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"b":2,"v":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"b":3,"v":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"b":4,"v":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"b":5,"v":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"b":6,"v":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"b":7,"v":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"b":8,"v":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.84]}},{"b":10,"v":{"DEFAULT":[3.63]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[3.49]}},{"b":13,"v":{"DEFAULT":[26.84]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[83.7]}}]}, -{"f":171,"b":[{"b":0,"v":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"b":1,"v":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"b":2,"v":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"b":3,"v":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"b":4,"v":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"b":5,"v":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"b":6,"v":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"b":7,"v":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"b":8,"v":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"b":9,"v":{"DEFAULT":[4.38]}},{"b":10,"v":{"DEFAULT":[7.91]}},{"b":11,"v":{"DEFAULT":[8.11]}},{"b":12,"v":{"DEFAULT":[4.66]}},{"b":13,"v":{"DEFAULT":[36.85]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1073.1]}}]}, -{"f":172,"b":[{"b":0,"v":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"b":1,"v":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"b":2,"v":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"b":3,"v":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"b":4,"v":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"b":5,"v":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"b":6,"v":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"b":7,"v":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"b":8,"v":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.84]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[21.12]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, -{"f":173,"b":[{"b":0,"v":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"b":1,"v":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"b":2,"v":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"b":3,"v":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"b":4,"v":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"b":5,"v":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"b":6,"v":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"b":7,"v":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"b":8,"v":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[3.16]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[15.78]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":174,"b":[{"b":0,"v":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"b":1,"v":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"b":2,"v":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"b":3,"v":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"b":4,"v":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"b":5,"v":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"b":6,"v":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"b":7,"v":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"b":8,"v":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[7.49]}},{"b":11,"v":{"DEFAULT":[9.56]}},{"b":12,"v":{"DEFAULT":[5.93]}},{"b":13,"v":{"DEFAULT":[56.65]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[282.7]}}]}, -{"f":175,"b":[{"b":0,"v":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"b":1,"v":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"b":2,"v":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"b":3,"v":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"b":4,"v":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"b":5,"v":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"b":6,"v":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"b":7,"v":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"b":8,"v":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.75]}},{"b":11,"v":{"DEFAULT":[6.33]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.65]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[174.6]}}]}, -{"f":176,"b":[{"b":0,"v":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"b":1,"v":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"b":2,"v":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"b":3,"v":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"b":4,"v":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"b":5,"v":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"b":6,"v":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"b":7,"v":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"b":8,"v":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.82]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.93]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":177,"b":[{"b":0,"v":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"b":1,"v":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"b":2,"v":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"b":3,"v":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"b":4,"v":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"b":5,"v":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"b":6,"v":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"b":7,"v":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"b":8,"v":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[19.82]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, -{"f":178,"b":[{"b":0,"v":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"b":1,"v":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"b":2,"v":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"b":3,"v":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"b":4,"v":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"b":5,"v":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"b":6,"v":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"b":7,"v":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"b":8,"v":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.32]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[37.9]}}]}, -{"f":179,"b":[{"b":0,"v":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"b":1,"v":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"b":2,"v":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"b":3,"v":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"b":4,"v":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"b":5,"v":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"b":6,"v":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"b":7,"v":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"b":8,"v":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[20.76]}},{"b":14,"v":{"DEFAULT":[43.4]}},{"b":15,"v":{"DEFAULT":[7.8]}},{"b":16,"v":{"DEFAULT":[70.7]}}]}, -{"f":180,"b":[{"b":0,"v":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"b":1,"v":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"b":2,"v":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"b":3,"v":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"b":4,"v":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"b":5,"v":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"b":6,"v":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"b":7,"v":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"b":8,"v":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.03]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":181,"b":[{"b":0,"v":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"b":1,"v":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"b":2,"v":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"b":3,"v":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"b":4,"v":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"b":5,"v":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"b":6,"v":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"b":7,"v":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"b":8,"v":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[0.99]}},{"b":13,"v":{"DEFAULT":[30.89]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.2]}}]}, -{"f":182,"b":[{"b":0,"v":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"b":1,"v":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"b":2,"v":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"b":3,"v":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"b":4,"v":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"b":5,"v":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"b":6,"v":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"b":7,"v":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"b":8,"v":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"b":9,"v":{"DEFAULT":[2.58]}},{"b":10,"v":{"DEFAULT":[8.12]}},{"b":11,"v":{"DEFAULT":[8.55]}},{"b":12,"v":{"DEFAULT":[8.16]}},{"b":13,"v":{"DEFAULT":[48.81]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[479.6]}}]}, -{"f":183,"b":[{"b":0,"v":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"b":1,"v":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"b":2,"v":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"b":3,"v":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"b":4,"v":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"b":5,"v":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"b":6,"v":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"b":7,"v":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"b":8,"v":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.79]}},{"b":12,"v":{"DEFAULT":[10.31]}},{"b":13,"v":{"DEFAULT":[72.51]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[284.8]}}]}, -{"f":184,"b":[{"b":0,"v":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"b":1,"v":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"b":2,"v":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"b":3,"v":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"b":4,"v":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"b":5,"v":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"b":6,"v":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"b":7,"v":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"b":8,"v":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.44]}},{"b":12,"v":{"DEFAULT":[1.42]}},{"b":13,"v":{"DEFAULT":[46.68]}},{"b":14,"v":{"DEFAULT":[28.8]}},{"b":15,"v":{"DEFAULT":[9.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, -{"f":185,"b":[{"b":0,"v":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"b":1,"v":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"b":2,"v":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"b":3,"v":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"b":4,"v":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"b":5,"v":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"b":6,"v":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"b":7,"v":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"b":8,"v":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[5.05]}},{"b":12,"v":{"DEFAULT":[3.61]}},{"b":13,"v":{"DEFAULT":[16.2]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[114.2]}}]}, -{"f":186,"b":[{"b":0,"v":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"b":1,"v":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"b":2,"v":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"b":3,"v":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"b":4,"v":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"b":5,"v":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"b":6,"v":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"b":7,"v":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"b":8,"v":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.22]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[4.78]}},{"b":13,"v":{"DEFAULT":[39.14]}},{"b":14,"v":{"DEFAULT":[87.8]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[103.1]}}]}, -{"f":187,"b":[{"b":0,"v":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"b":1,"v":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"b":2,"v":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"b":3,"v":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"b":4,"v":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"b":5,"v":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"b":6,"v":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"b":7,"v":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"b":8,"v":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.73]}},{"b":11,"v":{"DEFAULT":[8.75]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.02]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[240.3]}}]}, -{"f":188,"b":[{"b":0,"v":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"b":1,"v":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"b":2,"v":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"b":3,"v":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"b":4,"v":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"b":5,"v":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"b":6,"v":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"b":7,"v":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"b":8,"v":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[4.35]}},{"b":11,"v":{"DEFAULT":[4.36]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[28.11]}},{"b":14,"v":{"DEFAULT":[134.4]}},{"b":15,"v":{"DEFAULT":[39.5]}},{"b":16,"v":{"DEFAULT":[163.7]}}]}, -{"f":189,"b":[{"b":0,"v":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"b":1,"v":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"b":2,"v":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"b":3,"v":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"b":4,"v":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"b":5,"v":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"b":6,"v":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"b":7,"v":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"b":8,"v":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[37.8]}}]}, -{"f":190,"b":[{"b":0,"v":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"b":1,"v":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"b":2,"v":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"b":3,"v":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"b":4,"v":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"b":5,"v":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"b":6,"v":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"b":7,"v":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"b":8,"v":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"b":9,"v":{"DEFAULT":[7.66]}},{"b":10,"v":{"DEFAULT":[21.32]}},{"b":11,"v":{"DEFAULT":[24.73]}},{"b":12,"v":{"DEFAULT":[40.66]}},{"b":13,"v":{"DEFAULT":[128.26]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[2470.1]}}]}, -{"f":191,"b":[{"b":0,"v":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"b":1,"v":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"b":2,"v":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"b":3,"v":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"b":4,"v":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"b":5,"v":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"b":6,"v":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"b":7,"v":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"b":8,"v":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3.03]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[21.3]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[65.1]}}]}, -{"f":192,"b":[{"b":0,"v":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"b":1,"v":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"b":2,"v":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"b":3,"v":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"b":4,"v":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"b":5,"v":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"b":6,"v":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"b":7,"v":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"b":8,"v":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.73]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, -{"f":193,"b":[{"b":0,"v":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"b":1,"v":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"b":2,"v":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"b":3,"v":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"b":4,"v":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"b":5,"v":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"b":6,"v":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"b":7,"v":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"b":8,"v":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.51]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.73]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[18.8]}},{"b":16,"v":{"DEFAULT":[90.9]}}]}, -{"f":194,"b":[{"b":0,"v":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"b":1,"v":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"b":2,"v":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"b":3,"v":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"b":4,"v":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"b":5,"v":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"b":6,"v":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"b":7,"v":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"b":8,"v":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.12]}},{"b":11,"v":{"DEFAULT":[4.19]}},{"b":12,"v":{"DEFAULT":[1.27]}},{"b":13,"v":{"DEFAULT":[30.28]}},{"b":14,"v":{"DEFAULT":[258.1]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[235.9]}}]}, -{"f":195,"b":[{"b":0,"v":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"b":1,"v":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"b":2,"v":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"b":3,"v":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"b":4,"v":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"b":5,"v":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"b":6,"v":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"b":7,"v":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"b":8,"v":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"b":9,"v":{"DEFAULT":[1.88]}},{"b":10,"v":{"DEFAULT":[10.98]}},{"b":11,"v":{"DEFAULT":[19.28]}},{"b":12,"v":{"DEFAULT":[9.94]}},{"b":13,"v":{"DEFAULT":[93.05]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[128]}},{"b":16,"v":{"DEFAULT":[565.4]}}]}, -{"f":196,"b":[{"b":0,"v":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"b":1,"v":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"b":2,"v":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"b":3,"v":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"b":4,"v":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"b":5,"v":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"b":6,"v":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"b":7,"v":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"b":8,"v":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.52]}},{"b":10,"v":{"DEFAULT":[1.99]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[14.22]}},{"b":14,"v":{"DEFAULT":[3.3]}},{"b":15,"v":{"DEFAULT":[1.2]}},{"b":16,"v":{"DEFAULT":[42]}}]}, -{"f":197,"b":[{"b":0,"v":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"b":1,"v":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"b":2,"v":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"b":3,"v":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"b":4,"v":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"b":5,"v":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"b":6,"v":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"b":7,"v":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"b":8,"v":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.96]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[3.94]}},{"b":13,"v":{"DEFAULT":[34.52]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":198,"b":[{"b":0,"v":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"b":1,"v":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"b":2,"v":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"b":3,"v":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"b":4,"v":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"b":5,"v":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"b":6,"v":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"b":7,"v":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"b":8,"v":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[9.25]}},{"b":11,"v":{"DEFAULT":[9.25]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[85.79]}},{"b":14,"v":{"DEFAULT":[12.6]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, -{"f":199,"b":[{"b":0,"v":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"b":1,"v":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"b":2,"v":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"b":3,"v":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"b":4,"v":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"b":5,"v":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"b":6,"v":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"b":7,"v":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"b":8,"v":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.23]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[2.28]}},{"b":13,"v":{"DEFAULT":[16.62]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[63.8]}}]}, -{"f":200,"b":[{"b":0,"v":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"b":1,"v":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"b":2,"v":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"b":3,"v":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"b":4,"v":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"b":5,"v":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"b":6,"v":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"b":7,"v":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"b":8,"v":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.91]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[1.45]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[23]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[49.8]}}]}, -{"f":201,"b":[{"b":0,"v":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"b":1,"v":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"b":2,"v":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"b":3,"v":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"b":4,"v":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"b":5,"v":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"b":6,"v":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"b":7,"v":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"b":8,"v":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.77]}},{"b":11,"v":{"DEFAULT":[2.78]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.55]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[64.2]}}]}, -{"f":202,"b":[{"b":0,"v":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"b":1,"v":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"b":2,"v":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"b":3,"v":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"b":4,"v":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"b":6,"v":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"b":7,"v":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"b":8,"v":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.63]}},{"b":11,"v":{"DEFAULT":[2.61]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[19.21]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, -{"f":203,"b":[{"b":0,"v":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"b":1,"v":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"b":2,"v":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"b":3,"v":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"b":4,"v":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"b":5,"v":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"b":6,"v":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"b":7,"v":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"b":8,"v":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.17]}},{"b":11,"v":{"DEFAULT":[3.19]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[21.72]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[95.8]}}]}, -{"f":204,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"b":1,"v":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"b":2,"v":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"b":3,"v":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"b":4,"v":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"b":5,"v":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"b":6,"v":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"b":7,"v":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"b":8,"v":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.88]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.61]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[33.6]}}]}, -{"f":205,"b":[{"b":0,"v":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"b":1,"v":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"b":2,"v":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"b":3,"v":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"b":4,"v":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"b":5,"v":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"b":6,"v":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"b":7,"v":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"b":8,"v":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.46]}},{"b":10,"v":{"DEFAULT":[1.9]}},{"b":11,"v":{"DEFAULT":[1.89]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.92]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[43.8]}}]}, -{"f":206,"b":[{"b":0,"v":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"b":1,"v":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"b":2,"v":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"b":3,"v":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"b":4,"v":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"b":5,"v":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"b":6,"v":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"b":7,"v":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"b":8,"v":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.79]}},{"b":12,"v":{"DEFAULT":[0.59]}},{"b":13,"v":{"DEFAULT":[12.48]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[1.7]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, -{"f":207,"b":[{"b":0,"v":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"b":1,"v":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"b":2,"v":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"b":3,"v":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"b":4,"v":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"b":5,"v":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"b":6,"v":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"b":7,"v":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"b":8,"v":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.94]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[22.52]}},{"b":14,"v":{"DEFAULT":[8.5]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[38.5]}}]}, -{"f":208,"b":[{"b":0,"v":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"b":1,"v":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"b":2,"v":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"b":4,"v":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"b":5,"v":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"b":6,"v":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"b":7,"v":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"b":8,"v":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.11]}},{"b":13,"v":{"DEFAULT":[28.62]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.9]}},{"b":16,"v":{"DEFAULT":[87.1]}}]}, -{"f":209,"b":[{"b":0,"v":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"b":1,"v":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"b":2,"v":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"b":3,"v":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"b":4,"v":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"b":5,"v":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"b":6,"v":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"b":7,"v":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"b":8,"v":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.11]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[22.22]}},{"b":14,"v":{"DEFAULT":[37.2]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[64.4]}}]}, -{"f":210,"b":[{"b":0,"v":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"b":1,"v":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"b":2,"v":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"b":3,"v":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"b":4,"v":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"b":5,"v":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"b":6,"v":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"b":7,"v":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"b":8,"v":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.96]}},{"b":11,"v":{"DEFAULT":[2.98]}},{"b":12,"v":{"DEFAULT":[0.96]}},{"b":13,"v":{"DEFAULT":[21.14]}},{"b":14,"v":{"DEFAULT":[37]}},{"b":15,"v":{"DEFAULT":[13.1]}},{"b":16,"v":{"DEFAULT":[72.1]}}]},]; +{"f":0,"b":[{"b":0,"v":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"b":1,"v":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"b":2,"v":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"b":3,"v":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"b":4,"v":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"b":5,"v":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"b":6,"v":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"b":7,"v":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"b":8,"v":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[16.67]}},{"b":11,"v":{"DEFAULT":[16.71]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[155.93]}},{"b":14,"v":{"DEFAULT":[47.3]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[65.8]}}]}, +{"f":1,"b":[{"b":0,"v":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"b":1,"v":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"b":2,"v":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"b":3,"v":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"b":4,"v":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"b":5,"v":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"b":6,"v":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"b":7,"v":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"b":8,"v":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[6.46]}},{"b":11,"v":{"DEFAULT":[8.27]}},{"b":12,"v":{"DEFAULT":[4.79]}},{"b":13,"v":{"DEFAULT":[46.34]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[37.2]}}]}, +{"f":2,"b":[{"b":0,"v":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"b":1,"v":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"b":2,"v":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"b":3,"v":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"b":4,"v":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"b":5,"v":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"b":6,"v":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"b":7,"v":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"b":8,"v":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"b":9,"v":{"DEFAULT":[1.51]}},{"b":10,"v":{"DEFAULT":[4.75]}},{"b":11,"v":{"DEFAULT":[4.8]}},{"b":12,"v":{"DEFAULT":[2.07]}},{"b":13,"v":{"DEFAULT":[29.18]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[166.5]}}]}, +{"f":3,"b":[{"b":0,"v":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"b":1,"v":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"b":2,"v":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"b":3,"v":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"b":4,"v":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"b":5,"v":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"b":6,"v":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"b":7,"v":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"b":8,"v":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.69]}},{"b":11,"v":{"DEFAULT":[3.74]}},{"b":12,"v":{"DEFAULT":[1.72]}},{"b":13,"v":{"DEFAULT":[22.68]}},{"b":14,"v":{"DEFAULT":[109.2]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[120.5]}}]}, +{"f":4,"b":[{"b":0,"v":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"b":1,"v":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"b":2,"v":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"b":3,"v":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"b":4,"v":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"b":5,"v":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"b":6,"v":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"b":7,"v":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"b":8,"v":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.72]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[22.66]}},{"b":14,"v":{"DEFAULT":[109.3]}},{"b":15,"v":{"DEFAULT":[33.2]}},{"b":16,"v":{"DEFAULT":[116.7]}}]}, +{"f":5,"b":[{"b":0,"v":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"b":1,"v":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"b":2,"v":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"b":3,"v":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"b":4,"v":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"b":5,"v":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"b":6,"v":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"b":7,"v":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"b":8,"v":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"b":9,"v":{"DEFAULT":[1.52]}},{"b":10,"v":{"DEFAULT":[4.79]}},{"b":11,"v":{"DEFAULT":[4.86]}},{"b":12,"v":{"DEFAULT":[2.12]}},{"b":13,"v":{"DEFAULT":[29.35]}},{"b":14,"v":{"DEFAULT":[144.2]}},{"b":15,"v":{"DEFAULT":[44.7]}},{"b":16,"v":{"DEFAULT":[148.9]}}]}, +{"f":6,"b":[{"b":0,"v":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"b":1,"v":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"b":2,"v":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"b":3,"v":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"b":4,"v":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"b":5,"v":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"b":6,"v":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"b":7,"v":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"b":8,"v":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"b":9,"v":{"DEFAULT":[1.13]}},{"b":10,"v":{"DEFAULT":[3.72]}},{"b":11,"v":{"DEFAULT":[3.79]}},{"b":12,"v":{"DEFAULT":[1.77]}},{"b":13,"v":{"DEFAULT":[22.88]}},{"b":14,"v":{"DEFAULT":[110.6]}},{"b":15,"v":{"DEFAULT":[33.7]}},{"b":16,"v":{"DEFAULT":[118.5]}}]}, +{"f":7,"b":[{"b":0,"v":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"b":1,"v":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"b":2,"v":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"b":3,"v":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"b":4,"v":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"b":5,"v":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"b":6,"v":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"b":7,"v":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"b":8,"v":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[1.57]}},{"b":10,"v":{"DEFAULT":[4.96]}},{"b":11,"v":{"DEFAULT":[5.02]}},{"b":12,"v":{"DEFAULT":[2.35]}},{"b":13,"v":{"DEFAULT":[30.68]}},{"b":14,"v":{"DEFAULT":[151.4]}},{"b":15,"v":{"DEFAULT":[46.3]}},{"b":16,"v":{"DEFAULT":[166.9]}}]}, +{"f":8,"b":[{"b":0,"v":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"b":1,"v":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"b":2,"v":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"b":3,"v":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"b":4,"v":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"b":5,"v":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"b":6,"v":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"b":7,"v":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"b":8,"v":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[2.49]}},{"b":11,"v":{"DEFAULT":[2.55]}},{"b":12,"v":{"DEFAULT":[8.4]}},{"b":13,"v":{"DEFAULT":[17.94]}},{"b":14,"v":{"DEFAULT":[19]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[42.7]}}]}, +{"f":9,"b":[{"b":0,"v":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"b":1,"v":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"b":2,"v":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"b":3,"v":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"b":4,"v":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"b":5,"v":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"b":6,"v":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"b":7,"v":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"b":8,"v":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[10.92]}},{"b":11,"v":{"DEFAULT":[10.99]}},{"b":12,"v":{"DEFAULT":[50.8]}},{"b":13,"v":{"DEFAULT":[103.83]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[50.4]}}]}, +{"f":10,"b":[{"b":0,"v":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"b":1,"v":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"b":2,"v":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"b":3,"v":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"b":4,"v":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"b":5,"v":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"b":6,"v":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"b":7,"v":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"b":8,"v":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.86]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[31.57]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[43.9]}}]}, +{"f":11,"b":[{"b":0,"v":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"b":1,"v":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"b":2,"v":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"b":3,"v":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"b":4,"v":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"b":5,"v":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"b":6,"v":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"b":7,"v":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"b":8,"v":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"b":9,"v":{"DEFAULT":[1.97]}},{"b":10,"v":{"DEFAULT":[6.93]}},{"b":11,"v":{"DEFAULT":[6.96]}},{"b":12,"v":{"DEFAULT":[6.96]}},{"b":13,"v":{"DEFAULT":[47.92]}},{"b":14,"v":{"DEFAULT":[203.9]}},{"b":15,"v":{"DEFAULT":[56.3]}},{"b":16,"v":{"DEFAULT":[216]}}]}, +{"f":12,"b":[{"b":0,"v":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"b":1,"v":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"b":2,"v":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"b":3,"v":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"b":4,"v":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"b":5,"v":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"b":6,"v":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"b":7,"v":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"b":8,"v":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"b":9,"v":{"DEFAULT":[41.08]}},{"b":10,"v":{"DEFAULT":[52.7]}},{"b":11,"v":{"DEFAULT":[52.88]}},{"b":12,"v":{"DEFAULT":[49.38]}},{"b":13,"v":{"DEFAULT":[134.1]}},{"b":14,"v":{"DEFAULT":[4208.3]}},{"b":15,"v":{"DEFAULT":[1377]}},{"b":16,"v":{"DEFAULT":[67.5]}}]}, +{"f":13,"b":[{"b":0,"v":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"b":1,"v":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"b":2,"v":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"b":3,"v":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"b":4,"v":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"b":5,"v":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"b":6,"v":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"b":7,"v":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"b":8,"v":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[51.82]}},{"b":10,"v":{"DEFAULT":[64.8]}},{"b":11,"v":{"DEFAULT":[64.82]}},{"b":12,"v":{"DEFAULT":[61.36]}},{"b":13,"v":{"DEFAULT":[136.91]}},{"b":14,"v":{"DEFAULT":[12639]}},{"b":15,"v":{"DEFAULT":[2951.5]}},{"b":16,"v":{"DEFAULT":[68.7]}}]}, +{"f":14,"b":[{"b":0,"v":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"b":1,"v":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"b":2,"v":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"b":3,"v":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"b":4,"v":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"b":5,"v":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"b":6,"v":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"b":7,"v":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"b":8,"v":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[18.25]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[49.2]}}]}, +{"f":15,"b":[{"b":0,"v":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"b":1,"v":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"b":2,"v":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"b":3,"v":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"b":4,"v":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"b":5,"v":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"b":6,"v":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"b":7,"v":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"b":8,"v":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.65]}},{"b":11,"v":{"DEFAULT":[3.83]}},{"b":12,"v":{"DEFAULT":[1.54]}},{"b":13,"v":{"DEFAULT":[28.03]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[69.2]}}]}, +{"f":16,"b":[{"b":0,"v":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"b":1,"v":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"b":2,"v":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"b":3,"v":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"b":4,"v":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"b":5,"v":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"b":6,"v":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"b":7,"v":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"b":8,"v":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"b":9,"v":{"DEFAULT":[0.87]}},{"b":10,"v":{"DEFAULT":[2.73]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[18.59]}},{"b":14,"v":{"DEFAULT":[66]}},{"b":15,"v":{"DEFAULT":[16.5]}},{"b":16,"v":{"DEFAULT":[83.4]}}]}, +{"f":17,"b":[{"b":0,"v":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"b":1,"v":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"b":2,"v":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"b":3,"v":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"b":4,"v":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"b":5,"v":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"b":6,"v":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"b":7,"v":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"b":8,"v":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[3.66]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[28.61]}},{"b":14,"v":{"DEFAULT":[25.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[51.7]}}]}, +{"f":18,"b":[{"b":0,"v":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"b":1,"v":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"b":2,"v":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"b":3,"v":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"b":4,"v":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"b":5,"v":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"b":6,"v":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"b":7,"v":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"b":8,"v":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"b":9,"v":{"DEFAULT":[0.72]}},{"b":10,"v":{"DEFAULT":[4.55]}},{"b":11,"v":{"DEFAULT":[4.56]}},{"b":12,"v":{"DEFAULT":[1.25]}},{"b":13,"v":{"DEFAULT":[36.47]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[12.3]}},{"b":16,"v":{"DEFAULT":[58.4]}}]}, +{"f":19,"b":[{"b":0,"v":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"b":1,"v":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"b":2,"v":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"b":3,"v":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"b":4,"v":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"b":5,"v":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"b":6,"v":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"b":7,"v":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"b":8,"v":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.85]}},{"b":11,"v":{"DEFAULT":[1.87]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[12.65]}},{"b":14,"v":{"DEFAULT":[9.9]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[34.2]}}]}, +{"f":20,"b":[{"b":0,"v":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"b":1,"v":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"b":2,"v":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"b":3,"v":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"b":4,"v":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"b":5,"v":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"b":6,"v":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"b":7,"v":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"b":8,"v":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.72]}},{"b":11,"v":{"DEFAULT":[2.72]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.8]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[48.6]}}]}, +{"f":21,"b":[{"b":0,"v":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"b":1,"v":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"b":2,"v":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"b":3,"v":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"b":4,"v":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"b":5,"v":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"b":6,"v":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"b":7,"v":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"b":8,"v":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"b":9,"v":{"DEFAULT":[1.86]}},{"b":10,"v":{"DEFAULT":[5.35]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[5.59]}},{"b":13,"v":{"DEFAULT":[37.67]}},{"b":14,"v":{"DEFAULT":[276.7]}},{"b":15,"v":{"DEFAULT":[78.2]}},{"b":16,"v":{"DEFAULT":[343.7]}}]}, +{"f":22,"b":[{"b":0,"v":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"b":1,"v":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"b":2,"v":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"b":3,"v":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"b":4,"v":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"b":5,"v":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"b":6,"v":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"b":7,"v":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"b":8,"v":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.23]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[15.95]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[47.9]}}]}, +{"f":23,"b":[{"b":0,"v":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"b":1,"v":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"b":2,"v":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"b":3,"v":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"b":4,"v":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"b":5,"v":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"b":6,"v":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"b":7,"v":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"b":8,"v":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.32]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[63.34]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[65]}}]}, +{"f":24,"b":[{"b":0,"v":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"b":1,"v":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"b":2,"v":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"b":3,"v":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"b":4,"v":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"b":5,"v":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"b":6,"v":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"b":7,"v":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"b":8,"v":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.97]}},{"b":11,"v":{"DEFAULT":[3.96]}},{"b":12,"v":{"DEFAULT":[2.64]}},{"b":13,"v":{"DEFAULT":[24.02]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[169.3]}}]}, +{"f":25,"b":[{"b":0,"v":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"b":1,"v":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"b":2,"v":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"b":3,"v":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"b":4,"v":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"b":5,"v":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"b":6,"v":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"b":7,"v":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"b":8,"v":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.63]}},{"b":10,"v":{"DEFAULT":[1.94]}},{"b":11,"v":{"DEFAULT":[1.92]}},{"b":12,"v":{"DEFAULT":[0.67]}},{"b":13,"v":{"DEFAULT":[13.03]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[47.3]}}]}, +{"f":26,"b":[{"b":0,"v":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"b":1,"v":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"b":2,"v":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"b":3,"v":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"b":4,"v":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"b":5,"v":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"b":6,"v":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"b":7,"v":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"b":8,"v":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[1.89]}},{"b":11,"v":{"DEFAULT":[1.92]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, +{"f":27,"b":[{"b":0,"v":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"b":1,"v":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"b":2,"v":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"b":3,"v":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"b":4,"v":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"b":5,"v":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"b":6,"v":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"b":7,"v":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"b":8,"v":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.04]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[14.51]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[3.7]}},{"b":16,"v":{"DEFAULT":[41.6]}}]}, +{"f":28,"b":[{"b":0,"v":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"b":1,"v":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"b":2,"v":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"b":3,"v":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"b":4,"v":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"b":5,"v":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"b":6,"v":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"b":7,"v":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"b":8,"v":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[4.69]}},{"b":11,"v":{"DEFAULT":[4.68]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[38.76]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[54]}}]}, +{"f":29,"b":[{"b":0,"v":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"b":1,"v":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"b":2,"v":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"b":3,"v":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"b":4,"v":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"b":5,"v":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"b":6,"v":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"b":7,"v":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"b":8,"v":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[3.67]}},{"b":11,"v":{"DEFAULT":[3.69]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[29.14]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[58.6]}}]}, +{"f":30,"b":[{"b":0,"v":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"b":1,"v":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"b":2,"v":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"b":3,"v":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"b":4,"v":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"b":5,"v":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"b":6,"v":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"b":7,"v":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"b":8,"v":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"b":9,"v":{"DEFAULT":[8.27]}},{"b":10,"v":{"DEFAULT":[14.21]}},{"b":11,"v":{"DEFAULT":[14.17]}},{"b":12,"v":{"DEFAULT":[9.09]}},{"b":13,"v":{"DEFAULT":[63.91]}},{"b":14,"v":{"DEFAULT":[1109.4]}},{"b":15,"v":{"DEFAULT":[223.3]}},{"b":16,"v":{"DEFAULT":[992.4]}}]}, +{"f":31,"b":[{"b":0,"v":{"total":[28.6,28.7,28.8,29.2,29.1,28.7,29.5,28.8,28.8,28.9,28.6,29.2,28.9,28.6,29.4],"script":[6.4,6.5,6.4,6.8,7.1,6.5,6.7,6.6,6.6,6.5,6.7,6.6,6.5,6.5,6.8],"paint":[21.6,21.7,21.9,21.8,21.5,21.6,22.3,21.7,21.7,21.8,21.4,22.1,21.8,21.6,22]}},{"b":1,"v":{"total":[32.3,32.2,31.9,33.7,34.4,33.7,32.1,32.2,32.6,32.1,32.9,31.3,31.9,32.1,31.9],"script":[9,8.9,9,9.3,9,9.1,8.7,8.7,9.3,8.7,9.2,8.7,9,8.6,9.2],"paint":[22.7,22.7,22.4,23.8,24.8,24,22.9,22.9,22.7,22.9,23.1,22.2,22.4,22.9,22.1]}},{"b":2,"v":{"total":[13.6,12.5,13,13.4,12.6,13.2,13.7,13.6,12.5,13,13.9,13,13.6,13.7,13.6],"script":[3.2,2.9,3.2,3.1,2.5,2.5,3.1,3.4,3.3,2.8,3.6,2.5,3,3,2.6],"paint":[8.6,7.6,8.4,9,8.6,9.9,9.4,8.7,8.3,9.6,8,9.5,9.2,9.7,9.8]}},{"b":3,"v":{"total":[3.4,3.9,3.3,3.1,2.8,3.9,3.3,3.8,3.6,3.6,3.3,3.1,3.3,3.6,2.9,3.1,3.2,3.5,3,3.5,3.3,3.5,3.7,2.9,4.5],"script":[1.4,1.1,1.2,1.2,1.2,1.5,0.3,1.2,1.5,1.1,1.2,1,1.4,0.9,1,0.6,0.9,0.6,1.6,1.1,1.3,1.4,1.3,1.1,1.8],"paint":[1.3,1.5,2,1.8,1,1.4,2.1,1.5,1.5,1.9,0.7,1.7,1.8,1.6,1.1,1.4,1.3,2.6,1.3,1.6,1.4,2,2.2,1.7,2]}},{"b":4,"v":{"total":[14,13.9,13.8,14.7,14.2,13.7,14.9,15.1,14.5,15,14.2,15.2,13.8,13.9,13.4],"script":[0.3,1,1,1.2,1.1,1.1,0.9,1.2,1.2,1,0.6,1.8,1.1,0.7,0.7],"paint":[12.8,11.9,12.2,12,11.2,11.5,13.1,12.7,12.3,12.8,12.3,12.3,11.8,12.1,11.7]}},{"b":5,"v":{"total":[11,10.7,11,10.9,11,11,11.3,10.7,10.9,10.9,11,10.6,10.9,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6],"paint":[9.9,9.5,9.9,9.6,9.2,9.8,9.9,9.4,9.8,9.7,9.7,9.6,9.7,9.4,9.6]}},{"b":6,"v":{"total":[291.7,290.6,297,295.5,293.2,294.3,293.2,293.2,292.5,293.9,296.1,292.7,292.9,295.4,294.5],"script":[68.7,69.9,72.1,71.8,71,72.3,71.2,70.8,69.9,70.8,72.6,71.3,71.2,72.4,71.9],"paint":[215.7,213.7,217.1,216.6,215.2,214.9,214.7,215.2,215.3,216,215.8,214.1,214.5,215.8,215]}},{"b":7,"v":{"total":[32.6,32.6,32.4,33.3,32.5,32.7,32.5,32.4,32.4,32.8,33.3,32.6,32.7,32.9,32.7],"script":[6.5,6.5,6.8,7,6.7,6.8,6.6,6.6,6.5,6.6,7,6.6,6.6,6.6,6.7],"paint":[25.3,25.2,24.7,25.3,24.9,25,25,24.9,24.9,25.3,25.4,25.1,25.1,25.3,25.2]}},{"b":8,"v":{"total":[11.9,11.2,11.9,11.7,12.4,11.8,11.3,10.8,10.6,12.4,11.2,10.8,11.2,10.7,12.9],"script":[9.4,9.3,10.2,9.7,10.1,10.1,9.2,9.3,8.7,10.1,9.3,9.6,8.7,8.6,10.4],"paint":[1.5,1.6,1.1,1.6,1.3,0.3,0.3,0.6,0.3,1.1,0.8,0.4,2.2,1.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.41]}},{"b":11,"v":{"DEFAULT":[3.45]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[27.96]}},{"b":14,"v":{"DEFAULT":[7.5]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, +{"f":32,"b":[{"b":0,"v":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"b":1,"v":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"b":2,"v":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"b":3,"v":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"b":4,"v":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"b":5,"v":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"b":6,"v":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"b":7,"v":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"b":8,"v":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[23.77]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, +{"f":33,"b":[{"b":0,"v":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"b":1,"v":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"b":2,"v":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"b":3,"v":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"b":4,"v":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"b":5,"v":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"b":6,"v":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"b":7,"v":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"b":8,"v":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.63]}},{"b":11,"v":{"DEFAULT":[5.65]}},{"b":12,"v":{"DEFAULT":[0.94]}},{"b":13,"v":{"DEFAULT":[48.45]}},{"b":14,"v":{"DEFAULT":[16.8]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49.4]}}]}, +{"f":34,"b":[{"b":0,"v":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"b":1,"v":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"b":2,"v":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"b":3,"v":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"b":4,"v":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"b":5,"v":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"b":6,"v":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"b":7,"v":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"b":8,"v":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"b":9,"v":{"DEFAULT":[5.3]}},{"b":10,"v":{"DEFAULT":[11.19]}},{"b":11,"v":{"DEFAULT":[11.21]}},{"b":12,"v":{"DEFAULT":[6.25]}},{"b":13,"v":{"DEFAULT":[61.14]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[116.4]}}]}, +{"f":35,"b":[{"b":0,"v":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"b":1,"v":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"b":2,"v":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"b":3,"v":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"b":4,"v":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"b":5,"v":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"b":6,"v":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"b":7,"v":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"b":8,"v":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.15]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.07]}},{"b":13,"v":{"DEFAULT":[34.03]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[41.1]}}]}, +{"f":36,"b":[{"b":0,"v":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"b":1,"v":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"b":2,"v":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"b":3,"v":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"b":4,"v":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"b":5,"v":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"b":6,"v":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"b":7,"v":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"b":8,"v":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.74]}},{"b":10,"v":{"DEFAULT":[3.85]}},{"b":11,"v":{"DEFAULT":[4.23]}},{"b":12,"v":{"DEFAULT":[2.27]}},{"b":13,"v":{"DEFAULT":[30.98]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[78.2]}}]}, +{"f":37,"b":[{"b":0,"v":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"b":1,"v":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"b":2,"v":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"b":3,"v":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"b":4,"v":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"b":5,"v":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"b":6,"v":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"b":7,"v":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"b":8,"v":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.73]}},{"b":11,"v":{"DEFAULT":[5.29]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[32.24]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[264.7]}}]}, +{"f":38,"b":[{"b":0,"v":{"total":[31.3,30.9,31.2,31,31.1,31.5,31,31.3,31.1,31.3,31.1,30.9,31.3,31.6,31.6],"script":[8.7,8.6,8.8,9,8.9,9,8.8,8.8,8.8,8.9,9,8.9,9.1,9.1,9.1],"paint":[22,21.7,21.8,21.4,21.7,21.9,21.6,21.9,21.7,21.8,21.5,21.3,21.5,21.8,21.9]}},{"b":1,"v":{"total":[39.8,40.6,40.9,40.6,40.5,41.1,40.2,40.1,41.6,40.3,39.6,40.2,40.9,40.2,40.2],"script":[16.2,16.2,17,16.8,16.8,17.4,16.3,16.4,17.2,16.8,16.2,16.4,16.8,16.8,16.7],"paint":[23,23.8,23.3,23.1,23.1,23.1,23.3,23.1,23.8,22.9,22.8,23.2,23.5,22.8,22.9]}},{"b":2,"v":{"total":[12.1,13.1,11.9,11.7,11.7,12.3,11.3,12.1,13.1,12.2,12.7,12.7,12.1,12,11.8],"script":[1.5,1,1.5,1,0.7,1,1.5,1.5,1.3,1.8,1.8,2,1.5,1.6,0.9],"paint":[9.6,11.5,9.5,9.8,10,10.4,8.2,9.6,10.3,9.5,8.8,9.6,9.9,8.9,8.3]}},{"b":3,"v":{"total":[4.3,3.6,4.6,3.5,3.4,4.5,3.1,3,3.1,3.9,2.7,3.4,3.4,3.6,4.4,4.8,4.2,3.3,3.4,3.7,4.2,4.1,3,3.1,3.7],"script":[1.8,1.7,1.9,0.8,1,2.2,0.7,1.2,0.7,1.5,1.2,0.9,1.2,1.5,1.9,1.9,2.1,1.5,0.6,1.3,1.9,1.6,1.3,0.7,1.5],"paint":[1.8,1.1,1.8,1.6,2.3,1.8,1.9,1,2.3,1.5,1.4,1.6,1.5,1.4,2.4,2.7,0.8,1.6,1.6,1.7,2.1,2.3,1.5,1.9,1.8]}},{"b":4,"v":{"total":[16.5,15.5,16.4,15.9,15.1,16.5,16.5,16.5,16.1,17.1,16.5,16,16.4,15.8,15.7],"script":[3.2,2.6,3.3,3.1,3.1,3.5,2.8,3.5,3.1,3.5,2.8,2.9,2.6,3.3,2.7],"paint":[12.4,11.7,12.1,12.1,10.7,11.9,12.6,11.8,12.1,12.7,11.8,12.2,12.1,11.5,12.1]}},{"b":5,"v":{"total":[12.5,12.2,13,12.4,12.5,12.1,12.1,12,12.7,12.1,12.1,12.1,12.6,12.2,12.2],"script":[1.9,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.5],"paint":[10,10.1,10.4,9.7,9.9,9.6,9.6,9.3,10.2,9.7,9.6,9.6,10.2,9.9,10.3]}},{"b":6,"v":{"total":[316.1,314.4,317.7,316.5,318.8,317.3,316.9,316.4,317.4,318.4,319.7,317.6,318.6,322.3,316.3],"script":[88.8,87.4,89.6,89,91,91,89.8,90.3,91.6,88.9,91.5,89.3,91.6,90.3,90.1],"paint":[219.4,219.4,220.3,219.6,220.1,218.8,219.7,218.5,218.2,221.4,220.5,220.6,219.4,224.3,218.5]}},{"b":7,"v":{"total":[38.2,38.3,38.1,37.9,38.3,38.2,37.5,38.3,37.8,38.2,37.8,38.5,37.9,39.6,37.4],"script":[9.7,9.9,9.9,10.1,9.6,10.3,9.6,9.8,9.7,9.8,10,9.9,9.9,10.6,9.6],"paint":[27.4,27.4,27.2,26.7,27.5,27,26.8,27.4,27.1,27.4,26.8,27.6,27,27.9,26.7]}},{"b":8,"v":{"total":[24,25.8,24.7,26.3,24.1,24.6,24,24.5,23.9,24.2,25.7,27.8,24,24,24.3],"script":[21.5,23.5,22.4,23.9,22.3,22.4,21.7,23,21.8,21.9,23.6,25.4,21.7,22.2,22],"paint":[2,1.6,2,1.2,0.9,2,1.1,0.8,0.9,0.7,1.4,1.5,1.5,1,2]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.25]}},{"b":11,"v":{"DEFAULT":[3.18]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[26.76]}},{"b":14,"v":{"DEFAULT":[8.9]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[41]}}]}, +{"f":39,"b":[{"b":0,"v":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"b":1,"v":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"b":2,"v":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"b":3,"v":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"b":4,"v":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"b":5,"v":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"b":6,"v":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"b":7,"v":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"b":8,"v":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.88]}},{"b":12,"v":{"DEFAULT":[0.89]}},{"b":13,"v":{"DEFAULT":[35.33]}},{"b":14,"v":{"DEFAULT":[22.3]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[57.9]}}]}, +{"f":40,"b":[{"b":0,"v":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"b":1,"v":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"b":2,"v":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"b":3,"v":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"b":4,"v":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"b":5,"v":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"b":6,"v":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"b":7,"v":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"b":8,"v":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.04]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[1.16]}},{"b":13,"v":{"DEFAULT":[32.13]}},{"b":14,"v":{"DEFAULT":[16.1]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[44.2]}}]}, +{"f":41,"b":[{"b":0,"v":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"b":1,"v":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"b":2,"v":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"b":3,"v":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"b":4,"v":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"b":5,"v":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"b":6,"v":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"b":7,"v":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"b":8,"v":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.63]}},{"b":13,"v":{"DEFAULT":[23.89]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[37.6]}}]}, +{"f":42,"b":[{"b":0,"v":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"b":1,"v":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"b":2,"v":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"b":4,"v":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"b":5,"v":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"b":6,"v":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"b":7,"v":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"b":8,"v":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.85]}},{"b":10,"v":{"DEFAULT":[3.64]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[1.06]}},{"b":13,"v":{"DEFAULT":[26.99]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[76.7]}}]}, +{"f":43,"b":[{"b":0,"v":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"b":1,"v":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"b":2,"v":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"b":3,"v":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"b":4,"v":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"b":5,"v":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"b":6,"v":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"b":7,"v":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"b":8,"v":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.98]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[22.29]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[42]}}]}, +{"f":44,"b":[{"b":0,"v":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"b":1,"v":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"b":2,"v":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"b":3,"v":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"b":4,"v":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"b":5,"v":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"b":6,"v":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"b":7,"v":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"b":8,"v":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.54]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.85]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[21.11]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[54.1]}}]}, +{"f":45,"b":[{"b":0,"v":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"b":1,"v":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"b":2,"v":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"b":3,"v":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"b":4,"v":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"b":5,"v":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"b":6,"v":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"b":7,"v":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"b":8,"v":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.29]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.61]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[40.5]}}]}, +{"f":46,"b":[{"b":0,"v":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"b":1,"v":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"b":2,"v":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"b":3,"v":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"b":4,"v":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"b":5,"v":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"b":6,"v":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"b":7,"v":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"b":8,"v":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[4.45]}},{"b":11,"v":{"DEFAULT":[4.48]}},{"b":12,"v":{"DEFAULT":[1.01]}},{"b":13,"v":{"DEFAULT":[38.12]}},{"b":14,"v":{"DEFAULT":[18.4]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, +{"f":47,"b":[{"b":0,"v":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"b":1,"v":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"b":2,"v":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"b":3,"v":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"b":4,"v":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"b":5,"v":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"b":6,"v":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"b":7,"v":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"b":8,"v":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.82]}},{"b":10,"v":{"DEFAULT":[12.58]}},{"b":11,"v":{"DEFAULT":[12.61]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[75.31]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[83.8]}}]}, +{"f":48,"b":[{"b":0,"v":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"b":1,"v":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"b":2,"v":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"b":3,"v":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"b":4,"v":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"b":6,"v":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"b":7,"v":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"b":8,"v":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[5.19]}},{"b":11,"v":{"DEFAULT":[5.15]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[91.1]}}]}, +{"f":49,"b":[{"b":0,"v":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"b":1,"v":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"b":2,"v":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"b":3,"v":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"b":4,"v":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"b":5,"v":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"b":6,"v":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"b":7,"v":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"b":8,"v":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.24]}},{"b":11,"v":{"DEFAULT":[15.31]}},{"b":12,"v":{"DEFAULT":[4.1]}},{"b":13,"v":{"DEFAULT":[114.91]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[634.5]}}]}, +{"f":50,"b":[{"b":0,"v":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"b":1,"v":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"b":2,"v":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"b":3,"v":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"b":4,"v":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"b":5,"v":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"b":6,"v":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"b":7,"v":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"b":8,"v":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.27]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.59]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[176.3]}}]}, +{"f":51,"b":[{"b":0,"v":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"b":1,"v":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"b":2,"v":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"b":3,"v":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"b":4,"v":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"b":5,"v":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"b":6,"v":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"b":7,"v":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"b":8,"v":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[5.53]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.56]}},{"b":13,"v":{"DEFAULT":[37.23]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[225.8]}}]}, +{"f":52,"b":[{"b":0,"v":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"b":1,"v":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"b":2,"v":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"b":3,"v":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"b":4,"v":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"b":5,"v":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"b":6,"v":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"b":7,"v":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"b":8,"v":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[21.11]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[54.6]}}]}, +{"f":53,"b":[{"b":0,"v":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"b":1,"v":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"b":2,"v":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"b":3,"v":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"b":4,"v":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"b":5,"v":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"b":7,"v":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"b":8,"v":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.66]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.03]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, +{"f":54,"b":[{"b":0,"v":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"b":1,"v":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"b":2,"v":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"b":3,"v":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"b":4,"v":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"b":5,"v":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"b":6,"v":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"b":7,"v":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"b":8,"v":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[4.05]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[33.88]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, +{"f":55,"b":[{"b":0,"v":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"b":1,"v":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"b":2,"v":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"b":3,"v":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"b":4,"v":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"b":5,"v":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"b":6,"v":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"b":7,"v":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"b":8,"v":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.33]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[23.85]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[74.6]}}]}, +{"f":56,"b":[{"b":0,"v":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"b":1,"v":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"b":2,"v":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"b":3,"v":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"b":4,"v":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"b":5,"v":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"b":6,"v":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"b":7,"v":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"b":8,"v":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[35.1]}}]}, +{"f":57,"b":[{"b":0,"v":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"b":1,"v":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"b":2,"v":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"b":3,"v":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"b":4,"v":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"b":5,"v":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"b":6,"v":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"b":7,"v":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"b":8,"v":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.67]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[17.51]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[77]}}]}, +{"f":58,"b":[{"b":0,"v":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"b":1,"v":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"b":2,"v":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"b":3,"v":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"b":4,"v":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"b":6,"v":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"b":7,"v":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"b":8,"v":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.17]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.58]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[93.1]}}]}, +{"f":59,"b":[{"b":0,"v":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"b":1,"v":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"b":2,"v":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"b":3,"v":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"b":4,"v":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"b":5,"v":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"b":6,"v":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"b":7,"v":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"b":8,"v":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[56.9]}}]}, +{"f":60,"b":[{"b":0,"v":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"b":1,"v":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"b":2,"v":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"b":3,"v":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"b":4,"v":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"b":5,"v":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"b":6,"v":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"b":7,"v":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"b":8,"v":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.45]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, +{"f":61,"b":[{"b":0,"v":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"b":1,"v":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"b":2,"v":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"b":3,"v":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"b":4,"v":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"b":5,"v":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"b":6,"v":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"b":7,"v":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"b":8,"v":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.02]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[45.2]}}]}, +{"f":62,"b":[{"b":0,"v":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"b":2,"v":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"b":3,"v":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"b":4,"v":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"b":6,"v":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"b":7,"v":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"b":8,"v":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.35]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.14]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[41.9]}}]}, +{"f":63,"b":[{"b":0,"v":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"b":1,"v":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"b":2,"v":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"b":3,"v":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"b":4,"v":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"b":5,"v":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"b":6,"v":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"b":7,"v":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"b":8,"v":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"b":9,"v":{"DEFAULT":[2.59]}},{"b":10,"v":{"DEFAULT":[8.07]}},{"b":11,"v":{"DEFAULT":[10.85]}},{"b":12,"v":{"DEFAULT":[8.17]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[490.3]}}]}, +{"f":64,"b":[{"b":0,"v":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"b":1,"v":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"b":2,"v":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"b":3,"v":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"b":4,"v":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"b":5,"v":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"b":6,"v":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"b":7,"v":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"b":8,"v":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.34]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[27.18]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[50]}}]}, +{"f":65,"b":[{"b":0,"v":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"b":1,"v":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"b":2,"v":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"b":3,"v":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"b":4,"v":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"b":5,"v":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"b":6,"v":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"b":7,"v":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"b":8,"v":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[56.4]}}]}, +{"f":66,"b":[{"b":0,"v":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"b":1,"v":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"b":2,"v":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"b":3,"v":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"b":4,"v":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"b":5,"v":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"b":6,"v":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"b":7,"v":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"b":8,"v":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.8]}}]}, +{"f":67,"b":[{"b":0,"v":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"b":1,"v":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"b":2,"v":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"b":3,"v":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"b":4,"v":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"b":5,"v":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"b":6,"v":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"b":7,"v":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"b":8,"v":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.77]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[291.2]}}]}, +{"f":68,"b":[{"b":0,"v":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"b":1,"v":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"b":2,"v":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"b":3,"v":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"b":4,"v":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"b":6,"v":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"b":7,"v":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"b":8,"v":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[4.01]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.8]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[42.1]}}]}, +{"f":69,"b":[{"b":0,"v":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"b":1,"v":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"b":2,"v":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"b":3,"v":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"b":4,"v":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"b":5,"v":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"b":6,"v":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"b":7,"v":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"b":8,"v":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[56.6]}}]}, +{"f":70,"b":[{"b":0,"v":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"b":1,"v":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"b":2,"v":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"b":3,"v":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"b":4,"v":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"b":5,"v":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"b":6,"v":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"b":7,"v":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"b":8,"v":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"b":9,"v":{"DEFAULT":[3.32]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[4.89]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[16.25]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[113]}}]}, +{"f":71,"b":[{"b":0,"v":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"b":1,"v":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"b":2,"v":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"b":3,"v":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"b":4,"v":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"b":5,"v":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"b":6,"v":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"b":7,"v":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"b":8,"v":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.35]}},{"b":13,"v":{"DEFAULT":[23.87]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.7]}}]}, +{"f":72,"b":[{"b":0,"v":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"b":1,"v":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"b":2,"v":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"b":3,"v":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"b":4,"v":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"b":5,"v":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"b":6,"v":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"b":7,"v":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"b":8,"v":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, +{"f":73,"b":[{"b":0,"v":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"b":1,"v":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"b":2,"v":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"b":3,"v":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"b":4,"v":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"b":5,"v":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"b":6,"v":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"b":7,"v":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"b":8,"v":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.63]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.04]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[46.4]}}]}, +{"f":74,"b":[{"b":0,"v":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"b":1,"v":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"b":2,"v":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"b":3,"v":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"b":4,"v":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"b":5,"v":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"b":6,"v":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"b":7,"v":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"b":8,"v":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.61]}},{"b":11,"v":{"DEFAULT":[3.66]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.27]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49]}}]}, +{"f":75,"b":[{"b":0,"v":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"b":1,"v":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"b":3,"v":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"b":4,"v":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"b":5,"v":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"b":6,"v":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"b":7,"v":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"b":8,"v":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":76,"b":[{"b":0,"v":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"b":1,"v":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"b":2,"v":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"b":3,"v":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"b":4,"v":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"b":5,"v":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"b":6,"v":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"b":7,"v":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"b":8,"v":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.04]}},{"b":13,"v":{"DEFAULT":[49.14]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, +{"f":77,"b":[{"b":0,"v":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"b":1,"v":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"b":2,"v":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"b":3,"v":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"b":4,"v":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"b":5,"v":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"b":6,"v":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"b":7,"v":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"b":8,"v":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[5.12]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.17]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[52]}}]}, +{"f":78,"b":[{"b":0,"v":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"b":1,"v":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"b":2,"v":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"b":3,"v":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"b":4,"v":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"b":5,"v":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"b":6,"v":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"b":7,"v":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"b":8,"v":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.19]}},{"b":12,"v":{"DEFAULT":[4.82]}},{"b":13,"v":{"DEFAULT":[39.51]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[108.8]}}]}, +{"f":79,"b":[{"b":0,"v":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"b":1,"v":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"b":2,"v":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"b":3,"v":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"b":4,"v":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"b":5,"v":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"b":6,"v":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"b":7,"v":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"b":8,"v":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.99]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.93]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, +{"f":80,"b":[{"b":0,"v":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"b":1,"v":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"b":2,"v":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"b":3,"v":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"b":4,"v":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"b":5,"v":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"b":6,"v":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"b":7,"v":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"b":8,"v":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.75]}},{"b":11,"v":{"DEFAULT":[8.76]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.15]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[232.5]}}]}, +{"f":81,"b":[{"b":0,"v":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"b":1,"v":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"b":2,"v":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"b":3,"v":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"b":4,"v":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"b":5,"v":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"b":6,"v":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"b":7,"v":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"b":8,"v":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.36]}},{"b":12,"v":{"DEFAULT":[3.27]}},{"b":13,"v":{"DEFAULT":[53.15]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[376]}}]}, +{"f":82,"b":[{"b":0,"v":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"b":1,"v":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"b":2,"v":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"b":4,"v":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"b":5,"v":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"b":6,"v":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"b":7,"v":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"b":8,"v":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"b":9,"v":{"DEFAULT":[1.19]}},{"b":10,"v":{"DEFAULT":[4.63]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, +{"f":83,"b":[{"b":0,"v":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"b":1,"v":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"b":2,"v":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"b":3,"v":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"b":4,"v":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"b":5,"v":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"b":6,"v":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"b":7,"v":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"b":8,"v":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.66]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[33.35]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[202.7]}}]}, +{"f":84,"b":[{"b":0,"v":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"b":1,"v":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"b":2,"v":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"b":3,"v":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"b":4,"v":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"b":5,"v":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"b":6,"v":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"b":7,"v":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"b":8,"v":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.46]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.85]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.5]}}]}, +{"f":85,"b":[{"b":0,"v":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"b":1,"v":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"b":2,"v":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"b":3,"v":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"b":4,"v":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"b":5,"v":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"b":6,"v":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"b":7,"v":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"b":8,"v":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.67]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[207.4]}}]}, +{"f":86,"b":[{"b":0,"v":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"b":1,"v":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"b":2,"v":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"b":3,"v":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"b":4,"v":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"b":5,"v":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"b":6,"v":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"b":7,"v":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"b":8,"v":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[5.79]}},{"b":11,"v":{"DEFAULT":[6.19]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[43.45]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[209.9]}}]}, +{"f":87,"b":[{"b":0,"v":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"b":1,"v":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"b":2,"v":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"b":3,"v":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"b":4,"v":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"b":5,"v":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"b":6,"v":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"b":7,"v":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"b":8,"v":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.77]}},{"b":12,"v":{"DEFAULT":[2.77]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[215.2]}}]}, +{"f":88,"b":[{"b":0,"v":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"b":1,"v":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"b":2,"v":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"b":3,"v":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"b":4,"v":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"b":5,"v":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"b":6,"v":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"b":7,"v":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"b":8,"v":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.24]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.61]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[266]}}]}, +{"f":89,"b":[{"b":0,"v":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"b":1,"v":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"b":2,"v":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"b":3,"v":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"b":4,"v":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"b":5,"v":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"b":6,"v":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"b":7,"v":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"b":8,"v":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[6.64]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[340.2]}}]}, +{"f":90,"b":[{"b":0,"v":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"b":1,"v":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"b":2,"v":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"b":3,"v":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"b":4,"v":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"b":5,"v":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"b":6,"v":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"b":7,"v":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"b":8,"v":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.64]}},{"b":11,"v":{"DEFAULT":[9.33]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[70.58]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[212.4]}}]}, +{"f":91,"b":[{"b":0,"v":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"b":1,"v":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"b":2,"v":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"b":3,"v":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"b":4,"v":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"b":5,"v":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"b":6,"v":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"b":7,"v":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"b":8,"v":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.44]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[45.41]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, +{"f":92,"b":[{"b":0,"v":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"b":1,"v":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"b":2,"v":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"b":3,"v":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"b":4,"v":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"b":5,"v":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"b":6,"v":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"b":7,"v":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"b":8,"v":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.44]}},{"b":11,"v":{"DEFAULT":[6.93]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[276.7]}}]}, +{"f":93,"b":[{"b":0,"v":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"b":1,"v":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"b":2,"v":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"b":3,"v":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"b":4,"v":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"b":5,"v":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"b":6,"v":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"b":7,"v":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"b":8,"v":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[8.62]}},{"b":11,"v":{"DEFAULT":[9.31]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.21]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[224.7]}}]}, +{"f":94,"b":[{"b":0,"v":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"b":1,"v":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"b":2,"v":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"b":3,"v":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"b":4,"v":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"b":5,"v":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"b":6,"v":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"b":7,"v":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"b":8,"v":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.43]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.95]}},{"b":13,"v":{"DEFAULT":[30.4]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219.6]}}]}, +{"f":95,"b":[{"b":0,"v":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"b":1,"v":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"b":2,"v":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"b":3,"v":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"b":4,"v":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"b":5,"v":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"b":6,"v":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"b":7,"v":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"b":8,"v":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[37.08]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, +{"f":96,"b":[{"b":0,"v":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"b":1,"v":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"b":2,"v":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"b":3,"v":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"b":4,"v":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"b":5,"v":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"b":6,"v":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"b":7,"v":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"b":8,"v":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.28]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.47]}},{"b":12,"v":{"DEFAULT":[2.48]}},{"b":13,"v":{"DEFAULT":[35.36]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[207.8]}}]}, +{"f":97,"b":[{"b":0,"v":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"b":1,"v":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"b":2,"v":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"b":3,"v":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"b":4,"v":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"b":5,"v":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"b":6,"v":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"b":7,"v":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"b":8,"v":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[6.16]}},{"b":11,"v":{"DEFAULT":[6.76]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[47.98]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, +{"f":98,"b":[{"b":0,"v":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"b":1,"v":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"b":2,"v":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"b":3,"v":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"b":4,"v":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"b":5,"v":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"b":6,"v":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"b":7,"v":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"b":8,"v":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.45]}},{"b":10,"v":{"DEFAULT":[6.31]}},{"b":11,"v":{"DEFAULT":[7.04]}},{"b":12,"v":{"DEFAULT":[2.95]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[291.4]}}]}, +{"f":99,"b":[{"b":0,"v":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"b":1,"v":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"b":2,"v":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"b":3,"v":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"b":4,"v":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"b":5,"v":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"b":6,"v":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"b":7,"v":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.51]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.15]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, +{"f":100,"b":[{"b":0,"v":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"b":1,"v":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"b":2,"v":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"b":3,"v":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"b":4,"v":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"b":5,"v":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"b":6,"v":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"b":7,"v":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"b":8,"v":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.53]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[29.02]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, +{"f":101,"b":[{"b":0,"v":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"b":1,"v":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"b":2,"v":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"b":4,"v":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"b":5,"v":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"b":6,"v":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"b":7,"v":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"b":8,"v":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.79]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[20.86]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, +{"f":102,"b":[{"b":0,"v":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"b":1,"v":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"b":2,"v":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"b":3,"v":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"b":4,"v":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"b":5,"v":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"b":6,"v":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"b":7,"v":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"b":8,"v":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[47.8]}}]}, +{"f":103,"b":[{"b":0,"v":{"total":[24.3,24.1,24.2,24.5,24.1,23.8,24.7,24.3,24.2,26.1,24.4,24,24.1,24.2,24.6],"script":[2.6,2.5,2.6,2.5,2.6,2.5,2.7,2.5,2.7,2.6,2.5,2.6,2.6,2.5,2.6],"paint":[21.4,21.2,21.2,21.6,21.2,21,21.6,21.4,21.2,23.1,21.5,21,21.1,21.3,21.5]}},{"b":1,"v":{"total":[26.7,27,27,27.1,26.7,26.9,26.8,27.1,27.1,26.7,27.3,27.6,27,27.4,27],"script":[4.3,4.4,4.4,4.6,4.6,4.5,4.5,4.4,5,4.4,4.6,4.9,4.4,4.5,4.5],"paint":[22,22.1,22.1,22.1,21.7,22,21.9,22.2,21.7,21.9,22.3,22.3,22.1,22.5,22.1]}},{"b":2,"v":{"total":[10.5,10.9,10.1,10.9,10.4,10.1,10.6,11,10.4,10.4,10.6,9.9,11.2,10.7,10.6],"script":[0.2,0.6,0.1,0.7,0.1,0.8,0.7,1.2,1,0.6,0.6,0.1,0.9,0.8,0.7],"paint":[9.3,9.4,8.3,8.4,9.2,7.8,9.2,8.7,8,8.4,9.1,8.7,9.1,8.8,8.5]}},{"b":3,"v":{"total":[5.8,3.4,2.2,3,3.2,3.3,3,2.5,3,2.5,2.7,3.2,3.1,3.2,2.7,3,2.7,2.9,2.4,3.2,3.3,2.9,2.6,2.5,2.9],"script":[0.7,1.1,0.6,0.8,0.8,0.9,0.9,0.5,1.1,0.7,0.2,0.2,1,1,0.1,0.9,0.5,0.2,0.6,0.6,1.3,0.5,0.2,0.6,0.8],"paint":[1.4,2.2,1.4,2,1.6,2.2,1.4,1,1.1,1.6,1.2,2.3,2,1.8,1.7,1.6,2.1,2.3,1,2,1.8,1.1,1.3,1.1,1.4]}},{"b":4,"v":{"total":[13.5,13.7,13.1,14.6,14.3,13.3,13.6,13.1,14.1,13.6,14.3,13.8,13.5,13.7,13.3],"script":[0.2,0.9,0.6,1.2,1,0.6,0.2,1,0.9,0.8,1.1,1,1.3,0.6,0.9],"paint":[12.3,11,11.4,12.3,12.1,11.8,12.4,10.6,11.6,11.2,12.2,11.8,10.8,12.2,10.9]}},{"b":5,"v":{"total":[10.9,10.4,10.5,10.7,10.7,10.4,10.1,10.4,10.4,10.5,10.3,10.9,10.3,10.6,10.2],"script":[0.3,0.3,0.2,0.3,0.5,0.4,0.4,0.3,0.4,0.3,0.2,0.2,0.5,0.3,0.5],"paint":[10.2,9.3,9.7,9.8,9.9,9.4,9.3,9.4,9.2,9.4,9.5,10.2,9.1,9.4,9.2]}},{"b":6,"v":{"total":[257.6,258,253.4,257.3,256.3,257.1,256.4,256.6,258,256.9,257.1,256.7,256.1,256.4,256.2],"script":[26.2,27.1,26,26.5,26.9,27,26.4,27,27,26.7,26.2,26.4,27,26.1,26.2],"paint":[223.7,223.8,220.1,223.5,222.2,222.8,222.8,222.5,223.8,223.1,223.6,223.1,222.1,223,222.7]}},{"b":7,"v":{"total":[27.7,27.5,29,27.7,28.9,27.7,28.9,27.6,27.7,28.3,28,28.1,28,28.4,28.4],"script":[2.4,2.5,2.7,2.4,2.7,2.5,2.6,2.5,2.4,2.5,2.5,2.5,2.6,2.5,2.6],"paint":[24.5,24.3,25.5,24.6,25.5,24.5,25.5,24.3,24.5,25,24.8,24.8,24.6,25.1,25.1]}},{"b":8,"v":{"total":[10.1,9.2,9.2,9.1,10.2,8.8,9,9.7,9,8.9,9.8,9.2,9.2,9.5,8.6],"script":[8.1,6.4,7.4,7.3,8.1,7,7,7.5,6.9,7.5,7.5,7.4,7.1,7.6,7.1],"paint":[1.1,1.2,0.3,1.6,1.4,1,1.2,1,1,0.3,2.1,0.9,1,1.7,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.57]}},{"b":11,"v":{"DEFAULT":[2.62]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[19.02]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[39.3]}}]}, +{"f":104,"b":[{"b":0,"v":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"b":1,"v":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"b":2,"v":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"b":3,"v":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"b":4,"v":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"b":5,"v":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"b":6,"v":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"b":7,"v":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"b":8,"v":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.77]}},{"b":11,"v":{"DEFAULT":[3.81]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[31.38]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[50.8]}}]}, +{"f":105,"b":[{"b":0,"v":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"b":1,"v":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"b":2,"v":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"b":3,"v":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"b":4,"v":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"b":5,"v":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"b":6,"v":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"b":7,"v":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"b":8,"v":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.46]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[25.83]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[91.7]}}]}, +{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"b":1,"v":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"b":2,"v":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"b":3,"v":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"b":4,"v":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"b":5,"v":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"b":6,"v":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"b":7,"v":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"b":8,"v":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.04]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[39.64]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93.8]}}]}, +{"f":107,"b":[{"b":0,"v":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"b":1,"v":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"b":2,"v":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"b":3,"v":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"b":4,"v":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"b":5,"v":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"b":6,"v":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"b":7,"v":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"b":8,"v":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.99]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[103.3]}}]}, +{"f":108,"b":[{"b":0,"v":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"b":1,"v":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"b":3,"v":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"b":4,"v":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"b":5,"v":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"b":6,"v":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"b":7,"v":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"b":8,"v":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.42]}},{"b":11,"v":{"DEFAULT":[11.17]}},{"b":12,"v":{"DEFAULT":[23.36]}},{"b":13,"v":{"DEFAULT":[68.52]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[387.8]}}]}, +{"f":109,"b":[{"b":0,"v":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"b":1,"v":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"b":2,"v":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"b":3,"v":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"b":4,"v":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"b":5,"v":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"b":6,"v":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"b":7,"v":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"b":8,"v":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.27]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[208.5]}}]}, +{"f":110,"b":[{"b":0,"v":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"b":1,"v":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"b":3,"v":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"b":4,"v":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"b":5,"v":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"b":6,"v":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"b":7,"v":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"b":8,"v":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.43]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, +{"f":111,"b":[{"b":0,"v":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"b":1,"v":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"b":2,"v":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"b":4,"v":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"b":5,"v":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"b":6,"v":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"b":7,"v":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"b":8,"v":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.99]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[41]}}]}, +{"f":112,"b":[{"b":0,"v":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"b":1,"v":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"b":2,"v":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"b":3,"v":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"b":4,"v":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"b":5,"v":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"b":6,"v":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"b":7,"v":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"b":8,"v":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[42.3]}}]}, +{"f":113,"b":[{"b":0,"v":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"b":1,"v":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"b":2,"v":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"b":3,"v":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"b":4,"v":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"b":5,"v":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"b":6,"v":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"b":8,"v":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[22.64]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[42.2]}}]}, +{"f":114,"b":[{"b":0,"v":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"b":1,"v":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"b":2,"v":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"b":3,"v":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"b":4,"v":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"b":6,"v":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"b":7,"v":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"b":8,"v":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.82]}},{"b":11,"v":{"DEFAULT":[1.83]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.61]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.7]}}]}, +{"f":115,"b":[{"b":0,"v":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"b":1,"v":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"b":2,"v":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"b":3,"v":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"b":4,"v":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"b":5,"v":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"b":6,"v":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"b":7,"v":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"b":8,"v":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.08]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.97]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[130]}}]}, +{"f":116,"b":[{"b":0,"v":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"b":1,"v":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"b":2,"v":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"b":3,"v":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"b":4,"v":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"b":5,"v":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"b":6,"v":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"b":7,"v":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"b":8,"v":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[4.52]}},{"b":11,"v":{"DEFAULT":[4.58]}},{"b":12,"v":{"DEFAULT":[3.09]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[109.1]}}]}, +{"f":117,"b":[{"b":0,"v":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"b":1,"v":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"b":2,"v":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"b":3,"v":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"b":4,"v":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"b":5,"v":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"b":6,"v":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"b":7,"v":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"b":8,"v":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.59]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.75]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[52.6]}}]}, +{"f":118,"b":[{"b":0,"v":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"b":1,"v":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"b":2,"v":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"b":3,"v":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"b":4,"v":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"b":5,"v":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"b":6,"v":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"b":7,"v":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"b":8,"v":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.29]}},{"b":11,"v":{"DEFAULT":[3.29]}},{"b":12,"v":{"DEFAULT":[2.32]}},{"b":13,"v":{"DEFAULT":[16.46]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[51.3]}}]}, +{"f":119,"b":[{"b":0,"v":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"b":1,"v":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"b":2,"v":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"b":3,"v":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"b":4,"v":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"b":5,"v":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"b":6,"v":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"b":7,"v":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"b":8,"v":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.58]}},{"b":11,"v":{"DEFAULT":[3.65]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[52.4]}}]}, +{"f":120,"b":[{"b":0,"v":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"b":1,"v":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"b":2,"v":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"b":3,"v":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"b":4,"v":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"b":5,"v":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"b":6,"v":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"b":7,"v":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"b":8,"v":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[49.5]}}]}, +{"f":121,"b":[{"b":0,"v":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"b":1,"v":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"b":2,"v":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"b":3,"v":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"b":4,"v":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"b":5,"v":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"b":6,"v":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"b":7,"v":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"b":8,"v":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.96]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.2]}}]}, +{"f":122,"b":[{"b":0,"v":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"b":1,"v":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"b":2,"v":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"b":3,"v":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"b":4,"v":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"b":5,"v":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"b":6,"v":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"b":7,"v":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"b":8,"v":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[208.1]}}]}, +{"f":123,"b":[{"b":0,"v":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"b":1,"v":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"b":2,"v":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"b":3,"v":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"b":4,"v":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"b":5,"v":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"b":6,"v":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"b":7,"v":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"b":8,"v":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.79]}},{"b":13,"v":{"DEFAULT":[17.53]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[181.5]}}]}, +{"f":124,"b":[{"b":0,"v":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"b":1,"v":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"b":2,"v":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"b":3,"v":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"b":4,"v":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"b":5,"v":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"b":6,"v":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"b":7,"v":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"b":8,"v":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.65]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[39.9]}}]}, +{"f":125,"b":[{"b":0,"v":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"b":1,"v":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"b":2,"v":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"b":3,"v":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"b":4,"v":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"b":5,"v":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"b":6,"v":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"b":7,"v":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"b":8,"v":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[59.1]}}]}, +{"f":126,"b":[{"b":0,"v":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"b":1,"v":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"b":2,"v":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"b":3,"v":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"b":4,"v":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"b":5,"v":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"b":6,"v":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"b":7,"v":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"b":8,"v":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[21.64]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[65.8]}}]}, +{"f":127,"b":[{"b":0,"v":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"b":1,"v":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"b":2,"v":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"b":4,"v":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"b":5,"v":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"b":6,"v":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"b":7,"v":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"b":8,"v":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.76]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.17]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, +{"f":128,"b":[{"b":0,"v":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"b":1,"v":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"b":2,"v":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"b":3,"v":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"b":4,"v":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"b":5,"v":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"b":6,"v":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"b":7,"v":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"b":8,"v":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.15]}},{"b":13,"v":{"DEFAULT":[21.75]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[93]}}]}, +{"f":129,"b":[{"b":0,"v":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"b":1,"v":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"b":2,"v":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"b":3,"v":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"b":4,"v":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"b":5,"v":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"b":6,"v":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"b":7,"v":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"b":8,"v":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.06]}},{"b":11,"v":{"DEFAULT":[6.65]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.79]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[159.1]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[23.1,23,23.1,23.1,23.5,23.4,23.3,23.4,23.1,23.4,23.3,23.2,23.1,23.3,23],"script":[1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.5,1.4,1.4,1.4,1.4,1.4],"paint":[21.3,21.2,21.3,21.3,21.7,21.6,21.5,21.6,21.3,21.5,21.5,21.4,21.3,21.5,21.2]}},{"b":1,"v":{"total":[26,25.7,25.5,25.9,26,25.8,26.1,25.9,25.7,25.6,25.7,25.6,26,25.6,25.9],"script":[3.4,3.3,3.3,3.3,3.3,3.3,3.5,3.4,3.5,3.3,3.4,3.5,3.5,3.3,3.3],"paint":[22.1,22,21.8,22.2,22.4,22.1,22.1,22.1,21.8,21.9,21.9,21.8,22.1,21.9,22.2]}},{"b":2,"v":{"total":[10.6,10.9,9.7,10.4,9.8,9.6,10.1,10.1,10,9.8,9.8,10.3,10.5,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.3,0.1],"paint":[9.2,9.3,8.8,9.1,8,8.5,9.1,8.4,8.4,8.2,8.5,8.7,9.1,9.3,9]}},{"b":3,"v":{"total":[2.1,2.6,2.4,2.7,2.6,3.3,2.3,2.8,1.9,2.7,2.4,2,2.8,1.6,2.4,2,2.9,2.2,1.9,2.7,2.1,2.4,2.4,2.5,2],"script":[0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.5,0.1,0.4,0.1,0.1,0.3,0.1,0.5,0.1,0.7,0.1,0.1,0.1,0.2,0.9,0.1,0.1,0.1],"paint":[1.5,1.7,1.9,2.2,2,2,1.1,1.6,1,2.1,0.8,1.8,2.4,0.7,1.8,1.8,2,1.4,1.1,2.3,1.3,1,2.1,2.3,1.1]}},{"b":4,"v":{"total":[11.7,12.5,12.5,11.9,12.8,12,12.3,12,13,12.9,13.1,13,12.3,11.9,12.2],"script":[0,0.1,0,0,0,0.1,0,0,0.4,0.1,0.9,0.6,0.1,0.1,0],"paint":[10.2,11.6,11.2,10.9,11.6,10.4,11.6,11.3,11.7,11.8,11.4,11,11.3,10.3,10.4]}},{"b":5,"v":{"total":[10.1,10,10.4,10.4,10.2,10.5,10.4,11.5,10.1,10,10.3,10.2,11,10.8,10.2],"script":[0.2,0.2,0.3,0.3,0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.1,0.3,0.1,0.1],"paint":[9.3,9.2,9.5,9.6,9.5,9.6,8.9,10.3,9.6,9.5,9.3,9.6,10.1,10.1,9.5]}},{"b":6,"v":{"total":[239,237.3,239.6,240.4,237.9,237.9,238.5,237,242.4,238.2,237.5,239.7,241.3,240.2,239.3],"script":[15.4,15,15.2,15.3,15.3,15.4,15.1,14.9,15.2,15.5,15.5,15.2,15.3,15,15.4],"paint":[216.4,215,217.1,217.7,215.3,215.3,216.2,214.7,219.5,215.4,214.8,217.2,218.8,217.7,216.4]}},{"b":7,"v":{"total":[26.9,27.1,27.4,27,27.2,28.1,26.7,27.8,27.4,26.7,27.8,27.4,26.8,27.8,29.1],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.3,1.4,1.3],"paint":[24.8,24.9,25.3,24.9,25.1,25.9,24.6,25.6,25.2,24.6,25.7,25.2,24.7,25.6,27]}},{"b":8,"v":{"total":[8.7,9.4,8.7,8.9,9.1,8.9,8.7,9.4,9.1,8.9,9.3,9.3,10,8.6,9.4],"script":[7.2,7.6,6.6,7.4,7.3,7.3,6.7,7.2,6.8,7.4,7.1,7.5,7.7,6.9,7.3],"paint":[0.2,1.6,1.4,0.2,0.6,1.4,0.8,1.3,2.1,0.8,1.9,1,1.2,0.9,1.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[38.3]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"b":1,"v":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"b":2,"v":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"b":3,"v":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"b":4,"v":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"b":6,"v":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"b":7,"v":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"b":8,"v":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.58]}},{"b":13,"v":{"DEFAULT":[12.47]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.2]}}]}, +{"f":132,"b":[{"b":0,"v":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"b":2,"v":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"b":4,"v":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"b":5,"v":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"b":6,"v":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"b":7,"v":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"b":8,"v":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.75]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[12.09]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, +{"f":133,"b":[{"b":0,"v":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"b":1,"v":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"b":2,"v":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"b":3,"v":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"b":4,"v":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"b":5,"v":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"b":6,"v":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"b":7,"v":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"b":8,"v":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.37]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":134,"b":[{"b":0,"v":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"b":1,"v":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"b":2,"v":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"b":3,"v":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"b":4,"v":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"b":5,"v":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"b":6,"v":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"b":7,"v":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"b":8,"v":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.05]}},{"b":11,"v":{"DEFAULT":[1.99]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.8]}}]}, +{"f":135,"b":[{"b":0,"v":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"b":1,"v":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"b":2,"v":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"b":3,"v":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"b":4,"v":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"b":5,"v":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"b":6,"v":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"b":7,"v":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"b":8,"v":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.41]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.45]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[42.7]}}]}, +{"f":136,"b":[{"b":0,"v":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"b":1,"v":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"b":2,"v":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"b":3,"v":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"b":4,"v":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"b":5,"v":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"b":6,"v":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"b":7,"v":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.32]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, +{"f":137,"b":[{"b":0,"v":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"b":1,"v":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"b":2,"v":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"b":3,"v":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"b":4,"v":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"b":5,"v":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"b":6,"v":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"b":7,"v":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"b":8,"v":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.88]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[28.67]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[82.6]}}]}, +{"f":138,"b":[{"b":0,"v":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"b":1,"v":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"b":2,"v":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"b":3,"v":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"b":4,"v":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"b":5,"v":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"b":6,"v":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"b":7,"v":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"b":8,"v":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.24]}},{"b":11,"v":{"DEFAULT":[4.28]}},{"b":12,"v":{"DEFAULT":[1.22]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[81.1]}}]}, +{"f":139,"b":[{"b":0,"v":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"b":1,"v":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"b":2,"v":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"b":3,"v":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"b":4,"v":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"b":5,"v":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"b":6,"v":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"b":7,"v":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"b":8,"v":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.12]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[22.25]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[62.8]}}]}, +{"f":140,"b":[{"b":0,"v":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"b":1,"v":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"b":2,"v":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"b":3,"v":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"b":4,"v":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"b":5,"v":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"b":6,"v":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"b":7,"v":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"b":8,"v":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[31.64]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[85.3]}}]}, +{"f":141,"b":[{"b":0,"v":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"b":1,"v":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"b":2,"v":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"b":4,"v":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"b":5,"v":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"b":6,"v":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"b":7,"v":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"b":8,"v":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.03]}},{"b":11,"v":{"DEFAULT":[3.06]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.6]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[65]}}]}, +{"f":142,"b":[{"b":0,"v":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"b":1,"v":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"b":2,"v":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"b":3,"v":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"b":4,"v":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"b":5,"v":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"b":6,"v":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"b":7,"v":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"b":8,"v":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[23.32]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, +{"f":143,"b":[{"b":0,"v":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"b":1,"v":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"b":2,"v":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"b":3,"v":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"b":5,"v":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"b":6,"v":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"b":7,"v":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"b":8,"v":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.97]}},{"b":12,"v":{"DEFAULT":[1.83]}},{"b":13,"v":{"DEFAULT":[13.92]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, +{"f":144,"b":[{"b":0,"v":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"b":1,"v":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"b":2,"v":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"b":3,"v":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"b":4,"v":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"b":5,"v":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"b":6,"v":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"b":7,"v":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"b":8,"v":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.59]}},{"b":12,"v":{"DEFAULT":[4.95]}},{"b":13,"v":{"DEFAULT":[47.09]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[255.9]}}]}, +{"f":145,"b":[{"b":0,"v":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"b":2,"v":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"b":3,"v":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"b":4,"v":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"b":5,"v":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"b":6,"v":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"b":7,"v":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"b":8,"v":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.56]}},{"b":11,"v":{"DEFAULT":[6.83]}},{"b":12,"v":{"DEFAULT":[5.13]}},{"b":13,"v":{"DEFAULT":[48.33]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[262.2]}}]}, +{"f":146,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, +{"f":147,"b":[]}, +{"f":148,"b":[]}, +{"f":149,"b":[]}, +{"f":150,"b":[]}, +{"f":151,"b":[]}, +{"f":152,"b":[]}, +{"f":153,"b":[]}, +{"f":154,"b":[]}, +{"f":155,"b":[]}, +{"f":156,"b":[]}, +{"f":157,"b":[]}, +{"f":158,"b":[]}, +{"f":159,"b":[]}, +{"f":160,"b":[]}, +{"f":161,"b":[]}, +{"f":162,"b":[]}, +{"f":163,"b":[]}, +{"f":164,"b":[]}, +{"f":165,"b":[]}, +{"f":166,"b":[]}, +{"f":167,"b":[]}, +{"f":168,"b":[]}, +{"f":169,"b":[]}, +{"f":170,"b":[]}, +{"f":171,"b":[]}, +{"f":172,"b":[]}, +{"f":173,"b":[]}, +{"f":174,"b":[]}, +{"f":175,"b":[]}, +{"f":176,"b":[]}, +{"f":177,"b":[]}, +{"f":178,"b":[]}, +{"f":179,"b":[]}, +{"f":180,"b":[]}, +{"f":181,"b":[]}, +{"f":182,"b":[]}, +{"f":183,"b":[]}, +{"f":184,"b":[]}, +{"f":185,"b":[]}, +{"f":186,"b":[]}, +{"f":187,"b":[]}, +{"f":188,"b":[]}, +{"f":189,"b":[]}, +{"f":190,"b":[]}, +{"f":191,"b":[]}, +{"f":192,"b":[]}, +{"f":193,"b":[]}, +{"f":194,"b":[]}, +{"f":195,"b":[]}, +{"f":196,"b":[]}, +{"f":197,"b":[]}, +{"f":198,"b":[]}, +{"f":199,"b":[]}, +{"f":200,"b":[]}, +{"f":201,"b":[]}, +{"f":202,"b":[]}, +{"f":203,"b":[]}, +{"f":204,"b":[]}, +{"f":205,"b":[]}, +{"f":206,"b":[]}, +{"f":207,"b":[]}, +{"f":208,"b":[]}, +{"f":209,"b":[]}, +{"f":210,"b":[]},]; export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.0-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v0.14.2-keyed","dir":"keyed/hellajs","keyed":true,"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.31-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/package-lock.json b/webdriver-ts/package-lock.json index 7fe480ce8..891f059f4 100644 --- a/webdriver-ts/package-lock.json +++ b/webdriver-ts/package-lock.json @@ -9,27 +9,27 @@ "version": "1.0.0", "license": "Apache-2.0", "dependencies": { - "chromedriver": "140.0.0", - "cross-env": "10.0.0", + "chromedriver": "141.0.0", + "cross-env": "10.1.0", "lighthouse": "12.8.2", - "playwright": "1.55.0", - "playwright-firefox": "1.55.0", - "playwright-webkit": "1.55.0", - "puppeteer-core": "24.19.0", + "playwright": "1.56.0", + "playwright-firefox": "1.56.0", + "playwright-webkit": "1.56.0", + "puppeteer-core": "24.23.0", "ramda": "0.31.3", - "selenium-webdriver": "4.35.0", + "selenium-webdriver": "4.36.0", "semver": "7.7.2", "yargs": "18.0.0" }, "devDependencies": { - "@types/node": "24.3.1", - "@types/ramda": "0.31.0", - "@types/selenium-webdriver": "4.1.28", + "@types/node": "24.7.0", + "@types/ramda": "0.31.1", + "@types/selenium-webdriver": "4.35.1", "@types/semver": "7.7.1", "@types/yargs": "17.0.33", "@vitest/coverage-v8": "^3.2.4", "ts-node": "^10.9.2", - "typescript": "5.9.2", + "typescript": "5.9.3", "vitest": "^3.2.4" } }, @@ -1347,12 +1347,12 @@ } }, "node_modules/@puppeteer/browsers": { - "version": "2.10.8", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.10.8.tgz", - "integrity": "sha512-f02QYEnBDE0p8cteNoPYHHjbDuwyfbe4cCIVlNi8/MRicIxFW4w4CfgU0LNgWEID6s06P+hRJ1qjpBLMhPRCiQ==", + "version": "2.10.10", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.10.10.tgz", + "integrity": "sha512-3ZG500+ZeLql8rE0hjfhkycJjDj0pI/btEh3L9IkWUYcOrgP0xCNRq3HbtbqOPbvDhFaAWD88pDFtlLv8ns8gA==", "license": "Apache-2.0", "dependencies": { - "debug": "^4.4.1", + "debug": "^4.4.3", "extract-zip": "^2.0.1", "progress": "^2.0.3", "proxy-agent": "^6.5.0", @@ -1934,12 +1934,12 @@ } }, "node_modules/@types/node": { - "version": "24.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.3.1.tgz", - "integrity": "sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==", + "version": "24.7.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.0.tgz", + "integrity": "sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw==", "license": "MIT", "dependencies": { - "undici-types": "~7.10.0" + "undici-types": "~7.14.0" } }, "node_modules/@types/pg": { @@ -1963,9 +1963,9 @@ } }, "node_modules/@types/ramda": { - "version": "0.31.0", - "resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.31.0.tgz", - "integrity": "sha512-1lWWZ/2YiNttGcIUxQwnvMuh55GIEbn/zlpzzEojAsbxquI/TXQZCRaXsfxG1CHjlqGoqxWePkvaM/5qYHNuvQ==", + "version": "0.31.1", + "resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.31.1.tgz", + "integrity": "sha512-Vt6sFXnuRpzaEj+yeutA0q3bcAsK7wdPuASIzR9LXqL4gJPyFw8im9qchlbp4ltuf3kDEIRmPJTD/Fkg60dn7g==", "dev": true, "license": "MIT", "dependencies": { @@ -1973,9 +1973,9 @@ } }, "node_modules/@types/selenium-webdriver": { - "version": "4.1.28", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-4.1.28.tgz", - "integrity": "sha512-Au7CXegiS7oapbB16zxPToY4Cjzi9UQQMf3W2ZZM8PigMLTGR3iUAHjPUTddyE5g1SBjT/qpmvlsAQLBfNAdKg==", + "version": "4.35.1", + "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-4.35.1.tgz", + "integrity": "sha512-mAt5iZv1D2/9Sb9eCdwxh5ePxbgwvJGTkD7hGdgZOjemABF8Qrde7H0qI5GKSp9f4+wGvOY/yNdBOver817/6A==", "dev": true, "license": "MIT", "dependencies": { @@ -2294,7 +2294,8 @@ "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" }, "node_modules/atomically": { "version": "2.0.3", @@ -2315,20 +2316,29 @@ } }, "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", + "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", + "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, "node_modules/b4a": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", - "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", - "license": "Apache-2.0" + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.3.tgz", + "integrity": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==", + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } }, "node_modules/balanced-match": { "version": "1.0.2", @@ -2336,22 +2346,23 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/bare-events": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.6.1.tgz", - "integrity": "sha512-AuTJkq9XmE6Vk0FJVNq5QxETrSA/vKHarWVBG5l/JbdCL1prJemiyJqUS0jrlXO0MftuPq4m3YVYhoNc5+aE/g==", - "license": "Apache-2.0", - "optional": true + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.7.0.tgz", + "integrity": "sha512-b3N5eTW1g7vXkw+0CXh/HazGTcO5KYuu/RCNaJbDMPI6LHDi+7qe8EmxKUVe1sUbY2KZOVZFyj62x0OEz9qyAA==", + "license": "Apache-2.0" }, "node_modules/bare-fs": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.2.3.tgz", - "integrity": "sha512-1aGs5pRVLToMQ79elP+7cc0u0s/wXAzfBv/7hDloT7WFggLqECCas5qqPky7WHCFdsBH5WDq6sD4fAoz5sJbtA==", + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.4.5.tgz", + "integrity": "sha512-TCtu93KGLu6/aiGWzMr12TmSRS6nKdfhAnzTQRbXoSWxkbb9eRd53jQ51jG7g1gYjjtto3hbBrrhzg6djcgiKg==", "license": "Apache-2.0", "optional": true, "dependencies": { "bare-events": "^2.5.4", "bare-path": "^3.0.0", - "bare-stream": "^2.6.4" + "bare-stream": "^2.6.4", + "bare-url": "^2.2.2", + "fast-fifo": "^1.3.2" }, "engines": { "bare": ">=1.16.0" @@ -2407,6 +2418,16 @@ } } }, + "node_modules/bare-url": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.2.2.tgz", + "integrity": "sha512-g+ueNGKkrjMazDG3elZO1pNs3HY5+mMmOet1jtKyhOaCnkLzitxf26z7hoAEkDNgdNmnc1KIlt/dw6Po6xZMpA==", + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "bare-path": "^3.0.0" + } + }, "node_modules/basic-ftp": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", @@ -2441,6 +2462,19 @@ "node": ">=8" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/chai": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.1.tgz", @@ -2487,14 +2521,14 @@ } }, "node_modules/chromedriver": { - "version": "140.0.0", - "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-140.0.0.tgz", - "integrity": "sha512-mv41C2fi4YX27muRMWP035HJUnKatu7gMJqBcVD1tSmufWDxDy0m38YaieKG3pa2aAIYNVhlXqiOnHkvnqNMcw==", + "version": "141.0.0", + "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-141.0.0.tgz", + "integrity": "sha512-w0U5jyWlLaRHV+dhaSikDz4x0qOwZcbles2HBu4oRdd+Eq7M43Uns4eoP/6dKu9Uc5ppcK9gA/E9GHROGXhgPg==", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { "@testim/chrome-version": "^1.1.4", - "axios": "^1.7.4", + "axios": "^1.12.0", "compare-versions": "^6.1.0", "extract-zip": "^2.0.1", "proxy-agent": "^6.4.0", @@ -2509,9 +2543,9 @@ } }, "node_modules/chromium-bidi": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-8.0.0.tgz", - "integrity": "sha512-d1VmE0FD7lxZQHzcDUCKZSNRtRwISXDsdg4HjdTR5+Ll5nQ/vzU12JeNmupD6VWffrPSlrnGhEWlLESKH3VO+g==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-9.1.0.tgz", + "integrity": "sha512-rlUzQ4WzIAWdIbY/viPShhZU2n21CxDUgazXVbw4Hu1MwaeUSEksSeM6DqPgpRjCLXRk702AVRxJxoOz0dw4OA==", "license": "Apache-2.0", "dependencies": { "mitt": "^3.0.1", @@ -2611,6 +2645,7 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -2651,9 +2686,9 @@ "license": "MIT" }, "node_modules/cross-env": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-10.0.0.tgz", - "integrity": "sha512-aU8qlEK/nHYtVuN4p7UQgAwVljzMg8hB4YK5ThRqD2l/ziSnryncPNn7bMLt5cFYsKVKBh8HqLqyCoTupEUu7Q==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-10.1.0.tgz", + "integrity": "sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==", "license": "MIT", "dependencies": { "@epic-web/invariant": "^1.0.0", @@ -2697,9 +2732,9 @@ } }, "node_modules/debug": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", - "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -2757,6 +2792,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -2790,6 +2826,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", @@ -2818,6 +2868,24 @@ "node": ">=8.6" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-module-lexer": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", @@ -2825,6 +2893,33 @@ "dev": true, "license": "MIT" }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/esbuild": { "version": "0.25.8", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz", @@ -2950,6 +3045,15 @@ "node": ">=0.10.0" } }, + "node_modules/events-universal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz", + "integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==", + "license": "Apache-2.0", + "dependencies": { + "bare-events": "^2.7.0" + } + }, "node_modules/expect-type": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.2.tgz", @@ -3007,15 +3111,16 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", - "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], + "license": "MIT", "engines": { "node": ">=4.0" }, @@ -3054,12 +3159,15 @@ } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" }, "engines": { @@ -3115,6 +3223,43 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stream": { "version": "5.2.0", "license": "MIT", @@ -3162,6 +3307,18 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -3177,6 +3334,33 @@ "node": ">=8" } }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", @@ -3665,6 +3849,15 @@ "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==", "license": "Apache-2.0" }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/metaviewport-parser": { "version": "0.3.0", "license": "MIT" @@ -3673,6 +3866,7 @@ "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -3681,6 +3875,7 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -3924,12 +4119,12 @@ } }, "node_modules/playwright": { - "version": "1.55.0", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.55.0.tgz", - "integrity": "sha512-sdCWStblvV1YU909Xqx0DhOjPZE4/5lJsIS84IfN9dAZfcl/CIZ5O8l3o0j7hPMjDvqoTF8ZUcc+i/GL5erstA==", + "version": "1.56.0", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.56.0.tgz", + "integrity": "sha512-X5Q1b8lOdWIE4KAoHpW3SE8HvUB+ZZsUoN64ZhjnN8dOb1UpujxBtENGiZFE+9F/yhzJwYa+ca3u43FeLbboHA==", "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.55.0" + "playwright-core": "1.56.0" }, "bin": { "playwright": "cli.js" @@ -3942,9 +4137,9 @@ } }, "node_modules/playwright-core": { - "version": "1.55.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.55.0.tgz", - "integrity": "sha512-GvZs4vU3U5ro2nZpeiwyb0zuFaqb9sUiAJuyrWpcGouD8y9/HLgGbNRjIph7zU9D3hnPaisMl9zG9CgFi/biIg==", + "version": "1.56.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.56.0.tgz", + "integrity": "sha512-1SXl7pMfemAMSDn5rkPeZljxOCYAmQnYLBTExuh6E8USHXGSX3dx6lYZN/xPpTz1vimXmPA9CDnILvmJaB8aSQ==", "license": "Apache-2.0", "bin": { "playwright-core": "cli.js" @@ -3954,13 +4149,13 @@ } }, "node_modules/playwright-firefox": { - "version": "1.55.0", - "resolved": "https://registry.npmjs.org/playwright-firefox/-/playwright-firefox-1.55.0.tgz", - "integrity": "sha512-AZ3zMZOvwszcvHG8+Ymtq1NHIdUOChdBvvzjt6t8SLLtpl/mpfdNO04Y6WWku1EEd2/4p4/9acJAneXusm9kmQ==", + "version": "1.56.0", + "resolved": "https://registry.npmjs.org/playwright-firefox/-/playwright-firefox-1.56.0.tgz", + "integrity": "sha512-ZxvGUiANK1kgVFnB/BTU6VTF5b5aIMdhFeqET8+7xUj3tuMrc9u5toVWPwAFmxOH+Pxik6gQxyU0AZNR32h6JA==", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.55.0" + "playwright-core": "1.56.0" }, "bin": { "playwright": "cli.js" @@ -3970,13 +4165,13 @@ } }, "node_modules/playwright-webkit": { - "version": "1.55.0", - "resolved": "https://registry.npmjs.org/playwright-webkit/-/playwright-webkit-1.55.0.tgz", - "integrity": "sha512-c9ht0iB8LuyLApc9ZI2D7xHVWC3rSunbbXWSnBWsR1E+Fiz4rVarMwU+mVt0bU6o20LpRxTOXQKKk26sU2WVyQ==", + "version": "1.56.0", + "resolved": "https://registry.npmjs.org/playwright-webkit/-/playwright-webkit-1.56.0.tgz", + "integrity": "sha512-4PyXRrZRxIedII/Eg/hOKW410fOJc1layacpxe+O/5pi01QMKGfhbWaMP7TcPFBpxUGNXZDWn+Va4pPP0TbQRg==", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.55.0" + "playwright-core": "1.56.0" }, "bin": { "playwright": "cli.js" @@ -4106,16 +4301,17 @@ } }, "node_modules/puppeteer-core": { - "version": "24.19.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.19.0.tgz", - "integrity": "sha512-qsEys4OIb2VGC2tNWKAs4U0mnjkIAxueMOOzk2nEFM9g4Y8QuvYkEMtmwsEdvzNGsUFd7DprOQfABmlN7WBOlg==", + "version": "24.23.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.23.0.tgz", + "integrity": "sha512-yl25C59gb14sOdIiSnJ08XiPP+O2RjuyZmEG+RjYmCXO7au0jcLf7fRiyii96dXGUBW7Zwei/mVKfxMx/POeFw==", "license": "Apache-2.0", "dependencies": { - "@puppeteer/browsers": "2.10.8", - "chromium-bidi": "8.0.0", - "debug": "^4.4.1", - "devtools-protocol": "0.0.1495869", + "@puppeteer/browsers": "2.10.10", + "chromium-bidi": "9.1.0", + "debug": "^4.4.3", + "devtools-protocol": "0.0.1508733", "typed-query-selector": "^2.12.0", + "webdriver-bidi-protocol": "0.3.6", "ws": "^8.18.3" }, "engines": { @@ -4123,9 +4319,9 @@ } }, "node_modules/puppeteer-core/node_modules/devtools-protocol": { - "version": "0.0.1495869", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1495869.tgz", - "integrity": "sha512-i+bkd9UYFis40RcnkW7XrOprCujXRAHg62IVh/Ah3G8MmNXpCGt1m0dTFhSdx/AVs8XEMbdOGRwdkR1Bcta8AA==", + "version": "0.0.1508733", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1508733.tgz", + "integrity": "sha512-QJ1R5gtck6nDcdM+nlsaJXcelPEI7ZxSMw1ujHpO1c4+9l+Nue5qlebi9xO1Z2MGr92bFOQTW7/rrheh5hHxDg==", "license": "BSD-3-Clause" }, "node_modules/puppeteer-core/node_modules/ws": { @@ -4255,9 +4451,9 @@ "license": "MIT" }, "node_modules/selenium-webdriver": { - "version": "4.35.0", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.35.0.tgz", - "integrity": "sha512-Baaeiuyu7BIIsSYf0SI7Mi55gsNmdI00KM0Hcofw1RnAY+0QEVpdh5yAxueDxgTZS8vcbGZFU0NJ6Qc1riIrLg==", + "version": "4.36.0", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.36.0.tgz", + "integrity": "sha512-rZGqjXiqNVL6QNqKNEk5DPaIMPbvApcmAS9QsXyt5wT3sfTSHGCh4AX/YKeDTOwei1BOZDlPOKBd82WCosUt9w==", "funding": [ { "type": "github", @@ -4272,8 +4468,8 @@ "dependencies": { "@bazel/runfiles": "^6.3.1", "jszip": "^3.10.1", - "tmp": "^0.2.3", - "ws": "^8.18.2" + "tmp": "^0.2.5", + "ws": "^8.18.3" }, "engines": { "node": ">= 20.0.0" @@ -4437,16 +4633,14 @@ "license": "MIT" }, "node_modules/streamx": { - "version": "2.22.1", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.1.tgz", - "integrity": "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==", + "version": "2.23.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.23.0.tgz", + "integrity": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==", "license": "MIT", "dependencies": { + "events-universal": "^1.0.0", "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" - }, - "optionalDependencies": { - "bare-events": "^2.2.0" } }, "node_modules/string-width": { @@ -4544,9 +4738,9 @@ } }, "node_modules/tar-fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.0.tgz", - "integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", + "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", "license": "MIT", "dependencies": { "pump": "^3.0.0", @@ -4697,9 +4891,10 @@ } }, "node_modules/tmp": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", - "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "license": "MIT", "engines": { "node": ">=14.14" } @@ -4789,9 +4984,9 @@ } }, "node_modules/typescript": { - "version": "5.9.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", - "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", "bin": { @@ -4803,9 +4998,9 @@ } }, "node_modules/undici-types": { - "version": "7.10.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.10.0.tgz", - "integrity": "sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==", + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.14.0.tgz", + "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", "license": "MIT" }, "node_modules/util-deprecate": { @@ -5003,6 +5198,12 @@ } } }, + "node_modules/webdriver-bidi-protocol": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/webdriver-bidi-protocol/-/webdriver-bidi-protocol-0.3.6.tgz", + "integrity": "sha512-mlGndEOA9yK9YAbvtxaPTqdi/kaCWYYfwrZvGzcmkr/3lWM+tQj53BxtpVd6qbC6+E5OnHXgCcAhre6AkXzxjA==", + "license": "Apache-2.0" + }, "node_modules/when-exit": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/when-exit/-/when-exit-2.1.4.tgz", diff --git a/webdriver-ts/package.json b/webdriver-ts/package.json index ce22968cb..8a82e57d8 100644 --- a/webdriver-ts/package.json +++ b/webdriver-ts/package.json @@ -21,26 +21,26 @@ "author": "", "license": "Apache-2.0", "devDependencies": { - "@types/node": "24.3.1", - "@types/ramda": "0.31.0", - "@types/selenium-webdriver": "4.1.28", + "@types/node": "24.7.0", + "@types/ramda": "0.31.1", + "@types/selenium-webdriver": "4.35.1", "@types/semver": "7.7.1", "@types/yargs": "17.0.33", "@vitest/coverage-v8": "^3.2.4", "ts-node": "^10.9.2", - "typescript": "5.9.2", + "typescript": "5.9.3", "vitest": "^3.2.4" }, "dependencies": { - "chromedriver": "140.0.0", - "cross-env": "10.0.0", + "chromedriver": "141.0.0", + "cross-env": "10.1.0", "lighthouse": "12.8.2", - "playwright": "1.55.0", - "playwright-firefox": "1.55.0", - "playwright-webkit": "1.55.0", - "puppeteer-core": "24.19.0", + "playwright": "1.56.0", + "playwright-firefox": "1.56.0", + "playwright-webkit": "1.56.0", + "puppeteer-core": "24.23.0", "ramda": "0.31.3", - "selenium-webdriver": "4.35.0", + "selenium-webdriver": "4.36.0", "semver": "7.7.2", "yargs": "18.0.0" } diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index c27a85587..94ef759cb 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76.8,77.3,78.4,78.1,77.5,78.6,78.8,77.2,78.3,77.4,78.3,77.2,77.3,78.8,78.3],"script":[53.1,52.8,53.3,54.2,53.6,54.3,54,52.5,54.2,53.1,53.9,52.7,53.4,54.2,54.4],"paint":[23.2,24,24.6,23.4,23.4,23.8,24.3,24.1,23.6,23.8,23.9,23.9,23.5,24.1,23.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95,94.4,95.8,95.8,96.3,96.3,95.7,95.7,96,96.4,96.2,97.6,97.7,95.8,96.7],"script":[69.7,69.6,70.9,70.7,71.2,71.2,70.7,70.9,70.9,71.2,71,71.6,72.1,70.8,71.5],"paint":[24.8,24.3,24.4,24.6,24.6,24.6,24.4,24.4,24.6,24.6,24.7,25.5,25.1,24.5,24.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,15.5,15.5,15.4,15.9,15.6,15.5,17.7,16.2,15.9,15.9,17.3,17.4,15.3,16],"script":[3.8,3.4,4.2,4.2,4,3.9,3.7,4.3,3.9,3.9,4.3,4.5,4.2,4,3.9],"paint":[10,10.6,9.9,9.8,10.4,10.2,10.7,11.8,10.3,10,9.8,11.2,11.9,9.5,10.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[30.3,29,27.8,29.5,30,31.2,29.4,29.7,29.2,29.5,29.7,30.6,30.3,30,28.6,28.8,31.5,29.5,29.3,28.2,29.8,29.5,28.7,30.4,29.5],"script":[26.7,25.7,25.2,26.2,26.4,26.5,25.7,26.4,25.6,26.1,26.8,26.6,26.6,26.8,25.3,25.8,26.9,26.2,26.6,25.5,26.4,26,26.2,26.7,26.2],"paint":[1.8,2.7,1.4,2.7,2.1,3.3,2.8,1.7,2.3,2.1,1.6,3,2.5,1.7,1.7,2.3,2.5,1.9,1.1,1.6,2.4,2,1.6,3,2.2]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.6,25.7,26.3,25.2,25.7,26.9,25.4,26.6,26.9,26.6,26.4,26.7,26.4,26,26.5],"script":[9.8,9.8,9.6,9.5,9.3,10.1,9.3,10.3,10.1,9.9,9.7,9.3,9.4,9.6,10.8],"paint":[15.2,14.3,15,14.7,14,14.1,14.9,14.7,15.3,15.2,15,14.5,15.6,15,14.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.3,17.6,18.2,17.7,18.2,18.4,18,18.8,18,17.9,18.1,17.7,18.8,18.2],"script":[6.6,6.2,6.4,6.6,6.3,6.6,6.5,6.5,6.6,6.6,6.4,6.5,6.5,6.6,6.7],"paint":[10.2,11.1,10.6,10.9,10.8,10.7,11.1,10.8,11.1,10.8,10.9,11.1,10.2,11.5,10.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[646.5,648.1,658.3,652.2,662.6,649.9,664,660.7,650.4,669.5,670.6,782.5,653.2,668,676.5],"script":[410.3,412,421.6,416.9,425.5,416.1,428.3,423,416.4,434.4,426.5,501.1,418.9,429.2,432.5],"paint":[227.5,227.4,228,226.7,228.1,225.3,227,228.6,225.4,226.1,235.3,272.8,225.8,229.9,235.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.8,89.3,87.7,87.8,87.8,89.9,88.3,89.9,89.5,88.5,88.9,88.5,89.9,89.5,89.6],"script":[58.5,60.1,58.6,59.1,58.7,60.7,59,60.7,60,59.7,59.7,59.7,59.4,60.5,60.6],"paint":[28.2,28.2,28,27.6,28.1,28.1,28.2,28.2,28.4,27.7,28.2,27.8,29.1,28,28]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58,61.5,57.5,57.1,60.6,60.3,58.8,68.2,59.6,56.2,59.7,57.7,58.8,61,56.8],"script":[55.8,59.1,55.3,55.7,59.3,58.1,57.1,66.1,57.6,53.9,57.8,55.6,57,59.4,55.4],"paint":[1.2,2.3,2,0.3,0.3,1.4,0.9,0.9,1.1,1.4,1.7,1.9,1.6,1.3,0.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7804546356201172]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.701602935791016]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.71019172668457]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5199708938598633]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.9317398071289]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.2,34.9,34.6,34.8,34.7,35.9,36.2,35,34.5,35.3,34.8,34.6,35.1,34.5,34.7],"script":[12,12.5,12.3,12.3,12.2,12.6,12.8,12.2,12.2,12.7,12.2,12.2,12.7,11.9,12.2],"paint":[21.5,21.8,21.7,22,21.9,22.7,22.8,22.2,21.7,21.9,22,21.8,21.8,22,22]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.2,41.8,41.5,41.6,42,42.2,41.9,41.3,42.2,41.6,41.4,41.7,41.5,41.8,41.7],"script":[19,19,18.6,18.8,18.9,19.1,19,18.6,19.5,18.9,18.7,18.8,18.9,19.1,19],"paint":[22.6,22.1,22.2,22.2,22.5,22.5,22.4,22,22.2,22.1,22.1,22.3,22,22.1,22.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.4,19.1,19.6,19,19.9,19,19.2,21.2,18.9,20.2,19.4,19.9,19.1,17.8,19.7],"script":[7.5,7,6.9,7.1,7.7,7,6.8,7.7,7.1,7.5,7,7.4,7.6,6.9,7.4],"paint":[10.7,8.9,9.8,9.1,10.1,9.9,10.3,11.3,10.1,10.8,10.9,10.5,9.7,9.7,11.4]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,9,8.6,9.2,9.5,9.5,10.5,8.5,10.8,8.5,8.5,8.3,9.4,9,8.8,9.8,9.5,9.1,9.1,8.8,9.5,9.4,8.8,9,9.1],"script":[6.1,6.2,5.3,6.4,5.7,6.5,7.1,5.8,7,6.1,5.8,5.7,6.2,5.8,6,6.9,6.6,5.8,6,5.8,5.8,6.6,6,5.6,5.5],"paint":[2.8,1.2,1.6,1.3,2.5,1.9,0.8,1.2,3,2.1,1,1.3,1.9,1.2,1,1.1,1.9,1.3,1.3,1.9,2.1,1.9,1.5,1.9,2.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[21.6,20.7,21.5,22.4,22.5,22.1,21.4,21.3,22,20.4,22.6,22.3,22.4,21.2,21.9],"script":[6.7,7.2,7,7.3,7.2,6.6,6,6.1,7.3,6.1,7.2,7.2,6.1,6.2,6.7],"paint":[14.1,11.7,12.6,12.9,14,13.6,13.8,13.2,12.4,12,13,14,13.4,13,13.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[71.8,71.1,73.2,70.3,71,71.6,69.7,71,70.8,69.5,70.3,70.1,72,70.5,71.2],"script":[25.6,25.6,25.6,25.5,26.2,25.8,25.1,26,25.2,25.4,25.5,25.3,25.3,25.9,25.3],"paint":[44.8,44.1,46,43,43.4,44.5,43.1,43.6,43.9,42.8,43.6,43.5,45.1,43,44.2]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[340,338.8,338.4,340.5,340.2,340.4,339.2,338.9,341.2,342.8,342.2,339.3,343.4,340.2,342.1],"script":[117.2,117.5,115.3,116.2,117.5,118.1,117.5,117.6,118.8,120.6,117.8,117.4,118.7,117.5,117.2],"paint":[215.1,213.7,215.5,215.7,214.9,214.6,214.1,213.6,214.6,214.5,216.1,214.2,216.5,214.7,216.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.2,39.8,40.8,40.3,40.5,40.8,39.9,40.3,40.5,40.8,40.4,40.7,40.1,40.1,40.6],"script":[14.2,14,14.4,14.1,14.4,14.3,13.8,14.2,14.1,14.2,14.1,14.4,14.1,14.1,14.6],"paint":[25,24.8,25.4,25.2,25.2,25.4,25.1,25,25.3,25.6,25.3,25.3,25,25,25]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,15.5,13.7,15.1,13.1,14.7,14,13.7,14.3,14.3,13.4,13.8,14.1,14.1,13.8],"script":[12.2,12.8,11.8,12.5,11.6,12.3,11.7,11.3,12.7,12.4,11.8,11.7,11.7,11.7,12.1],"paint":[1.1,1.6,0.9,1.7,0.3,1,1.2,0.8,0.6,1.7,0.2,1,1.8,1.4,0.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5480680465698242]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.554281234741211]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.273308753967285]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.8753814697265625]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.40983867645264]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[29.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,33.1,32.2,32,32.5,32.7,32.4,32,32,32.1,33.2,32.2,32.9,32.8,32.4],"script":[5.7,6,5.4,5.6,5.8,6.2,5.6,5.9,5.7,5.9,6,6,6,6.1,5.6],"paint":[22.7,23.7,23.3,22.9,23.1,23,23.3,22.6,23,22.8,23.7,22.7,23.3,23.3,23.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.8,38.3,37.9,37.5,38.1,37.7,38.7,37.8,37.9,38.1,38.2,37.9,38.8,38.2,37.4],"script":[11.7,11.7,11.6,11.6,11.7,11.7,12,11.6,11.7,11.9,11.9,12,11.9,11.7,11.3],"paint":[23.5,23.1,22.8,22.6,22.8,22.6,23.2,22.9,22.8,22.8,22.8,22.6,23.3,22.9,22.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.8,11.7,12.9,11.7,11.5,11.2,12.5,13.1,11.3,12.2,13,11.5,11.5,11.4],"script":[1.5,1.4,1.3,1.2,1.2,1.4,1.5,1.5,1.7,1.7,1.7,1.3,1.2,0.6,1.1],"paint":[10.2,9.3,7.5,10,9.5,9,9.2,9,10,8.7,9.5,9.4,8.8,9.6,8.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.6,4.1,3.5,4.1,3.3,2.8,3,3.2,3.6,3.3,4.2,3.9,3.1,4.3,3.5,3.7,3.5,3.2,3.2,3.5,3.8,2.6,4,3.8],"script":[1.2,1.3,1.2,1.3,1.4,0.6,0.6,1.2,0.9,1.2,1.1,1.2,0.9,1,1.1,0.9,1.2,1.1,0.9,0.3,0.6,1.2,0.9,1.6,1.1],"paint":[1.8,2.1,2.8,1.4,1.8,2.5,1.3,1.3,1.7,1.6,1.8,1.3,1.8,1.2,2.6,2.5,2.3,2.3,2.1,2.8,2.6,1.7,1.6,1.7,2.6]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,16,15.2,14.8,15.4,16.4,14.5,15.8,14.3,14.2,14.9,14.1,16.2,14],"script":[0.8,1.4,1.4,1,0.9,1.7,0.7,1.3,1.8,1,1.5,1.3,1,1.7,0.9],"paint":[12.9,12.5,12.5,13,13.2,12.2,13.8,12.7,12.2,12.7,11.7,12,12.2,13.4,12.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.9,11.2,11.2,11.4,11.9,12,11.1,11.4,11.7,11.1,11.6,11.3,11.5,11.2],"script":[0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.7,0.7,0.8],"paint":[10.3,10.3,10.1,9.4,10.4,10.8,10.5,9.6,10.3,10.2,9.4,10.4,9.9,10.2,9.7]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.8,347.3,347.5,349,347.9,349.1,345.7,348.4,349.1,347.3,346.9,347.7,347.3,347.2,350],"script":[67.7,67.6,69,68.3,68.6,69.1,67.3,68.6,68.6,67.6,67.4,67.8,67.4,68,68.7],"paint":[227.9,227.5,226.7,228.9,227.5,227.6,226.6,228.1,228.9,228.4,227.7,228.4,228,227.4,230.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,37.2,36.9,36.1,36.6,36.8,36.8,37,37.6,37.4,37.5,37.6,36.2,36.7,36.8],"script":[5.3,5.5,5.8,5.4,5.7,5.4,5.7,5.5,5.5,5.9,5.6,5.6,5.5,5.5,5.6],"paint":[26.7,27.6,27.2,26.8,26.7,27.4,27.1,27.4,27.8,27.6,27.8,27.9,26.9,27.2,27.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.9,20.4,19.7,20.5,19.6,21.1,21.9,20.1,19.5,19.2,21.7,19.2,18.7,19.7,19.2],"script":[18.9,17.8,17.5,18.4,17.9,18,19.5,18.2,17.4,16.5,19.9,16.6,16.6,17.4,16.6],"paint":[1.1,1.3,1,0.9,0.5,1.9,1,0.9,1.9,1.6,0.6,1.6,1.3,0.8,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5130691528320312]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.736143112182617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.813131332397461]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.107969284057617]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.137581825256348]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.6,35.4,37.2,37.5,38.4,36.9,37.8,35.3,35.4,36,37.2,37.4,36.7,38,36.4],"script":[4.9,5.2,5.1,5.1,5.3,4.8,5.2,4.7,5.3,4.6,4.8,5.2,5,5.1,5.1],"paint":[22.3,22.3,22.1,22.2,21.9,22,22.2,22.3,22.1,21.8,22.2,22.5,21.5,21.7,22.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[41.8,39.3,36.7,38.6,38.9,36.8,36.1,37,41.8,39.2,37.6,36.2,40.2,37.2,40.3],"script":[9.6,9.5,9.4,9.5,9.4,9.6,8.9,9.6,9.5,9.3,9.8,9,9.9,9.3,9.8],"paint":[22.6,22.3,23,23.2,23.1,23.4,23.1,22.9,22.9,22.8,23.3,23.1,22.9,23.1,23.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,27.5,10.3,10.9,11.6,11.5,28,26.8,28.4,11,27.1,11.6,11.6,11.9,26.9],"script":[0.7,0.9,0.7,1.2,1.4,1.7,1.4,0.9,1.5,1.3,1,1.5,1.2,0.9,1.5],"paint":[9.9,9.6,9,8.7,9.5,8.6,9.7,9.3,10.8,9.6,9.7,9.6,9.9,9.7,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,3.7,3.7,3.7,3.6,3.5,3.7,2.9,3.7,3.4,3.7,4,3.7,3.7,3.5,4.1,4,4,3.8,3.3,3.5,3.9,3.5,3.2],"script":[1,1,0.9,1.4,1.4,1.1,1.2,1.7,1,1.1,1.4,1.3,1.7,0.7,1.4,1,2.2,1.5,1.8,1.4,1.6,1.4,1.5,1.1,1.5],"paint":[1.1,2.3,1.7,1.5,1.6,2.4,2.2,1.1,1.1,2,1.9,2.3,2.1,2.6,2,0.9,1.5,1.9,1.7,2.3,1.6,1.9,1.7,1.7,1.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,31.4,13.9,32.4,16.6,30.7,30.4,14.6,15.8,14.8,14.8,31.5,16.8,31.6],"script":[1.2,1.6,0.9,1,1.4,1.1,0.7,1.4,1.8,1.5,1.8,1.3,1.7,1,1.3],"paint":[10.6,12.5,14.4,12.8,14.5,13.4,13.9,12.9,12.4,13.5,12,11.4,13.1,14.8,14.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.5,10.6,15.4,12.1,12.8,11.9,11.9,13.5,12.9,11,11.9,15.5,12,12.9],"script":[0.7,0.6,0.7,0.8,1,0.7,0.7,0.7,0.7,1.2,0.7,0.7,1,0.7,0.6],"paint":[9,9.2,9,9.2,8.3,9,9.2,9.3,9,9.3,9.1,9.5,9.6,9.1,9.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.4,350.3,346.2,344.5,345.8,343.3,342.6,341.1,345.1,345.9,346.2,345.5,341.9,342.9,346.6],"script":[54.4,56.6,55.7,56.2,55.5,56.4,56.2,54.7,56.8,55.8,56.1,54.6,57.2,55.7,56],"paint":[235.9,234.2,234.1,234.2,234.5,232.6,232.3,233.9,234.5,234.2,233.9,236.2,232,233.9,233.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,41,40.3,40.5,41.1,40.9,41.1,40.3,40.1,40.2,40.5,40.3,39.8,40.2,40.7],"script":[5.4,5.3,5.4,5.1,5.3,5.3,5.3,5,5.3,5.1,5,5,5,5.3,5.4],"paint":[26.5,26.4,26,26.3,26.3,26.6,26,26.4,25.8,26.1,26.6,26.4,25.9,25.8,26.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.8,14.9,15,15,16.6,15,14.2,16.2,15.4,16.4,13.6,14.8,14.8,13.9,14.7],"script":[14.5,13,13,13.1,14.2,13.1,12.2,13.9,12.4,13.3,11.2,12.3,11.8,12.5,12.5],"paint":[1.5,0.6,1.5,1,1.8,0.9,0.4,1.1,2,0.9,1.7,1.2,1.7,0.3,0.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1247739791870117]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.668036460876465]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7355756759643555]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.707991600036621]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.677685737609863]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.6,31.2,30.8,30.3,30.3,30.9,30.4,30.9,30.6,30.9,30.2,29.9,30.6,30.5],"script":[4.8,4.7,5.1,4.6,4.7,4.7,4.8,4.7,4.7,4.5,4.8,4.5,4.5,4.7,4.6],"paint":[22.9,22.6,22.6,22.9,22.4,22.4,22.6,22.4,22.8,22.7,22.9,22.5,22.2,22.6,22.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.3,35.7,35.8,35.2,35.5,35.3,35.6,35.3,35.6,35.4,35.5,35.4,35.7,35.1,35.4],"script":[9.1,9.5,9.7,9.4,9.4,9.4,9.4,9.4,9.4,9.5,9.6,9.4,9.7,9.2,9.5],"paint":[22.9,22.9,22.6,22.5,22.6,22.4,22.9,22.4,22.8,22.5,22.5,22.6,22.6,22.5,22.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12.4,11.3,11.4,11.6,11,11.3,12.8,11.1,11.5,10.9,11.2,12.7,11.5,11.2],"script":[1.5,1.4,1.4,1.4,1.3,0.7,1,1.8,1.3,1,0.9,0.9,0.8,0.9,1.2],"paint":[9,9.7,8.4,8.7,8.9,9,9.3,9.8,8.4,9.5,8.1,8.8,10.4,9.6,8.9]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.6,3.5,3.4,3.3,3.7,2.9,4.1,3.7,3.4,3.5,2.6,3.7,3.6,3.6,3.1,3.8,3.9,4,3.7,3.9,4,3.2,3.4,3.4],"script":[0.9,0.9,0.3,0.9,1.1,1.2,1,2,1.4,0.9,1.2,1,1.1,1.5,0.6,0.9,0.6,1,1,1.1,1.1,1.1,1.1,0.6,0.6],"paint":[1.7,2.4,3.1,2.4,2.1,1.7,1.3,1.5,2,2.4,2.2,1,2.5,0.8,2.6,1.3,1.7,2.1,1.9,2,1.9,1.8,2,1.6,2.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,14.8,15.5,16.1,14.6,15.6,15,14.7,15,15.1,15,14,15.3,14.4,15],"script":[1.4,1,1.2,1.4,1.3,0.6,1.1,1,1.7,1.5,1.6,0.6,1.2,1.2,0.7],"paint":[13.3,12.6,12.8,13.2,12.4,14,13,12.2,11.6,11.2,12.6,11.2,12.5,11.9,13.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11.6,11,11.6,11.1,11.2,11.5,11.1,11.6,11.2,11.6,11.5,11.6,11.4],"script":[0.7,0.9,0.7,0.7,0.7,0.7,0.8,0.9,0.8,0.7,0.7,0.6,1,1,0.8],"paint":[9.5,9.9,10.2,10,10,9.7,9.5,10.2,9.6,10.6,10,10.1,9.6,9.7,10]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341,342.8,343.1,343.3,339.5,342.7,341.7,341.4,341.6,341.1,342.5,343,342.2,348,349.7],"script":[54.7,56,56.1,55.6,55.4,56.2,56.1,55.4,55.5,56.2,54.8,56.2,55.3,55.6,56.8],"paint":[234.7,234.7,235.2,235.2,232.5,234.5,233.8,233.6,234,233.1,234.9,235.3,234.2,237.9,238.8]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,34.4,35.4,35.5,34.5,35.1,36.2,34.7,35.5,34.5,34.6,34.7,35.3,34.9,35.3],"script":[5.1,4.8,5.2,5.2,4.9,5.1,5.2,5.3,5.6,4.8,4.9,5.3,5.2,5.3,5.2],"paint":[26.4,25.8,26.2,26.3,25.8,26.1,26.8,25.6,26,26,26.1,25.6,26.2,25.8,26.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.5,14.9,16.6,15.4,14.5,15.3,14.6,15.1,14.8,14.7,16.7,15.2,15.6,15.3,14.8],"script":[13.4,12.5,14.4,13.1,12.3,13.3,13.3,12.3,12.8,12.4,14.3,13.1,13.5,13,12.6],"paint":[2,1.4,1.9,1.4,0.6,1.3,0.3,1.2,1,1.1,1.1,0.3,1.1,1.3,1.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.124281883239746]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6573028564453125]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7305736541748047]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6972951889038086]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.674309730529785]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.2,32.5,32.8,32.6,32.9,32.5,32.2,32.8,32.5,32.4,32.6,32.7,32.4,32.8,32.7],"script":[5.8,5.9,5.8,5.9,6.1,6.1,5.7,5.9,6.1,5.8,5.7,5.8,5.6,6.1,5.9],"paint":[22.9,23.2,23.6,23.1,23.3,23,23,23.3,23,23.1,23.4,23.3,23.3,23.3,23.4]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.7,37.9,38.1,37.5,37.3,37.6,37.7,37.4,38.3,38.1,38.5,37.3,38,37.7,37.7],"script":[11.9,11.8,11.6,11.2,11.6,11.7,11.7,11.8,11.8,11.7,11.8,11.3,11.7,11.5,11.6],"paint":[23.2,22.6,23.1,23,22.3,22.5,22.5,22.3,23,22.9,23.2,22.6,22.8,22.8,22.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,12.1,12.5,12.1,12.7,11.8,12,11.9,13.4,12.5,12.8,12.8,11.5,11.5,13.3],"script":[1.6,1.9,1.6,1,1.3,1,1.8,1.6,2.3,1,2.3,1.3,1.4,1.4,1.8],"paint":[8.9,9.3,9.6,10.1,8.7,9.9,9.1,9.3,10.1,10.9,8.9,10.3,9.2,9.2,10.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.1,3.7,3.7,3.5,4.1,3.8,3.6,3.6,4.3,4.6,3.4,4.1,3.6,4.6,3.1,4.6,3.4,3.7,3.7,3.9,3.7,4.5,4.4,3],"script":[1.5,1.6,1,1.2,1.1,1.2,1.2,1.2,0.7,1.8,2,0.9,1.6,1.6,1.8,1.2,1.5,1.2,1.7,1.2,1.4,1,1.8,1.8,1.4],"paint":[1.2,2.4,1.7,1.4,1.8,2.8,2.2,1.4,2.7,2.2,1.4,1.4,2.2,1.8,2.6,1.1,2.1,2.1,1.9,1.6,1.7,1.9,2.5,1.9,1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.5,15.3,14,14.5,14.9,15.5,14.7,14.8,15.1,16,15.2,14.5,15],"script":[1.3,1.1,1,1.6,1.4,1.5,1.4,1.3,1,1.4,1.2,1,1.5,0.7,1.3],"paint":[14,12.8,14.2,13,11.6,11.1,12.7,13.1,12.8,11.2,13.3,14.3,12.7,12.8,11.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.4,13.4,13.7,13.4,13.9,13.3,13.5,13.4,13.3,13.4,14,13.1,14,12.8],"script":[1.4,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1,1.2],"paint":[11.8,11.5,10.7,11.4,11,11.4,11.3,10.8,11,11,11.1,11.6,10.9,11.8,10.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348.9,348.2,348.5,348.7,349.4,350.3,349.6,349.4,351.9,345.7,348.8,348.1,347.2,348.6,351.9],"script":[68.1,68.6,68,68.6,68.4,68.7,68.5,69.3,68.7,68.3,68.1,67.6,67.6,68.3,67.9],"paint":[228.1,227.6,229,228.4,228.4,230,229.7,227.9,230.3,226.1,228.9,228.5,227.6,228.2,227.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,36.6,37.5,36.8,36.9,37.1,36.5,37.3,37.9,37.5,36.3,37.1,36.5,37.2,37.9],"script":[5.8,5.6,5.8,5.9,5.6,5.6,5.5,5.6,5.6,5.7,5.5,5.7,5.4,5.8,5.7],"paint":[26.9,27.1,27.6,27,27.3,27.4,27.1,27.6,28.1,27.8,26.8,27.4,27.1,27.5,28]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,23.1,20.5,19.7,21,19.3,20.9,20.5,20.1,22.1,21.8,21.2,21.1,19.5,21.6],"script":[17.2,21.2,18.1,17,19.4,18.1,18.5,18,17.6,20.6,19.4,18.5,18.7,16.8,19.5],"paint":[0.8,0.3,1.3,2.5,0.3,0.4,1.5,1.2,1.3,0.3,1.8,2.4,1.3,1.5,1.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5228166580200195]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.828743934631348]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.853344917297363]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.118180274963379]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.39214515686035]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.7,38.9,39.4,37.8,38.6,37.3,38.7,37.8,36.9,38.6,37.4,38.4,38.3,37.8,38.2],"script":[5.1,5.2,5.2,5.1,5,4.9,5.2,5.2,5.1,5.2,5,5.1,5.2,5.1,5.1],"paint":[22.1,22.2,22.8,22.5,22.5,22.2,22.1,22.3,22.1,22.1,22.1,22,22.5,22.5,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.2,40.5,37.3,38,37.6,41.2,39.5,37.1,37.8,42.6,38.5,39.1,38.5,43.7],"script":[9.7,9.6,9.6,9.5,9.4,9.1,9.7,9.7,9.5,9.4,8.8,9.9,9.7,9.7,9.6],"paint":[22.8,22.4,23.3,23.3,22.8,23.1,22.9,22.5,23.1,22.9,22.4,23.3,23.2,22.5,23]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,11,12.1,11.9,13,11.8,12.3,28.2,27.2,11.9,27,11.8,26.8,11.7],"script":[1.6,1.6,0.8,1.2,2.2,2,1.9,1.6,1.6,1.6,1,0.9,3.1,1.5,2.1],"paint":[10.5,9.6,9.6,9.3,9.6,8.7,6.7,9.8,9.8,9.5,9.1,10.1,8.6,9.7,9.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.5,4.2,3.4,4.3,3.9,3.7,3.3,4.2,3.9,3.9,3.5,3.6,4.2,3.4,4,4,3,3.6,3.4,3.6,3.5,3.8,3.5,4.5,4.4],"script":[1,1.9,1.3,1.6,1.1,0.9,1.2,1.5,1,2,1,1.1,1.7,1.4,1.1,1.5,1,1,1.2,0.3,1.1,0.9,1,1.5,1.3],"paint":[1.5,2.2,2.1,2.4,2,2.1,1.2,2.2,1.6,1.8,1.6,2.1,2.3,1.7,2.8,2.4,1.8,1.6,2.1,3.1,1.5,1.7,1.4,2,3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.3,14.4,16,14.2,13.5,14.2,31.5,14.5,14.3,14.9,14.5,13.4,29,14.1,13.5],"script":[0.9,1.1,1.4,1.8,1.6,1.7,1.7,1.6,1.1,1.2,1.2,2,1.3,1.6,1.4],"paint":[12,12.5,14.5,11.9,11.6,12.1,13.8,12.4,12.3,12.3,13,11.3,11.6,12,10.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,12.3,11.7,15.3,14.2,14.7,16.2,13.9,14.4,14.7,15.2,14.7,14.6,11.6,11.4],"script":[1.1,0.9,0.9,1,1.1,1.1,1.6,1.2,1,1.2,1.1,1.1,1.5,1.1,0.8],"paint":[9.8,10.1,9.7,9.8,10.3,10.6,10.5,10.3,10.3,10.1,10.2,10.2,9.9,9.9,10.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[338.5,344.5,347.9,343.8,344.3,345.8,345.9,347.4,345.5,345.9,344.9,343.2,343.6,344,343.4],"script":[56.2,55.7,56.8,57.1,56.3,57.3,57.4,56.4,57.9,56.6,55.9,57.5,56.5,56.7,56.7],"paint":[232.3,232.6,234.5,233.2,231.4,233.7,234.5,234.8,234.8,234.8,234.4,234.1,232.8,232.5,233.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,39.7,40.7,40.8,41.5,40.8,41.1,40.6,41.1,40.4,41.5,40.2,41.4,40.5,40.7],"script":[5.4,5,5.4,5.5,5.4,5.4,5.6,5.3,5.3,5.3,5.3,5.2,5.8,5.5,5.5],"paint":[26.6,25.9,26.2,26.3,27,26.3,26.5,26.2,26.4,26.2,26.3,26.2,26.7,25.9,26.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,15.4,15.8,14.8,15.8,13.8,32.3,16.1,16.3,17.5,13.7,13.1,14.5,14.8,15.5],"script":[14,14.1,14.1,13.5,13.9,11.6,14.9,13.4,12.8,15.6,11.5,11.9,12.1,13.2,13.4],"paint":[1,0.7,1.1,1.3,1.7,1.6,0.7,2.5,2.1,1.6,1,1.2,1.2,0.3,1.1]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.130523681640625]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.716960906982422]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7943506240844727]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7830543518066406]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.90111541748047]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.6,32.4,33,32.8,33.5,32.3,32.2,32.9,32.3,32.6,31.7,32.4,32,32.7],"script":[6.2,6.1,5.8,6.3,6.2,6.3,6.3,6.1,6.1,6.1,5.8,5.5,6,5.8,6.2],"paint":[23.2,23.1,23.3,23.4,23.1,23.8,22.7,22.7,23.3,22.7,23.4,22.8,22.9,22.8,23]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.8,37,38.3,36.9,36.9,37.7,37.8,37,37.1,37.7,37.5,37.5,37,37.5,38.2],"script":[11.6,11.1,11.4,11,10.8,11.3,11.2,10.9,10.8,11.4,11.2,11.3,10.8,11.1,11.5],"paint":[22.8,22.5,23.4,22.5,22.8,23,23,22.8,22.9,22.9,22.9,22.8,22.8,22.9,23.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.2,12.1,11.9,11.3,11.6,11.7,11.9,11.5,11.8,12,11.2,11.7,12.1,12],"script":[1.2,1.2,1.7,1,1.1,0.7,1.3,0.8,1,1,1.1,1,0.9,1.5,1.2],"paint":[8.6,10,8.5,9.9,8.1,9.3,9.7,9,9.4,9.1,9,9,9.5,8.6,9.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.7,4.3,3.3,3.3,3.4,3.4,3.2,3.5,3.3,3.3,3.5,2.7,3.8,3.3,3.6,3.3,3.2,2.7,4,3.1,3.2,3.6,3.8,3.4],"script":[1.1,1.4,1.4,1,0.6,0.9,1.1,1,1.3,0.7,0.9,1.7,0.8,1.4,1.2,1.2,1.4,0.9,1,0.9,1.2,1.3,0.9,1.4,1.1],"paint":[1.4,2.1,2,2.1,1.8,1.2,1.5,1.6,1.5,2.5,2,1.1,1.1,1.8,1.9,2,1.2,1.4,1.6,2.9,1.1,1.8,1.6,1.5,2.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[124.5,126,124.9,123.4,128.6,122.9,128.1,123.9,126.3,125.5,122.3,122,124.3,124.7,123.4],"script":[21.6,24.3,23.7,22,22.2,21.9,23.3,21.7,25.2,21.3,21.1,22.4,21.3,22.5,22.2],"paint":[87.5,86.7,85.7,87.3,91.2,85.7,90.2,87.5,87.1,88.8,86,83.8,86.6,88.5,86.1]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,12.1,11.8,11.2,11.7,11.5,11.8,11.4,11.4,11.2,11.5,11.3,11,11.4,11.4],"script":[0.7,1,0.9,0.8,0.7,0.7,0.9,0.9,0.7,0.8,0.9,0.7,0.7,1,0.9],"paint":[9.7,10.4,10.3,9.8,10.3,10.4,10.1,9.9,9.9,9.4,10.1,9.9,9.7,9.8,9.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[349.7,351.1,350.7,353.7,353.9,353.4,350.7,351.9,353.3,353.8,351.2,353,354.3,351.1,350.8],"script":[71.7,71.4,70.7,70.9,71.3,71.5,71,71.4,71,71.3,71.1,71.7,71.2,71.9,71.3],"paint":[227.1,228.3,228.4,231.7,229.1,229.7,227.9,229,229.3,228.3,228.4,229.8,230.7,227.7,227.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,37.5,36.3,36.8,37.1,37.2,37.7,37.4,37.9,37.3,37.5,37.4,37.5,37.4,37.8],"script":[5.9,6,5.9,6.4,6.2,6,6,5.9,6,6,6.3,6,5.9,6.4,6],"paint":[26.7,27.4,26.6,26.6,26.9,27.3,27.5,27.6,27.7,27.3,27.2,27.4,27.6,27.1,27.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.6,21.3,22.4,21.1,21.2,23.3,22.4,21.9,21,22.3,24.3,22.3,21.2,21.2,22],"script":[21.3,19.4,19.8,19,18.9,21.1,19.8,20,19.4,20.2,21.9,20,19.1,19.3,19.9],"paint":[1.1,0.3,1.8,1.1,2.1,2,1.6,0.3,0.7,1.3,1.4,1.4,1.2,1,1.9]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5638313293457031]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.954111099243164]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.021417617797852]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4622535705566406]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.714426040649414]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[158.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.5,30.9,30.7,30.9,31.3,31.2,31.7,31,30.9,31.5,31.2,33,31.1,31.6],"script":[7.7,7.9,8.4,8.3,8.8,8.8,8.6,8.8,8.5,8.5,8.7,8.4,8.9,8.5,8.9],"paint":[21.9,21.9,21.9,21.8,21.5,22,22,22.4,21.9,21.8,22.1,22.1,23.4,22,22.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.9,36.4,35.8,35,35.7,35.5,36,35.6,36,35.3,36.1,35.6,35.4,35.2],"script":[12.4,11.8,13.4,12.9,12.8,13,13.1,13.3,13,12.8,13.1,13.1,12.8,12.9,12.6],"paint":[21.9,22.5,22.4,22.3,21.6,22.1,21.8,22,22.1,22.6,21.7,22.3,22.2,21.9,22]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.2,39.7,38.7,39.1,39.1,38.1,39.3,38.1,41,39.1,38.7,39.5,40.4,38.9,38.1],"script":[27.7,27.8,26.8,27.8,27.2,26.3,26.9,26.3,27.7,27.5,26.8,27,27.8,26.5,26.9],"paint":[10.8,10.2,10.1,8.9,10.1,9.9,10,8.9,11,9.6,9.4,10.3,10.2,10.9,9.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[31.4,29.9,29.6,30.2,31.5,29.8,30.5,31.3,30.1,30.3,29.5,31.5,29.8,30,31.1,29.2,31.4,30.6,29.2,29.3,29.4,29.8,30.3,30.4,29.8],"script":[28.2,26.8,26.5,26.3,27.8,26.5,26.9,27.7,26.5,27,26,27.7,26.4,26.4,27.5,26.3,27.6,27.2,26,26,26.1,26.7,26.8,27.1,26.4],"paint":[0.8,1.2,1.9,2.9,3.1,1.6,1.8,2.3,2.2,2.5,1.8,1.9,1.9,0.8,1.7,1.1,2.4,1.5,1.3,1.9,1.5,1.3,2.9,1.9,2.3]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42.8,41.6,40.9,41.4,40.9,41.5,42.7,42.5,39.9,41.3,42.8,40.3,41.5,41.3,43.1],"script":[27.9,27.2,27.1,26.7,26.6,27,27.5,26.9,25.5,26,27,25.7,27.2,26.1,27.4],"paint":[12.3,12.2,11.9,13.2,12.3,12.5,13.2,14.1,12.2,12.8,14,12.5,12.2,12.9,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[90.4,90.1,90.2,90.4,90.3,92.1,91.2,91,90.7,92,91.2,91.6,88.3,91.7,89.2],"script":[46.4,45.5,45.6,46.6,46.6,46.5,46.8,45.5,46.3,47.2,46.4,47.1,45.3,48,45.6],"paint":[42.6,43.3,43.4,42.5,42,44.6,43,44.5,42.9,43.4,43.4,42.8,41.4,42.5,42.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[305.4,308,312.4,312,313.3,313.4,314.9,311.6,313.9,312.1,314.2,313.6,312.6,312.7,315.6],"script":[80.5,81.3,87.8,87.4,88.1,88.2,88.2,86.2,87.4,88,88.4,88.3,87,88.2,87.8],"paint":[217.4,219.2,217.1,217,217.7,217.8,219.1,218.1,218.8,216.4,217.8,217.9,217.8,216.8,219.8]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.5,42.7,42.6,42.8,43.6,43.7,42.9,43.7,43.5,41.9,42.8,42.8,43.5,43.5,42.1],"script":[14.6,15,15.4,15.5,15.7,15.7,15.5,16,15.8,14.9,15.5,15.3,15.4,15.8,15.1],"paint":[25.8,26.6,26,26.1,26.8,27,26.2,26.6,26.7,25.9,26.2,26.5,27,26.6,25.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.6,13.7,13.4,13.6,13.7,12.8,13.3,13.5,13.7,13.9,13.9,13.3,13,13.2],"script":[11,11.8,11.1,11,11.4,11.2,11.2,11.3,10.9,11.8,11.6,11.9,11.2,10.9,10.6],"paint":[1.1,0.6,1,0.7,1.5,2.2,1,1.2,1.7,1.7,0.9,1.1,0.3,0.3,2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324434280395508]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.462996482849121]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.562638282775879]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.427117347717285]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.9520902633667]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67,68.2,71.6,66.7,67.1,68.8,69.1,68.8,67.9,69.6,67.6,71,67.3,64.7,68.1],"script":[37.4,37.4,36.9,37.3,36.7,38.2,38,39.3,37.6,37.5,37.7,36.6,37.2,37,37.1],"paint":[23.9,24.3,24.3,24.1,23.9,24.4,24,24.4,24.6,23.7,24.5,23.9,24.6,23.7,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70,69.5,73,75.6,71,69.2,72.4,72,68.4,71.6,71.5,69.6,71.4,68.7,69.2],"script":[41.6,41.4,41.3,41.7,40.5,40.8,40.3,41,41,42.4,41.5,42.4,41.9,41.2,40.8],"paint":[24,23.8,24,23.9,25.1,23.6,24.3,24.1,24.3,23.7,24,23.9,24.1,24.1,24.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.6,53.7,37.9,38.3,53.4,38.8,52,54.7,54.5,39.3,38.3,52.3,38.6,56.7,39.2],"script":[23.8,22.4,22.3,23.6,22.4,23.5,21.9,24,23.4,24.2,23.3,22.1,23.4,24.6,24],"paint":[13.7,12.9,13.5,13.8,13,13.3,12.5,13.4,13.9,13.3,12.5,13.8,12.9,14,13.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.3,11.2,11,11.9,10.9,11.4,10.6,10.7,10.5,16,11.4,11.4,11.1,11.9,14.1,10.7,10,10.7,10.4,11.6,10.4,10.8,11.3,10.6,11.7],"script":[6.6,6.8,5.9,7,6.6,6.2,6.5,6.8,6.9,7.5,6.3,6.2,7,7,6.6,6.8,6.2,6.1,6,7.9,5.5,5.8,5.7,5.6,6.8],"paint":[2.5,3.3,2.7,3.6,2.8,3.8,3.8,2.5,2.9,2,2.8,3.8,3.1,4.1,3.3,2.9,2.3,2.6,3.1,2.5,3.3,3.7,4.3,3,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[57.9,59.4,59.2,43.3,59.1,59.6,59.9,56.8,42.6,58.9,61,44.1,59.3,59.5,58.5],"script":[23.9,23.9,25,25.2,24,24.8,24.1,24.3,23.7,23.4,26.4,24.6,24.7,24.8,23.9],"paint":[17.8,17.8,17,16,17.4,17.3,17.8,16.4,16.2,17,15.8,17.4,17.1,16.2,17.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[73.1,69.2,69.3,69,68,68.3,69.3,68.7,69.9,69.1,70.9,69.8,68.9,68.8,72.5],"script":[19.5,18.8,19.2,18.5,18.8,18.4,19.5,19,19.1,19.3,19.6,19.1,18.6,19,18.6],"paint":[48.7,48.7,48.5,48.7,47.6,48.4,48.2,48.4,49,48.2,47.4,48.5,48.4,48.6,47.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[543.6,544.2,545.4,541,545.5,548.6,542.3,541,549.9,548.4,543.8,541.3,533.1,546.5,543.7],"script":[291.2,288.6,293.1,289.2,294.6,294.8,292.8,292.8,297,295.1,291,290.2,288.2,292.8,292.8],"paint":[247.3,250.4,247.2,246.8,245.6,248.8,244.1,243,248,248.1,247.9,245.9,239.7,248.8,245.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.9,81.2,81.9,79.7,79.7,82.9,79.8,80.9,79.8,79.9,86.2,79,79.1,79.5,78.7],"script":[44.4,45,44.5,44.8,45.6,46.4,45.2,45.9,45.6,45.3,46.9,45.3,44.9,45.4,44.9],"paint":[28.4,29.2,29.3,29.4,29.1,29.2,29,29.9,29.1,29.5,29.2,28.8,29.1,29.2,28.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.2,22.4,23.2,42,23.2,22.8,23.1,22.3,21.6,44.5,44,42.8,23.3,23.6,43.9],"script":[18.2,18.8,19.6,19,18.6,19.1,19.1,19,18.4,19.3,19.8,18.7,18.7,19,20.5],"paint":[2.9,3.5,3.5,2.5,2.5,3,2,2.9,1.9,2.8,2.8,2.5,3.2,3.6,2.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873327255249023]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.926417350769043]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.02712345123291]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.81550884246826]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.81212329864502]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[32.5,38,32.9,38.3,31.4,33.6,32,32.3,32.4,38.2,31.2,36.9,38.2,40.5,39.6],"script":[5.2,5.2,5.8,5.6,5.5,5.4,5.7,5.7,5.8,5.9,5.6,5.3,5.4,5.6,5.4],"paint":[21.5,21.1,21.4,21.8,21.6,21.4,21.9,21.7,21.3,22.1,22.2,21.5,21.7,22.3,21.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[34,38.4,35.6,36.2,32.8,37.1,31.9,35.8,33.9,32.3,36.5,37.8,33.1,35.8,37.5],"script":[8.3,9.1,8.7,8.6,8.6,8.8,8.6,8.7,8.8,8.7,8.5,8.7,9,8.6,9.5],"paint":[22.5,22.4,22,22.3,22.4,22.6,22.8,22.4,22.5,22.7,21.4,22.2,22.8,22.5,22.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.3,17.1,33.1,18.7,16.8,33.2,33,34.3,16.7,16.3,32.8,17.8,17.8,32,32.8],"script":[5.9,5,4.9,5,4.1,4.4,4.9,4.8,4.9,4.2,4.6,4.1,4.5,4.3,4.5],"paint":[11.5,11.1,12.3,11.9,12.5,12.2,12,12.6,10.7,11.9,11.5,12.4,9.9,11.2,11.8]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[13.1,5.7,11.9,9.5,12,8.8,7.8,7,7,12,10.8,12.5,12.4,10.3,10,5.7,12.4,5.4,5.6,6.7,6.5,10.8,8.8,9.9,8.5],"script":[2.1,2.5,2.6,1.8,1.3,1.6,2,2.2,1.9,2.6,1.9,1.1,1.7,2.1,1.6,1.4,1.6,1.7,1.6,2.4,2.2,2.3,2.3,1.9,1.8],"paint":[3.4,2.5,2,2.3,2.8,1.4,2.9,3.3,2.1,2.6,3.3,3.8,2.5,3,2.3,3.3,1.7,2.4,3.1,1.9,3,2.1,2.4,2.1,2.5]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.2,34.2,32.5,33,34.1,33.2,32.6,32.1,33.1,33.3,32.4,34.2,16.8,33,32.7],"script":[2.4,2.2,1.5,2.6,2.8,1.6,1.9,2.2,1.8,1.4,2.1,2.5,1.4,2,1.6],"paint":[13.9,14.8,14.1,13.7,15.2,15.3,13.5,14.8,15.6,16,15,15.5,14.7,15.2,15.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,14.9,16.1,16.1,17.1,16.5,15.5,13.3,15.9,13.3,15.4,14.2,13.6,18.4,15.8],"script":[0.8,0.9,1.4,1.3,1.4,0.8,0.8,0.8,1.2,1.3,1.1,1,1.1,1.3,1.2],"paint":[11.2,11.2,11.3,11.1,11.2,11.6,11.1,11.6,11.3,10.8,11.2,11.3,11.7,10.9,11.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[290.2,292.4,293.9,288.7,288.9,292.1,294.2,289.5,292,288.1,285.5,293,289.4,295.2,290.8],"script":[71.8,72.7,69.8,65.5,69.2,70.2,71.1,71.1,73.4,71.1,68.8,69.9,70.1,70.3,69.4],"paint":[214.8,213.2,214.9,215.6,213.5,212.1,213.6,214.8,210.8,212.6,213.1,217.5,213.8,214.6,212.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.4,34.6,35.8,40.9,40.6,39.9,39.3,51.8,40.3,39.5,39.4,34.9,34.7,40],"script":[7.2,7.2,7.7,7.4,7,7.2,7.4,7.1,7.1,7.2,7.3,7.4,7.4,7.6,7.1],"paint":[26.3,27.2,26.3,27.5,25.9,27.3,26.5,26.3,26,27.3,26.5,26.4,26.9,26.5,27.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.4,12.5,13.1,11.8,12.4,11.5,11.6,34.9,12.7,12.8,13.9,13,32,12.1,12.1],"script":[10.1,8.2,9.4,9,8.1,9.3,8.4,10.6,8.9,8.7,9.6,9.3,8.3,8.9,9],"paint":[3.1,3.2,2.6,1.5,1.8,1.9,2.9,1.9,2.3,2.4,2.5,2.3,2.9,2.4,1.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6102790832519531]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8133621215820312]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8695192337036133]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.805999755859375]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.58242130279541]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[31.9,32.1,32.3,32.2,31.5,32.8,31.6,32,31.7,31.7,32.5,33.4,31.6,31.9,32.7],"script":[9.3,9.4,9.5,9.3,9.2,9.6,9.2,9.5,9.1,9,9.4,9.7,9.3,9.2,9.5],"paint":[22.1,22.1,22.2,22.4,21.8,22.6,21.8,22,22,22.1,22.5,23.2,21.8,22.2,22.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[38.5,38.3,38.3,38.1,38.4,38.4,38.3,38.2,38.1,38.7,38.1,38.7,38.3,38.2,38.5],"script":[14.9,14.6,14.9,14.2,14.7,14.7,14.7,14.2,14.7,15,14.5,15,14.9,14.7,14.8],"paint":[23,23.2,22.8,23.2,23.1,23.1,23,23.3,22.8,23.1,23,23.1,22.8,22.9,23.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.3,12,25.9,11.8,12.5,23.7,12.3,23.1,23.6,24.7,10.9,11.8,24.4,24],"script":[2,1.1,1.7,1.5,1.2,0.7,1.1,2,1.4,0.8,1,1.8,1.2,1.3,1.7],"paint":[10.8,9.7,9.2,11.3,9.5,10.8,10.1,9.8,9.8,10,10.3,9,9.9,11.2,10.1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.2,6.6,6.2,7.2,8.2,7.1,6.4,6.5,6.4,6.4,9.5,7,7,5.9,6.1,8.7,6.5,6.5,7.6,6.6,6.4,7.7,6.9,6.4,7],"script":[3.9,3.9,3.8,5.1,3.8,4.1,4.9,4.4,4.3,3.9,3.7,4.2,5,4.2,4.5,4.2,4,4.2,4,4.6,3.9,4.3,4.8,4.1,4.9],"paint":[1.6,1.5,1.9,1.4,2.5,1.8,1.4,2,1.5,1.7,2.6,1.9,1.1,0.9,1.1,1.8,0.8,1.9,2.2,1.5,1.3,1.6,2,1.7,1.6]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.1,16.8,16,16.8,16.2,15.7,15.8,16.7,16.8,16.5,15.1,16.2,15.8,14.9,15.4],"script":[1.7,2.8,2.7,1.9,2.6,1.9,2,1.9,2.4,1.9,1.9,2.1,2.1,1.8,2],"paint":[11.9,12.8,12.1,13.6,12.8,12.7,12.6,12.8,13.1,13.5,11.7,13,12.7,11.4,12.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.5,11.5,11.9,12.2,11.9,11.9,11.9,11.7,11.9,12.2,12.1,12.1,12.1],"script":[1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.2,1.3,1.2,1.2,1.2,1.2,1.1],"paint":[9.8,10,9.5,9.8,9.8,10.4,10.1,10.4,10.1,9.8,10,10.4,9.9,10.1,10]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[343.4,340.3,339.9,340.3,338.8,343.5,340.7,342,340.7,341.2,341.7,341.9,342.6,343.3,340.8],"script":[108.6,108.6,108,108,108.1,110,107.4,107.8,108.6,109.6,108.6,108.7,108.8,109.2,107.8],"paint":[226.7,223.9,223.9,223.9,222.6,225.6,225.4,226,224.3,223.6,225.3,225.4,226,226.2,225]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,38,39.3,38.2,38.3,39.4,38.6,39.9,38.4,38,38.6,38.9,37.8,38.7,38.2],"script":[10.1,10,10.1,10.3,10.4,10.5,10.4,10.4,10.4,10.3,10.3,10.5,10.2,10.4,10.6],"paint":[27.6,26.9,28,26.9,26.8,27.8,27.1,28.4,26.9,26.6,27.3,27.4,26.4,27.3,26.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.7,21.2,24.3,21.9,23.3,25.1,22.4,24,21.9,21.9,24.2,23.9,22,22,22.9],"script":[19.5,19.3,21.7,19.5,21.4,23,20.7,21.5,20.1,20,22.3,22.1,20.1,19.6,20.4],"paint":[0.3,0.9,2.4,1.3,0.3,1.2,1.1,2.2,0.4,1.1,0.3,1.6,1,1.3,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9693546295166016]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.970414161682129]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.971555709838867]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.0195112228393555]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.955989837646484]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.9,80.7,82.1,89.3,82.8,87.8,81.3,88,82.9,81.2,81.7,88,87.7,89.1,81.1],"script":[51.9,50.5,51.2,51,52,50.6,50.9,51.5,53,51.2,51.3,50.9,50.9,51.4,51.3],"paint":[27.6,26.9,26.7,27.2,27.1,27.1,27.1,26.8,26.6,26.8,27.2,26.8,27.1,27.4,26.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[95.2,94.6,96.1,95.5,94.9,94.9,95.5,95.5,94.7,94.7,95.8,96.1,95.4,96,95.4],"script":[64.1,63.9,64.9,64.6,64.4,63.9,64.4,64.3,63.6,63.9,64.9,64.8,64.6,65,64.3],"paint":[27.6,27.2,27.4,27.5,27,27.4,27.7,27.7,27.6,27.2,27.3,27.9,27.3,27.5,27.5]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[95,94.3,95,94.2,94.1,93.8,93.7,95,94.8,94.9,94.7,93.8,94.5,94.5,95.4],"script":[48.8,48.8,49.3,47.6,48.7,49,48.3,48.7,48.1,47.2,48.5,47.8,48.6,48.9,48.4],"paint":[13.3,12.2,12.6,13,12.8,14.6,12.7,12.8,13.7,12.8,11.7,12,13,12.1,12.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.5,81.9,85.1,81.3,82.4,83.6,84,83.5,82.3,81.8,84.1,84,83.8,82.1,82,79.9,83.5,82,84.8,84.2,82.3,83,83.7,81.5,81.2],"script":[43.5,44.1,43.7,44.9,45.3,43.7,43.8,43.7,44.3,45.3,44.5,44.7,43.5,44,44.1,43.8,44.5,45.2,44.4,44.6,44.4,45.3,42.9,44.1,43.5],"paint":[3.1,3.3,1.9,2,3.3,3.1,2.4,3.1,1.9,2.5,2.2,2.4,1.7,2.9,2,2.9,3.5,3.3,2.5,2.6,2.9,2.2,2.3,2.9,1.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[94.8,88.6,87.4,95.3,95.9,95.3,95.5,94.5,89.3,87.6,85.8,89.6,90.7,90.3,94.5],"script":[41.2,40.1,40.2,39.3,40.7,40.6,42.9,40.3,40.7,41,40.9,39.8,39.6,39.5,40.5],"paint":[16,15.9,15.2,15.2,15.5,14.7,15.4,14,16.3,15.1,16.1,16.4,14.9,14.6,14.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[36,39.6,35.9,34.4,36.6,36.8,38,35.7,34,34.6,34.3,34.5,36.2,34.3,34.6],"script":[20.7,20.7,20.8,21.2,21,20.9,20.7,20.8,21.2,20.2,20.6,21.1,20.7,21.8,21.4],"paint":[10.9,10.8,11.5,11,11.4,11.4,11.6,11.4,11.1,11.1,11.4,11,10.8,11,11.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[746,759.5,760.1,740.1,756.8,773.1,747.5,759,753.3,763.4,757.8,771.6,757.9,770.8,753.5],"script":[436.9,437.8,444.6,427.3,439.9,436.6,432.2,438.1,432.6,427.1,435.8,434.7,437.7,431.2,441.2],"paint":[253.4,262.9,259.6,255.2,262,282,257.3,263.7,263.3,280.8,260.9,282.1,265,282.5,254.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.1,117.3,116.2,109.4,108.1,111.8,110.1,110.8,109.3,109.4,109.4,113.7,112.2,114.1,110.4],"script":[63.1,63.5,63.4,63.4,62.8,63.2,63.2,63,63.1,62.8,64.2,62.9,63.9,62.9,64.3],"paint":[26,26.2,26.5,26.3,25.5,25.8,26.4,26.1,26.1,25.4,25.8,26.2,26.4,25.7,25.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[39.2,40.3,39.5,40.3,39.4,39.5,38.7,41.1,39.3,39.9,40.5,38.1,39.1,38.3,39.4],"script":[38.1,38.1,37.3,38.6,37.3,37.9,36.4,38.4,36.8,38.8,38.4,36.2,37.6,36.1,37],"paint":[0.4,2,2.1,1.2,2,0.7,1.2,2.5,2.3,0.9,1.9,0.9,0.8,2,0.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.061036109924316]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.67124080657959]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.875746726989746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37116622924805]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.15918731689453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[76.7,81.6,85.9,84.5,79.2,84.6,84.2,86.2,78.8,85.8,85.7,78.6,85.3,84.7,79.6],"script":[46.9,47.2,49.3,48.3,48.9,48.2,49.6,49.9,48.8,49.4,48.3,49,48.8,48.2,49.5],"paint":[26.6,26.7,27.4,27,27,26.8,26.8,27,26.7,27,26.8,26.4,26.3,26.8,26.7]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.7,88.2,89.2,88.7,88.4,89,87.9,89.4,88.7,89.3,88.8,90.2,89,88.9,88.7],"script":[57.3,56.4,57.7,57.1,57.2,56.9,56.4,57.5,56.7,57.1,57,57.7,57,57,56.5],"paint":[27.9,28.3,28.1,28,27.7,28.6,28,28.3,28.5,28.7,28.3,28.8,28.4,28.4,28.6]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.5,94.4,94.9,95.2,94.7,94.8,95.5,88,94.4,94.3,88.4,79.2,89.3,94.3],"script":[37.4,37.2,39.6,36.8,38.3,38.2,39.8,37.7,38.3,39.1,37.5,36.8,38,38.2,38.5],"paint":[12,11.8,12.6,12.2,11.8,12.7,11.2,12.1,11.8,11.8,11.5,13,12.1,12.3,12.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[80.3,80.2,82.4,83.3,87.4,88.5,87.4,79.9,79.8,89.4,87.7,79.9,83.6,88,82.7,88.3,88.4,88.4,81,87.5,88,79.8,88.5,83.6,87.4],"script":[38.9,37.2,36.6,38.1,36.7,37.1,35.7,36.3,36.8,38.5,37.2,37.1,37.4,36.1,36.4,35.8,35.8,35.5,35.9,36.1,38.8,36.7,39.7,38.2,37.8],"paint":[2.8,2.6,2,1.9,1.7,1.8,2.7,2.3,2.3,3.2,1.7,2.2,1.7,2.4,2.6,2.3,2.8,2.7,3.3,2.6,2,2.4,2.7,2.3,1.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.3,81.1,94.8,94.2,93.7,94.6,83.8,95.2,85,93.8,94.5,94.3,85.1,94.5,93.6],"script":[33.2,33.3,33,31.4,33.2,34.1,32.1,32.8,33.4,32.2,32.7,33.3,34.7,32,31.9],"paint":[15.3,14.5,14.8,15,14.8,14.5,16.2,13.7,14.7,14.8,16,14.9,15.2,15.6,16]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.9,88,87.2,90.4,87.9,90.1,90.4,90.7,90.8,86.7,87.9,94.1,87.6,90.9,94.2],"script":[17.7,18.4,18.2,17.4,18.2,18.7,17.8,17.6,18.2,17.7,17.6,17.8,18.1,17.8,17.8],"paint":[10.7,11.8,11.7,11.6,11.5,12,11.5,11.8,11.7,11.2,11.3,11.7,11.6,11.6,11.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[745.6,735.3,743.7,741,738.3,746.3,741.7,734.3,738.4,738.8,742,739.5,736.7,735.7,740.7],"script":[409.6,406.6,405,403.8,403.6,408.4,409.6,407.2,406.2,410.4,409.9,406.4,403.7,407.6,407.7],"paint":[281.3,274.5,280,282.1,278.4,282.3,277.4,272.6,277.5,274.1,277.3,278.3,276.8,273,276.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[109,113.9,107,113.9,112.4,112.1,107.5,106.6,106.3,112.9,113.5,113.3,112.6,106.1,115.2],"script":[52.7,53.5,53.3,54.3,53.2,54.1,54.3,53.1,53.7,54.6,53.3,53.1,53.6,54,53.1],"paint":[31.7,32.1,32.2,32.1,32.5,31.8,30.3,31.1,31.8,32.3,32.6,32.1,32.5,30.8,30.9]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[42,41.4,41.8,43.2,44.5,41.5,43.2,41.8,44.4,46,43.9,42.4,44.5,41.3,41.6],"script":[40.4,40.1,40.4,41.2,42.8,39.7,41.4,39.8,42.8,44.3,42.1,41.1,42.4,39.5,40.1],"paint":[0.8,1.2,1.3,1.9,1,1.6,1.2,1.8,1.5,0.8,1.6,1.1,1.4,0.7,1.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.83461952209473]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.78805637359619]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.84860897064209]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.3020715713501]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.81596851348877]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.8,23.6,23.7,23.7,23.6,23.9,23.5,23.7,23.8,23.8,23.8,23.6,23.7,23.9],"script":[2.5,2.3,2.3,2.3,2.3,2.3,2.4,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[21.1,21.1,20.9,21,21.1,20.9,21.1,20.9,21,21.1,21.1,21.2,20.9,21,21.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[26.9,26.9,27.4,27,27.7,27,26.8,27.7,27.6,27.3,27.1,27.4,26.9,27,27.5],"script":[4.8,4.7,4.8,4.7,4.8,4.7,4.6,4.7,4.9,4.8,4.9,4.7,4.7,4.8,5],"paint":[21.7,21.7,22.2,21.9,22.5,21.8,21.8,22.5,22.2,22,21.8,22.3,21.8,21.8,22.1]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.6,11.3,10.4,11.7,10.4,10.8,10.4,10.6,10.4,10.6,9.6,13.7,10,10.6],"script":[0.9,1.2,1.2,0.2,0.3,0.6,0.7,0.9,1.5,0.2,1.6,0.8,0.9,0.2,0.2],"paint":[8.2,8.3,9,9.2,10.4,8.9,9.4,8.3,8.4,9,8.2,7.6,11.4,8.2,9.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[7.8,3.6,2.2,2.5,2.7,2.7,3.1,3,3.2,2.2,5.6,3,2.2,2.9,2.8,2.5,3,2.6,2.4,3.4,3.1,2.8,1.8,2.5,2.6],"script":[0.8,1,0.2,1,0.5,0.9,0.5,0.8,1.3,0.1,1,1.1,0.1,0.8,1,1,0.8,0.9,0.1,0.9,1,0.1,0.3,0.1,0.5],"paint":[0.7,2.4,1.3,1.3,1.5,1.3,1.7,2.1,1.8,1,1.8,1.1,1.2,1.5,1.6,1.1,0.6,1.3,2.2,2.3,1.5,1.9,1.4,1.4,1.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,13.5,12.4,13.1,12.9,12.8,13.6,13.4,13.7,12.7,13.2,13.4,13.2,13.4],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.6,0.5,0.6,0.2,1.1],"paint":[11.1,11.5,12.3,11.7,11.1,11.8,11.3,11.1,11.4,12,10.4,11.4,11.8,11.8,11.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.8,10.2,10.3,10.2,10.7,10.7,9.9,10.7,10.9,10.1,10.3,10.4,10.2,10.3],"script":[0.3,0.5,0.5,0.3,0.5,0.4,0.5,0.1,0.4,0.5,0.3,0.5,0.1,0.1,0.2],"paint":[9.4,9.6,8.9,9.3,9.1,9.7,9.7,9.5,9.8,9.5,9.2,9,9.2,9.6,9.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[257.8,257.3,257,258.8,258.1,258.3,258.1,258.9,256.7,257,256.1,260.5,258.6,261.1,259.1],"script":[27.3,27.7,27.3,27.6,26.7,27.3,27.2,27.4,27.3,27.2,27.4,27.1,27.3,27.1,27.7],"paint":[223.3,222.4,222.7,223.9,224.2,223.8,223.7,224.4,222.1,222.5,221.4,226.2,224.3,226.6,223.4]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,27.9,27.5,27.4,28,27.9,27.5,27.6,27.1,27.3,27.9,27.5,27.5,27.2,27.4],"script":[2,2,2,2,2.1,2.1,2,2,2,2,2,2,2,2,2.1],"paint":[24.9,25.1,24.8,24.6,25.2,25,24.8,24.8,24.3,24.6,25.1,24.8,24.8,24.4,24.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,10.2,9.7,9.5,9.4,8.4,9.2,8.6,10,9.7,9.3,9.7,9.5],"script":[7.4,8.1,7.6,7.4,7.1,7.1,7.5,7,7.6,7.4,7.7,7.6,7.4,7.9,7.9],"paint":[0.6,0.2,0.2,1.5,1.7,1.8,0.4,0.2,0.7,0.2,2.1,1.8,1,1,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6466579437255859]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.498262405395508]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527353286743164]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7978572845458984]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.282408714294434]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[34.1,30.7,33.1,30.4,31.6,29.3,29.6,29.6,28.9,27.8,30.6,34,29.4,29.2,35],"script":[5.6,5.8,5.6,6,6.1,5.8,6.6,6.1,6.3,6,5.9,5.8,5.9,6,5.7],"paint":[20.7,21.4,20.9,21.4,21.4,21.2,21.3,21.2,21.1,21.3,20.8,20.8,21.1,21.4,20.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[32.8,38.2,32.6,33.9,33.2,40,39.2,33.2,39.7,37.8,32.6,33.3,33.1,33.1,32.7],"script":[10.6,10.8,10.5,11.4,11.2,10.4,10.8,11.3,10.5,10.8,10.5,11.1,10.6,10.9,10.6],"paint":[21.8,21.6,21.7,22.1,21.7,21.7,21.9,21.6,21.4,21.6,21.7,21.8,22.1,21.8,21.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,12.9,13.6,12.7,13.4,15.2,16,13.9,13.2,13.4,13.6,12.8,14.1,13,12.5],"script":[4,2.5,2.7,2.7,2.7,2.7,3.1,3.7,2.2,3.2,2.7,2.2,2.6,2.8,2.7],"paint":[11.5,9.6,10.8,9.8,10.2,11.5,11.3,9.8,10.3,9.3,10.8,9.6,11.1,10.1,9.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[4,4.1,3.5,3.4,3.9,4.3,4.3,3.3,3.7,3.3,3.5,3.3,3.5,4.4,4.2,3.6,3.9,4.6,3.4,3.9,3.5,3.9,3.5,4,3.9],"script":[0.8,1.5,1.5,1.1,1.7,1.2,2,1.7,1.7,1.8,1.5,1.3,1.2,2.3,0.7,2.1,2.2,1.8,1.8,1.6,1.3,2,1.8,1.3,0.4],"paint":[2.3,2.4,1.9,1.8,1.4,1.6,2.2,1.1,1.8,1,1.8,1.9,1.2,2,1.7,1,1.6,2.4,1.2,2.1,2,1.8,1.6,1.1,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[17.8,13.8,13.4,13.3,14.4,29.7,29.3,14.4,13.8,13.8,14,15.6,15.1,14.2,13.8],"script":[1.4,1,1.2,0.9,1.1,0.8,1.4,1.7,1.5,0.8,0.9,1.3,1.5,1.4,1.2],"paint":[14.9,12.4,12.1,12,12.8,12.8,11.9,11.4,12.2,10.9,11.1,13.5,13,12.1,11.8]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,9.8,9.6,10,9.8,9.9,9.8,9.9,10.3,9.7,10.1,10.2,10.3,11.1,9.7],"script":[0.5,0.8,0.7,0.7,0.7,0.8,0.8,0.7,0.4,0.7,0.8,1,0.6,0.4,0.6],"paint":[8.7,8.6,8.6,9.1,8.9,9,8.6,9,9.1,8.9,9.2,8.6,8.8,8.5,8.5]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[297,290.9,290.2,294.5,295.1,291.3,298.8,295.4,300.4,293.2,296.5,295.2,296.2,298.4,295.8],"script":[69.3,68.7,70.9,70.7,73,70.8,71.6,70.9,71.2,72,72.1,70.5,71.4,70.8,73.6],"paint":[218.4,217.5,216,218.4,216.3,217.1,216.7,215.6,220.2,216.5,216.1,217.3,214.7,217.8,219]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,36.6,33.8,37.8,36.6,31.7,36.7,37,32.2,36.4,37,36.1,33.1,36.3,36.6],"script":[6.4,6.6,7.4,6.6,6.7,7.1,6.8,6.8,6.7,6.5,6.7,6.7,7,6.6,6.8],"paint":[24.3,24.3,25.8,24.4,24.3,24.1,24.2,24.5,25,24.3,23.9,23.9,25.2,24.2,23.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12.6,28.5,11.9,11.3,12,12.8,11.8,27.4,11.6,11.3,11.6,11.9,12.4,10.6],"script":[9.7,9.4,10.6,10.8,9.7,8.9,10.2,9.2,10.2,9.7,9.8,9.5,9.4,10.4,8.6],"paint":[0.7,1.2,1.1,0.3,1,1.7,1.7,1,1.1,0.3,0.6,1.2,0.6,1.8,0.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7144250869750977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6487512588500977]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8291072845458984]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.557438850402832]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.016355514526367]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[22.9,23.1,23,23.4,23.1,23,23.3,23.9,23,23,23,22.8,23.1,23.3,23.1],"script":[1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[20.8,20.9,20.8,21.1,20.9,20.8,21.1,21.6,20.8,20.8,20.8,20.6,20.9,21.1,20.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.3,26.5,26.2,26.5,26,26.6,26.4,26.3,26.1,26.7,26.2,26.2,26.3,26.4],"script":[4.2,4.2,4.2,4.2,4.2,3.9,4.2,4.1,4.2,4.2,4.1,4.2,3.9,4.2,4.2],"paint":[21.6,21.7,21.9,21.5,21.9,21.7,22,21.8,21.7,21.5,22.2,21.6,21.9,21.7,21.8]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.6,9.9,9.8,10.8,10.7,10.4,10.8,10.6,11.5,10.2,10.8,10,9.9],"script":[0.2,0.2,0.7,0.8,0.7,1.1,1.1,0.9,0.2,0.3,1.5,0.5,0.9,0.6,0.2],"paint":[8.9,8.5,8.8,7.8,7.6,8.8,7.5,8.2,9.6,9,8.7,7.4,9,8.3,8.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,1.9,2.3,2.2,2.2,2.2,2.6,2.6,2.7,2.4,2.3,2.5,2.3,2.2,2.1,2.3,2.1,2.1,1.9,2.1,2.7,3,3,2.2],"script":[0,0.1,0,0,0,0.1,0.1,0.6,0.1,0.1,0,0.6,0,0.1,0.1,0,0,0.1,0,0,0,0,0.7,0.7,0.1],"paint":[2.3,1.9,1.8,2.2,1,1.2,1,1.5,2.5,2.5,2.2,1.1,1.4,2.1,1.2,2,1.3,1.9,2,1.7,2,1.6,2.1,0.9,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.9,13.5,13.2,14.4,14.3,14.3,14.8,12.6,13.4,14.3,13.4,13.3,12.8,13.2],"script":[0.5,0.1,0.1,0.1,0.6,0.1,1.1,0.8,0.1,0.8,1,0.5,0.8,0.7,0.1],"paint":[11.3,12.4,12.6,11.9,11.9,13,12.5,12.7,11.8,11.6,12.9,12.3,10.9,11.2,10.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.6,10.5,10.6,10.3,10.5,10.3,10.5,10.8,10.8,10.9,10.8,10.7,10.3],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.4,0.2,0.3,0.4,0.5,0.4,0.5,0.5,0.4],"paint":[9.3,9.5,9.3,9.6,9.8,9.2,9.6,9.5,9.4,9.8,9.9,9.9,9.7,9.5,9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[255.2,258.9,256.2,255.8,258.6,257.5,257.4,255.9,256.4,255.8,256.8,257.8,256.7,257.5,255.8],"script":[26.3,25.6,26.1,26.1,26.2,26.1,25.9,25.8,26.3,26.7,25.8,26.6,26.1,26.1,26],"paint":[221.8,225.9,223.1,222.4,224.9,223.9,223.8,222.7,222.8,221.9,223.7,224,223.5,224,222.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.1,27.3,27.2,27.7,26.8,26.9,27.3,27.1,26.8,27.2,26.9,26.8,26.9,27,27],"script":[2.1,2,2,2,2,2,2,2,2,2,2,2,2.1,2,2],"paint":[25.2,24.6,24.5,24.9,24,24.2,24.6,24.3,24,24.5,24.2,24.1,24.1,24.2,24.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.4,9.9,9.4,9.3,9.6,9.8,9.8,10.1,10.2,11.1,9.7,10,9.6,9.2],"script":[7.5,7.1,8.2,7.4,7.9,7.9,7.6,7.6,8,8.4,8.7,7.6,7.9,7.6,7.3],"paint":[0.3,1.1,1.2,0.2,0.2,1.1,1.7,2,0.7,1.5,1.4,1.5,1.1,0.7,0.4]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8701353073120117]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7321882247924805]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.816035270690918]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0977239608764648]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.59339427947998]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.1,31.2,31.9,31.7,32.2,31.4,31.6,31.3,31.5,31.4,31.5,31.4,31.6,30.7,31.2],"script":[10.4,9.7,10.2,9.9,10.3,9.8,10.1,10,10,9.9,9.8,9.9,10.2,9.1,9.4],"paint":[21.2,20.9,21.1,21.3,21.4,21,21,20.8,20.9,20.9,21.2,21,20.9,21,21.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.7,35.2,35.4,36.4,35.8,35.5,35.6,35.8,35.4,35,35.3,35.7,35.7,36.2,35.7],"script":[13.4,12.6,13,12.7,13,12.7,13,12.9,12.9,12.8,12.9,12.9,12.7,13.1,13.1],"paint":[21.7,22,21.8,23.2,22.2,22.2,22,22.3,21.9,21.7,21.9,22.3,22.4,22.5,22.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.4,21.3,21.5,21,22,22.3,21.1,22.1,22.5,22.7,21.7,21.8,22.2,22.3,22.3],"script":[9.9,9.5,9.4,9.5,9.1,10.2,8.4,10.6,10.1,10.2,9.9,9.7,9.9,10.1,10],"paint":[11,9,9.8,9,10.4,10,10.2,9.5,10.5,10.7,9.9,9.8,10.7,10.3,10.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[9.2,9.3,8.9,9.6,9.5,9,9.8,9.1,9,9.2,9.9,8.9,9.9,9.2,9.1,9.6,8.9,9.5,9,9.5,8.8,9.3,8.8,8.4,9.3],"script":[5.6,6.1,6.2,6.8,6.6,5.9,7,6.2,6.3,6.3,6.8,5.8,6.3,6.1,5.7,6.3,6.1,6.1,5.8,6.3,6.3,5.9,5.6,5.9,5.9],"paint":[2.2,1.4,1.3,1.5,2.1,1.8,1.5,2.5,1.1,1.1,2,1.2,1.9,1.9,2.2,2,0.7,2.4,2.2,1.9,0.8,2.9,1.4,1.6,2.6]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.8,21.1,20.7,20.8,20.7,23.2,20.7,20.8,20.7,20.8,20.5,19.6,20.9,21.4,19.8],"script":[7.1,6.7,6.7,6,7,7,7.1,7,7,6.7,6.8,6.5,6.8,7.4,6.7],"paint":[12.3,12.1,11.6,12.5,11,14.2,12,11.6,12.3,13,11.7,11.1,12.6,11.8,11.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14,14,14.2,13.7,13.8,13.5,14.2,13.7,14.4,14,14.6,14.7,15.7,14],"script":[3.5,3.5,3.6,3.6,3.3,3.4,3.3,3.6,3.4,3.6,3.5,3.6,3.7,4.3,3.5],"paint":[10,9.9,9.7,9.7,9.9,9.5,9.7,9.9,9.3,10.1,10.1,10,10.3,10.8,9.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,320.2,324.7,321.2,322.2,322.5,323.4,324.3,322.8,322.2,323.3,323.8,320.6,318.9,322.8],"script":[100.3,98.6,101.8,100,100.4,101,101.8,101.5,100.3,100.9,101.8,102.2,99.4,98.1,101.3],"paint":[215.3,214.7,215.8,214.3,214.9,214.6,214.7,215.8,215.6,214.4,214.7,214.8,214.3,213.8,214.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.6,38.2,39.6,38.4,38.5,38.6,38.9,39.5,38.8,38.1,39.3,38.7,39.1,39.2],"script":[12.2,12.6,12.2,13.2,12.6,12.6,12.6,12.6,12.9,12.9,12.5,12.9,12.5,13,12.9],"paint":[25.2,25,25.1,25.5,25,25,25.1,25.3,25.6,25,24.7,25.4,25.3,25.1,25.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.8,12.5,11.8,11.3,11.7,11.1,12.3,11.5,13.3,13,12,12,11.8,11.6],"script":[9.5,9.1,10.1,9.5,9.7,10.1,9.7,10.8,9.5,10.8,11.5,10.1,9.9,9.7,9.7],"paint":[1.2,1.6,1.7,0.3,0.7,0.6,0.3,0.3,1.2,1.2,0.7,0.6,1.2,1.4,1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6688327789306641]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.670557975769043]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7514867782592773]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9825620651245117]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.584179878234863]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[32.7,30.5,33.4,31.4,31.1,31.2,31,31.3,30.9,32.6,33,31.1,33.2,33.1,31.5],"script":[10,9.1,10.7,9.5,9.3,9.3,9.3,9.4,9.5,10,10.2,9.5,10.1,10.4,9.8],"paint":[22.1,21,22.1,21.4,21.4,21.5,21.3,21.6,21,22,22.2,21.2,22.6,22.1,21.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.4,37.1,36.9,37.2,36.9,37.4,36.6,37.5,37,37.1,37.1,37.7,37.3,37.1],"script":[13.4,14.1,13.7,13.5,13.9,13.2,13.7,13.5,14,13.7,14.1,13.5,14.2,13.9,13.8],"paint":[22.9,22.7,22.8,22.7,22.8,23,23.1,22.6,22.9,22.6,22.4,22.9,22.9,22.6,22.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.4,13.7,12,12.6,12.7,12.6,12,12.8,13.1,12.5,12.9,14.5,12.5,12.6],"script":[1.9,2.7,2.8,1.7,2.1,2.5,2.1,2.2,1.7,2.4,2.1,2.1,3,2.4,2],"paint":[9.5,9.6,9.2,8.7,8.8,8.7,9.1,8.4,9.2,9.4,8.8,9.1,9.7,8.6,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.3,5.5,2.7,2.7,3.3,3.4,4,2.9,6.3,7.7,2.8,6.7,4.6,2.1,3.3,3.5,3.1,3.9,3.4,3.1,3.2,6.2,4.8,3.5],"script":[0.1,0.2,1.2,0.8,0.5,0.7,1.1,0.9,0.1,0.8,0.1,0.3,0.5,0.2,0.2,1,1.1,0.2,0.3,1.2,0.9,0.8,0.9,1,0.9],"paint":[1,1,1.6,1.1,1.2,2.1,1.5,1.9,1.6,2,1.1,1.9,1.7,1.7,1.1,1.5,0.7,2.3,1.6,1.5,1.4,1.2,2.3,1.3,1.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.3,15.9,16.5,16.5,15.7,18,15.8,16.1,15.9,16.3,15.7,15.2,16.1,18.4,15.8],"script":[2.7,3.1,3.2,3.3,2.9,2.5,3,2.8,2.8,2.7,2.8,2.8,3,3,2.8],"paint":[12.3,10.7,12,12.2,11.1,14.5,11.6,12.2,11.6,12.5,11.6,11.1,12.1,13.3,12.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,12.1,12.9,12.2,11.9,12.2,11.8,11.8,12.1,12,11.9,11.8,12.2,11.9,12],"script":[1.4,1.5,2,1.4,1.5,1.5,1.5,1.4,1.3,1.7,1.4,1.3,1.6,1.6,1.6],"paint":[9.6,10,10.2,9.9,9.6,10,9.7,9.8,9.6,9.5,9.6,9.5,9.7,10,9.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.1,317.2,318.6,316.4,317.5,316.6,319,318.3,316.9,319,317.5,316.8,316.7,317.1],"script":[97,97,96.8,97.2,95.1,97,96.4,98.1,95.5,96.8,97.4,97,98.2,94.6,95.7],"paint":[214.5,213,212.4,213.3,213.2,212.7,212.2,212.9,214.8,212.1,213.4,212.6,210.8,214.1,213.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,38.6,39.7,39.1,38.3,39.2,38.1,38.9,39,38.9,39,38.4,39,39,39.1],"script":[11,10.9,11.3,11.3,11.1,11.5,11,11.1,11.4,11.1,11.1,10.9,11.3,11.1,11.4],"paint":[26.6,26.7,27.3,26.7,26.2,26.7,26.1,26.8,26.5,26.8,26.9,26.4,26.6,26.9,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,13.8,13.2,12.3,11.8,12,13.5,12.5,12.5,13,14.3,13.1,12.7,13,12.2],"script":[10.2,11.4,10.7,10.2,10.4,11.2,11.3,10,10.7,11.3,12,11.1,10.4,10,10.7],"paint":[1.8,1.3,1.6,1.4,0.9,0.6,1.1,1.5,0.5,1.4,1.6,0.4,1.7,2.3,1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7170677185058594]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.533288955688477]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.564603805541992]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2497005462646484]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.277915954589844]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23,23.2,23,22.3,22.9,23,23,23,23.4,23.3,23.1,23.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.1,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.8,21.3,21.5,21.3,20.8,21.2,21.3,21.4,21.4,21.8,21.6,21.5,21.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.5,25.9,25.9,26.2,26.2,25.8,25.7,26.5,26.1,26.4,25.8,26,25.9,26.2],"script":[3.2,3.7,3.1,3.2,3.4,3.2,3.1,3.2,3.5,3.1,3.2,3.2,3.2,3.2,3.2],"paint":[22.9,22.4,22.3,22.2,22.3,22.6,22.3,22.1,22.6,22.6,22.8,22.2,22.3,22.3,22.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,9.6,10.2,9.6,10,10.2,9.8,9.9,9.7,10.6,10.3,10,11,10.2,9.4],"script":[0.1,0.1,1,0.1,0.7,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.6,0.5,0.1],"paint":[9,8.2,7.4,8.2,7.8,8.9,8.4,8.2,8.5,9.5,8.9,8.9,8.8,8.7,8.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.7,2.4,2.4,2.4,2.7,2.2,1.7,1.7,1.9,2,2,1.8,2.6,4.8,2.5,2.2,1.8,2.3,2,2.3,3.4,3,2.3],"script":[0,0,0,0,0,0,0,0,0,0.4,0,0.1,0,0,0,0,0,0,0,0,0.1,0,0.7,0,0],"paint":[1.9,2.1,1.5,2.2,2.2,2.3,1.7,1.3,1.6,1.3,1.7,1.1,1.4,1.7,2.4,1.3,2.3,0.8,1.7,2.1,1,1.7,1.5,1.6,2.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.7,13.2,12.6,13.6,13,12.9,13,12.4,13.3,12.4,12.8,12.2,12.2,12.2,12.9],"script":[0.1,0.8,0.5,0.1,0.1,1,0.6,0.4,0.6,0.8,0.1,0.1,0.4,0.1,0.9],"paint":[11.4,11.1,10.8,12.9,12,10.9,11,9.9,11.2,9.8,11.8,11.1,10.5,11.2,11.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,11.1,10.2,10.3,10.4,10.2,10.3,10.4,10.3,10.3,10.4,10.4,10.2,10.8,10],"script":[0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.2],"paint":[9,10,9.6,9.1,9.9,9.6,9.3,9.7,9.6,9.4,9.7,9.6,8.8,10.1,9.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.2,247.3,246.1,245,246.3,246.5,246.3,245.4,245.2,244.4,246.9,244.2,247.6,245.1],"script":[15,15.2,15.1,15.3,15,15.2,15.4,15,15.3,15,14.9,15.1,15.4,16.6,15],"paint":[223.3,223.9,224.4,223.7,223,223.8,224.1,224.4,223,222.9,222.5,224.8,221.8,224,223]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,26.9,27,26.9,26.8,26.7,27,26.7,27.1,26.8,27.1,27.2,27.3,26.9,26.1],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2],"paint":[25.3,24.9,24.9,24.8,24.7,24.7,25,24.6,25.1,24.8,25.1,25.1,25.2,24.9,24.1]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,8.8,9.2,9.4,9.5,9.5,9.2,10.2,8.8,10.6,10.5,9.1,9.5,9.8,9.2],"script":[7.8,7.2,7.5,7.3,6.8,7.1,7.3,8.2,7.4,7.3,7.6,7.1,7.7,7.8,7.2],"paint":[1,0.6,0.2,1,0.6,1.4,0.3,1.1,0.3,2.1,1.8,0.6,0.7,1,0.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5033645629882812]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.850752830505371]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8534669876098633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6313543319702148]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.648594856262207]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25,24.9,25.2,25.3,25.3,24.9,25.2,25.8,25.1,25.2,25.4,25.2,25.6,25.4,25.3],"script":[3.6,3.5,3.6,3.9,3.6,3.6,3.7,4.2,3.6,3.6,3.7,3.6,3.8,3.7,3.7],"paint":[21.1,21,21.2,21.1,21.3,20.9,21.2,21.2,21.1,21.2,21.3,21.2,21.5,21.3,21.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[27.9,28.6,28.3,28.3,28.2,27.9,28.1,28.4,28.6,28.3,28,29.2,28.3,28,28.2],"script":[5.4,5.9,5.4,5.6,5.4,5.5,5.5,5.4,5.9,5.5,5.5,5.9,5.4,5.4,5.4],"paint":[21.9,22.2,22.2,22.2,22.2,21.8,22.1,22.4,22.2,22.3,22,22.8,22.3,22,22.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.7,11.3,11.3,11.2,11.1,12,11,11.5,11.4,11.7,11.3,13.1,11.6,11.1],"script":[0.9,0.6,1.2,0.6,0.9,0.9,1.2,0.2,0.8,1.4,1,1.2,2.2,1.4,1.4],"paint":[9.6,9.4,9.5,9.9,9.2,9.9,9,9.2,9.2,8.8,9.1,8.7,9.3,8.7,8.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.5,1.9,2,1.9,2.7,2.9,1.9,2.2,2.1,2.4,2.2,2.7,2.6,2.3,2.1,2.8,2.1,2.4,3,2.6,2.3,2.5,2.3,2.9],"script":[0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.8,0.1,1,0.1,0.4,0.4,0.6,0.1,0.1,1.1,0.6,0.1,0.1,0.4,0.1],"paint":[1,1.4,1.7,1.1,1.1,2.1,1.8,1.7,1.2,1.3,1.5,1.5,1.6,1.6,1.8,1.5,1.8,1.7,2.2,1.8,1.9,2.1,1.5,1.7,2.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,13.5,13.9,12.9,13.4,13.3,13.6,12.9,12.9,13,12.8,12.8,12.5,12.9,14.1],"script":[0.1,0.1,0.8,0.1,0.5,0.1,0.8,0.4,0.9,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[12.7,11.8,12,12,11.6,11.8,10.8,11,10.5,11,11.6,11.1,11.1,10.7,12]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.5,10.7,10.6,10.9,10.2,10.4,10.6,10.2,10.2,10.5,10.3,10.3,10.2,10.3],"script":[0.1,0.1,0.3,0.3,0.1,0.1,0.4,0.2,0.4,0.1,0.4,0.1,0.1,0.4,0.1],"paint":[9.5,9.6,9.9,9.8,10.2,9.5,9.7,10.1,9.2,9.5,9.4,9.3,9.5,9.2,9.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.4,272.3,270.4,270.7,271.3,272.1,268.8,271.3,271.1,272.8,273,271.2,270.6,274.9,270.8],"script":[40.3,41.3,41.7,41.5,41.3,41.4,40.7,42,41.7,41.5,41.5,40.5,41.3,41.7,41.1],"paint":[222,223.9,221.3,222.1,222.9,223.6,220.9,222.1,222.3,224.2,224.5,223.8,222.3,225.8,222.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.9,30.9,30.8,31,30.9,31.5,30.9,31.2,31.9,31.3,32.3,32,32,31.2,31.7],"script":[3.9,3.8,4,3.9,3.9,4.4,4,4.5,4.6,4,4.2,4.2,4,4,4.4],"paint":[26.2,26.3,26.1,26.3,26.2,26.3,26.2,26,26.5,26.4,27.3,26.9,27.2,26.5,26.5]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10.2,10,10.5,10.9,10.2,11.6,10.1,10.1,10.9,10.6,10.9,11,9.9,11.6],"script":[7.9,8.3,8,8.7,8.6,8,9.2,7.6,8,8.5,8.5,8.4,8.7,7.9,9.9],"paint":[1.1,1.3,0.9,0.3,1.6,0.7,1.1,1.3,1.5,1,1,0.7,1.3,1.1,1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6040544509887695]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7080955505371094]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7008790969848633]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8054409027099609]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.81447124481201]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.7,27.4,27.6,27.5,27.8,27.7,27.7,28.2,27.3,27.5,27.3,28.2,27.2,27.5],"script":[5.7,5.6,5.6,5.7,5.7,5.7,5.7,6,5.8,5.6,5.6,5.6,5.8,5.6,5.7],"paint":[21.4,21.6,21.2,21.4,21.3,21.5,21.4,21.1,21.7,21.1,21.3,21.2,21.9,21,21.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.8,31.5,30.9,30.8,30.7,31,31.4,31.3,31.9,31.1,31.5,31.4,31.1,31.5],"script":[8.6,8.9,8.6,8.5,8.6,8.5,8.5,8.7,8.6,8.8,8.6,8.8,8.7,8.5,8.6],"paint":[22.6,22.4,22.3,21.8,21.7,21.7,21.9,22.1,22.1,22.5,21.9,22.1,22,22,22.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.1,18.2,20.2,18.9,19.4,18.5,18.9,18.8,18.5,19,18.6,19.7,18.7,19.1,17.9],"script":[6.9,6.5,6.9,6.5,6.7,6.9,6.9,7,6.8,6.7,6.4,7.5,6.6,6.7,6.7],"paint":[10.2,10.1,11.3,10.8,10.7,10.4,10.7,10,9.8,11,10.2,10.5,9.9,11.6,9.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11.5,10.7,11.5,10.6,10.7,10.9,11.4,11.5,11.1,10.8,11.1,10.6,10.9,10.8,11,10.6,10.8,10.9,11.2,10.5,11,11.1,10.4,11.1],"script":[8.4,8.4,8.5,8.4,7.8,7.9,8,8.1,8.2,8.2,7.7,8.4,8.4,8,8,8,8.1,8,7.6,8.1,7,8.3,8,8,8.1],"paint":[1.4,1.7,0.8,2.8,1.5,1.1,1.8,2.2,1.7,2.2,2.8,2.4,1,1.7,1.8,1.1,1.5,1.2,1.7,2.2,2.4,1,1.7,1.2,2.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[23.5,22.9,22.5,24.8,22.3,22.3,23.3,22.6,22.7,23.8,22,22.7,23.3,22.4,22.9],"script":[8.6,7.8,8,8.5,7.4,8.1,7.7,8.5,7.7,8.6,8,7.8,8.2,8.4,7.9],"paint":[13.4,13.4,13,13.7,13.6,11.8,13.4,12.5,12.7,13.7,12.4,13.7,13.4,12.1,13.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,15.1,14.6,14.6,14.8,14.6,14.6,14.7,14.9,14.6,14.5,14.4,14.4,15,14.6],"script":[4.2,4.2,4.2,3.8,3.9,4.1,4.2,4.2,4.2,4.2,3.9,4.1,4.2,4.2,4.2],"paint":[10.5,10.3,9.6,10.1,10.3,9.8,9.5,9.5,10.3,9.6,10,9.7,9.4,10,9.5]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[273.9,274.2,272.3,272.6,272.1,272.6,272.3,273.8,274.2,271.4,272.9,273,272.7,274.8,272.2],"script":[41,41.9,41.1,42.1,41,41.3,41.6,41.2,41.2,41.4,41.7,41.6,41.5,41.5,41.5],"paint":[225.1,224.9,223.4,223.2,223.5,223.8,223.2,225,225.3,222.5,223.8,223.8,223.7,225.8,223.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.3,33.2,32.9,33.2,33,33.3,33.2,33,33,33,33.1,33.2,32.9,33.4],"script":[6.4,6.8,6.5,6.3,6.4,6.4,6.5,6.5,6.4,6.5,6.4,6.3,6.3,6.3,6.4],"paint":[26.6,25.5,25.8,25.7,25.8,25.6,25.9,25.8,25.7,25.6,25.7,25.8,25.9,25.7,26.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,22.8,22.9,23.3,21.9,23,22.2,24.1,22.1,22.5,23.3,21.7,21.8,23.1,25],"script":[22.2,20.7,20.1,21,19.5,20.8,20.5,22.1,20.2,20.3,21.2,20.1,19.9,20.8,22.6],"paint":[0.3,0.3,1.8,1,1.2,0.6,0.3,1.1,1.6,0.5,1.1,0.3,0.7,1.5,1.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8540573120117188]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.365616798400879]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.400456428527832]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.478118896484375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.693777084350586]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[346.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24,24,24.1,24.7,24.1,24,24.1,23.8,23.9,24,24.1,24.1,24.5],"script":[2,2.3,2,2.2,2.3,2.3,2,2,2.1,2,2.2,2.2,2,2,2.3],"paint":[21.9,21.4,21.7,21.4,21.4,22,21.7,21.7,21.6,21.5,21.2,21.4,21.7,21.7,21.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[28.1,28.4,28.7,28.2,28.1,28.9,28.7,28.3,28.3,28.3,28.3,28.2,28.5,28.7,28.9],"script":[5.4,5.7,5.7,5.3,5.4,5.8,5.5,5.3,5.5,5.3,5.4,5.5,5.3,5.4,5.5],"paint":[22.2,22.1,22.4,22.3,22.2,22.5,22.6,22.4,22.2,22.4,22.4,22.1,22.5,22.7,22.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.7,10.2,11.4,12.1,11.1,11.3,10.4,12.2,11.3,11,11.8,12.1,11.5,13.5],"script":[1.3,1.1,1,1.1,1.2,1.3,0.9,0.7,1.1,0.7,1.1,1.5,1.2,1.6,2.7],"paint":[9.2,8.8,8,8.3,9.9,7.5,8.6,8.8,10.1,9.6,8.4,9,9.5,9,9.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.4,2.2,2.4,2.4,2.5,3.1,2.9,2.6,2.5,2.2,2.7,2.1,2.8,2.4,2.4,2.4,2.4,2.5,2.6,2.2,2.4,2,2.2],"script":[0.1,0.6,0.7,0.6,0.6,0.6,0.1,0.8,0.9,0.1,0.1,0.8,0.8,0.1,0.1,0.2,0.6,0.3,0.1,0.5,0.1,0.1,0.1,0.1,0.6],"paint":[1.7,2.1,1.6,1.1,1.2,1,1.2,1.6,1.6,1.8,1,0.8,1.8,1.9,2.5,1.5,1.2,2,2.2,1.3,1.4,1.9,1.4,1,1.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.2,15.5,16.5,16.3,16.2,16.1,14.9,17.2,17.3,17.6,16.7,17.1,16.4,15.9],"script":[2.7,2.4,3,2.2,2.6,2,2.7,1.9,2.1,2.5,2.6,2.2,1.9,2.3,2.5],"paint":[12.2,12.1,11.4,13.4,12.7,13.1,12.3,11.6,13.7,13.3,13.4,13,14.1,13.1,11.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11,11.5,11.3,11.3,11.4,10.9,11.2,11.6,11.2,10.9,11.4,11.1,11.5,11.3],"script":[1.1,1.1,1.1,1,1,1.1,1,0.9,1.2,1.2,0.8,1.1,0.8,0.9,0.8],"paint":[9.8,9.4,9.6,9.7,9.8,9.6,9.2,9.6,9.8,9.1,9.6,9.7,9.6,9.6,9.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[255.8,256.4,256.8,256.1,257.9,255.7,256.4,259.4,255.4,256.4,254.6,256.7,260.4,258.3,255.4],"script":[26.4,26,25.9,26,26.3,26.2,26.2,26.3,25.7,26,25.7,26.5,26.2,26.4,25.9],"paint":[222.3,223.4,223.8,223.1,224.6,222.4,223.1,225.9,222.8,223.5,221.6,223.2,226.8,224.8,222]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.3,29.5,29.4,29.8,29.3,30.4,30,30.1,29.7,30.1,29.8,29.4,29.3,29.9],"script":[3.2,3.4,3.3,3.3,3.3,3.3,3.4,3.3,3.4,3.4,3.4,3.3,3.2,3.2,3.3],"paint":[25.1,25.1,25.5,25.4,25.7,25.2,26.2,25.9,26,25.6,25.9,25.7,25.4,25.3,25.8]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.5,8.8,10.3,9,9.8,8.7,9,9.5,9.8,9.7,11.8,9.6,10,9.7,9.7],"script":[8.7,6.8,8.2,7.4,7.4,6.7,6.9,7.6,7.7,7.1,8.3,7.8,7.9,7.7,7],"paint":[1.6,1.2,1.5,0.6,1.2,0.6,0.2,0.6,1,1.3,2.6,1.5,0.5,1,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5662965774536133]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2286481857299805]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.213926315307617]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7100896835327148]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.953502655029297]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.2,46.5,43.9,46.6,46.2,44.1,44.3,44.8,49.4,46.7,45.7,44.2,43.9,44.4,44.2],"script":[20.4,21,18.8,19.2,19.1,19,19.1,19.1,19.1,19,19.1,19.5,19.2,19.3,19],"paint":[21.7,22.1,21.7,22.2,22,21.6,22.1,21.7,22,22,22.1,21.5,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[53.2,50.5,50.4,46.3,46,47.7,47.3,46.7,47.3,46.5,47.1,47.7,47.1,48.2,45.3],"script":[23.4,23.3,24.5,22.3,22.2,22.5,22.5,22.4,22.4,22.4,22.2,22.1,22.3,22.4,22.2],"paint":[23,22.4,23.3,23.2,23.1,23,23.5,23.2,23,23.1,23,23,23.4,23.2,22.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.7,34.5,35.2,20.3,33.1,34.6,20.1,36.2,35.7,34.3,34.8,19.7,19.5,34.6,36.1],"script":[7.5,7.3,6.8,6.5,6.3,8.3,8.4,8.4,8.4,6.8,7.7,7.3,7.5,7.4,7.7],"paint":[10.3,10,12.2,11.4,10.1,10.2,11.3,11.7,11.3,11.1,10.6,11.9,9.8,10.9,11.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,5.9,3.7,2.6,2.7,2.6,4.5,2.9,7,4.6,2.7,2.6,5.2,5.3,3,2.9,2.6,2.4,3.4,6.8,2.5,3.5,5.8,4.3,2.8],"script":[0.5,0.4,0.1,0.5,0.3,0.2,1.2,0.2,0.1,0.5,0.2,0.2,1.1,0.1,0.1,0.6,0.9,0.3,0.3,0.1,0.6,0.5,0.8,0.2,0.3],"paint":[1.6,1,1,1.8,2.2,1.5,0.7,2.2,0.7,1.9,2.1,0.8,1.3,2,2.3,2.2,1.1,2,1.6,2.2,1.1,2,1.6,1.3,2.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[22.5,37.9,38.6,38,37.5,38.1,41.3,39,23,23.1,40.5,40.7,38,25,38.5],"script":[8.5,8,9.2,9.1,8.3,8.9,10.9,9.2,9.7,8.8,10.4,9.8,9.8,9.2,9.1],"paint":[13.8,12.4,13.4,12.6,12.9,12.4,14.4,13.1,11.5,12.5,13.5,14.4,12.6,14.6,12.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,11.5,15.3,11.4,12.5,16.1,11.5,13,11.6,11.6,11.8,11.2,11.8,11.8,12.9],"script":[0.3,0.6,0.4,0.2,0.6,0.3,0.4,0.4,0.2,0.6,0.2,0.2,0.2,0.2,0.2],"paint":[10.5,10.2,10.7,10.3,10.4,10.6,10.7,10.7,10.4,10.4,10.4,10.3,10.8,10.5,10.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[399.2,401.6,399.2,397.9,400.8,401.5,402.7,399.8,400.6,400.3,398.8,403.1,405.9,400.6,400],"script":[178.8,182.5,180.9,179.6,180,180.9,180.1,179.9,179.7,179.7,180.1,180.9,185.1,180.4,179.3],"paint":[212.2,213.2,214.3,213.3,215.2,214.4,216.1,214.8,214,214.6,212.6,216.2,215,214.2,213.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.9,53.2,47,52,51.9,53.2,52.2,54.2,48.6,53,47.5,53.4,51.8,52.3,52.4],"script":[18.9,19.5,18.9,19.4,19,19.6,19,19.1,20,19.5,19.3,19.4,19,19.1,19.3],"paint":[27.5,28.1,27.7,27.1,27.6,27.7,27.8,27.8,28.2,27.7,27.9,28.2,27.8,27.8,27.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,39.4,38.9,18.6,18.5,17.4,18.4,17.7,17.3,16.8,38.3,18.2,17.5,17.7,18.4],"script":[15.5,16.6,16.2,16.8,17.5,16.1,15.7,16.6,15.5,15.3,16.4,16.3,15.3,15.5,17],"paint":[0.7,1,1.3,1.4,0.9,0.7,0.9,1,0.9,0.6,1,0.6,1.7,1.2,1.1]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.805506706237793]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.225713729858398]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.314657211303711]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3121767044067383]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.35826873779297]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[29.2,29,29.4,29.1,29,29.2,29.2,29.5,29.4,29.4,29.1,29,30,29.9,29.3],"script":[6.9,6.8,7.3,6.9,6.9,7.1,7.1,7.3,7.3,7,7.2,6.9,7.2,7.3,6.9],"paint":[21.7,21.6,21.6,21.7,21.5,21.6,21.6,21.7,21.5,21.8,21.4,21.6,22.3,22.1,21.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.8,33.7,33.3,32.9,32.9,32.9,32.7,33.6,33.3,32.7,32.9,33.1,33.3,33.5,34.1],"script":[9.5,10.3,10.1,9.8,9.8,9.8,9.8,10.3,9.9,9.8,9.8,9.9,10,9.9,10.4],"paint":[22.6,22.7,22.7,22.4,22.5,22.5,22.3,22.7,22.9,22.3,22.5,22.6,22.7,22.9,23.2]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.2,12.4,12.3,12.5,12.1,12.3,11.9,12.9,12.8,12.4,12.8,12.2,13.7,11.7],"script":[2.3,2.1,1.8,1.8,1.5,1.7,2,1.3,2,1.6,1.7,2.2,1.7,2.6,1.6],"paint":[9.6,9.6,9.5,9.4,10,8.9,8.7,8.2,9.9,9.5,9.7,9.1,9.6,9.6,9.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,2.4,3.5,2.8,3.1,3.4,3.1,3.4,2.9,2.8,3.6,3,2.6,3.1,2.8,2.2,3,2.4,2.8,3,2.8,3,3.2,3.4,3.3],"script":[1.1,0.6,0.8,1.1,1,1,0.9,1.1,0.7,0.6,1.4,0.9,0.2,1,0.9,0.8,0.6,0.9,0.9,0.7,1,0.9,0.8,0.6,1],"paint":[1.8,1,1.5,1.5,1.9,1.8,1.7,2.1,2,1.4,1.4,1.3,2.3,1.5,1.7,1.3,2.1,1,1.7,2.2,1.6,1.3,2.3,1.7,1.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[15,15,14.4,14.7,14.2,17,14.4,17,14.6,16.8,14.8,16.3,15.4,15.4,14.9],"script":[2.2,2.4,1.6,2.1,1.8,1.9,1.6,2.3,1.6,2.1,2.2,2.3,1.8,2.6,1.8],"paint":[11.9,10.8,11.9,11.1,11.1,13.7,11,13.7,11.9,13.7,11.9,12.5,12.6,11.2,10.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,11.5,11.3,11.3,11.6,11.6,11.3,11.3,11.5,11.9,11.6,11.3,11.8],"script":[1.6,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.5,1.3,1.5,1.4,1.4,1.5],"paint":[9.3,9.5,9.5,9.6,9.5,9.3,9.6,9.7,9.6,9,9.5,9.6,9.7,9.4,9.8]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[300.8,303.7,305.7,305.5,303.1,304.5,305.9,302.9,300.6,302.6,303.7,301.9,306.4,302.4,304.8],"script":[72.4,72.9,76,76.8,74.7,75.8,76.9,72.8,73.7,75.9,73.6,73.7,73.8,74.2,75.7],"paint":[221.1,223.4,221.5,221.3,221.1,221.2,221.4,222.6,219.4,219.6,222.8,220.7,224.8,220.9,221.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.2,34.1,34.5,34.6,34.8,34.5,34.8,34.4,35.6,34.5,34.3,35,34.8,34.6],"script":[7.3,6.9,7.2,7.4,7.6,7.3,7.6,7.6,7.5,7.5,7.5,7.6,7.6,7.6,7.6],"paint":[26,26.2,26,26.1,26,26.4,25.9,26.2,25.8,27.1,26.1,25.8,26.4,26.2,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,14.3,14.1,15.2,13.8,13.6,14.1,13.9,13.7,15.2,15.5,13.5,14.2,13.4,14.6],"script":[11.5,12,12.2,12.7,11.6,11.8,12.2,11.9,11.9,12.6,13.3,11.1,12.2,11.8,12.7],"paint":[1.2,1.5,1,2.2,0.6,0.4,0.9,0.8,1,1.5,0.8,1.6,0.9,0.3,1.7]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7443227767944336]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.964658737182617]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.985597610473633]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6676416397094727]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.838895797729492]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[168.7]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.4,23.9,23.3,23.7,23.5,23.5,23.8,24.3,23.8,23.7,23.4,23.4,23.6,23.7],"script":[1.7,1.7,1.7,1.7,1.7,1.7,1.7,1.8,1.8,1.7,1.7,1.7,1.7,1.7,1.7],"paint":[21.7,21.3,21.8,21.2,21.6,21.4,21.4,21.7,22.2,21.6,21.6,21.3,21.3,21.5,21.6]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.9,26.4,26.4,26.5,26.8,26.7,26.7,26.7,26.2,26.4,26.4,26.4,26.5,26.3],"script":[3.8,3.9,3.7,3.7,3.7,4,4,4,3.8,3.7,3.6,3.7,3.8,3.9,3.8],"paint":[22.5,22.4,22.4,22.3,22.3,22.4,22.3,22.3,22.5,22.1,22.4,22.2,22.2,22.2,22.1]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.3,9.9,9.6,10.2,10,10.3,9.7,10.5,10.1,10.4,9.9,10.1,10.4,10.4],"script":[0.4,0.6,0.2,0.1,0.5,1.1,0.6,0.1,0.5,0.4,0.5,0.8,0.5,0.1,0.1],"paint":[8.9,8.7,8.8,7.9,8.5,7.9,8.5,8.2,7.7,8.6,8.8,7.6,8.5,9.4,9.2]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.6,2.2,2.3,2.5,1.6,3.1,1.8,2.2,2.1,2.8,2.5,2.3,1.9,2.2,2.7,3,2.5,2.3,2.7,2,2,2.8,1.6],"script":[0.7,0.6,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.7,0],"paint":[1.8,1.8,2.4,1.2,1.8,2.2,1.1,2.9,1.1,1.7,1.5,1.7,1.9,2.1,1.1,1.6,2.3,2.8,1.2,2.1,2.5,1.8,1.7,1.4,1.4]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[12.6,12.7,13,13.4,12.2,14,11.9,12.1,12.6,12.3,12,12.7,12.3,11.9,11.8],"script":[0.1,0.3,0.4,0.7,0.1,0.1,0.1,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.8,11.2,11.2,11.8,10.5,12.7,10.8,10.7,11.9,10.8,11,11.7,11,10.6,10.5]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,11.1,10.2,10.4,10,10.4,10.1,10.2,10.3,10,10.2,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.3,0.1,0.1,0.4,0.2,0.1,0.1],"paint":[8.9,9.4,9.6,9.6,10.4,8.9,9.9,9.1,9.8,9.5,9.5,9,9.4,9.6,9.6]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[248.5,249.6,248.1,247.8,248.4,249.6,248.2,245.9,248.4,248.2,248.4,250.6,246.8,251,248.1],"script":[17.4,17.5,17.5,17.2,17.3,17.7,17.3,17.3,17.7,17.5,17.5,17.7,17.6,17.6,17.9],"paint":[223.9,224.9,223.4,223.4,223.9,224.8,223.7,221.4,223.6,223.6,223.8,225.6,222.2,225.5,223.1]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,28,27.6,27.4,27.2,27.6,27.6,28.9,27.4,27.3,27.8,28.1,27.6,27.6],"script":[1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.7,1.7,1.7,1.8,1.8],"paint":[24.6,24.7,25.5,25.1,24.9,24.7,25.2,25.2,26.4,24.8,24.9,25.3,25.7,25,25.1]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9,9.8,10.3,9.7,10,9.5,10,10.6,10.2,10.2,10.9,9.9,10.7,9.9],"script":[7.9,7.4,7.5,7.7,7.8,7.6,7.7,8,8.1,7.4,8.2,8.4,8.6,8.3,8.2],"paint":[0.9,1.4,1.4,2,0.3,0.8,0.3,0.8,1.6,1.8,0.6,1.6,0.3,1.7,0.8]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.624821662902832]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9079294204711914]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.951869010925293]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.684422492980957]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.05843448638916]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.6]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.4,23.2,23.4,23.5,23.3,23.3,23.3,23.3,23.2,23.4,23.4,23.5,23.3,23.5],"script":[1.7,1.7,1.7,1.8,1.7,1.7,1.8,1.7,1.7,1.7,1.7,1.7,1.8,1.7,1.7],"paint":[21.5,21.3,21.1,21.2,21.4,21.2,21.1,21.2,21.2,21.1,21.3,21.3,21.3,21.2,21.3]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.2,26.2,26.5,26.1,27,26.2,26.4,28.2,26.2,26.2,26.2,26.1,26.2,26.8,26.3],"script":[3.9,3.7,3.6,3.7,3.9,3.7,3.8,4,3.8,3.7,3.6,3.7,3.7,3.6,3.9],"paint":[21.9,22.1,22.5,22,22.7,22.1,22.2,23.8,22.1,22.1,22.2,21.9,22,22.7,22]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10,9.9,10.3,9.7,10.7,10.1,10.4,11.2,11.3,9.5,9.8,10.5,10,10.2],"script":[1.1,0.1,0.5,0.3,0.1,0.7,0.8,0.7,1.1,0.1,0.1,0.5,0.5,0.8,0.1],"paint":[8.2,8.7,8.8,9.1,7.9,9,7.8,9.2,9.1,10.2,8.5,8.7,8.9,8.1,8.5]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.6,2.9,2.1,2.7,2.5,2.3,1.5,2.2,2.1,2.7,2.1,2.2,1.9,2.1,2.4,2.2,2.1,1.9,2.1,2.4,1.8,2.5,2,2.4],"script":[0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.3,0.5,0.1,0.9],"paint":[1.7,1.7,2.8,1.4,1.9,1.2,1.4,1.3,1.2,1,1.8,1.2,1.3,1.4,1,2.2,2,1.3,1.1,1.5,1.9,1.4,1.5,1.3,1.4]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,12.6,13,12,12.5,12.5,12.2,12.6,12.9,12.3,12.4,13,12.9,12.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.8,0.1,0.1,0.7,0.1,0.1],"paint":[11.9,11.5,10.3,11.6,11,10.8,11.2,11.5,11.6,11.3,11.6,11.1,11.2,12.1,10.4]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.4,9.8,10.4,10.3,10,10.4,10.2,9.8,10,10.3,10.3,10.8,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.3,0.2,0.2,0.1,0.1,0.3,0.2,0.1,0.3,0.4],"paint":[9.4,9.2,9.5,9.2,9.7,8.8,9.4,9.7,9.5,9.4,9.2,9.5,9.6,9.9,9]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[248.6,243.8,247.8,247.4,247.3,247.3,246.9,246.4,248.4,246.3,245.9,247,249.3,246.9,244.9],"script":[17.7,17.3,17.6,17.6,17.9,18.1,17.5,17.8,17.9,17.4,18.2,17.5,17.8,17.6,17.5],"paint":[223.7,219.4,223,222.6,222.3,222.1,222.3,221.4,222.5,221.9,220.7,221.7,224.4,222.1,220.2]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.5,28.4,27,27.1,27.2,27.8,27.6,27.4,27.4,27.1,27.4,27.5,27.2],"script":[1.7,1.8,1.7,1.8,1.7,1.8,1.7,1.7,1.7,1.8,1.8,1.8,1.7,1.7,1.7],"paint":[24.9,24.8,25.1,25.8,24.6,24.5,24.7,25.3,25.1,24.9,24.9,24.6,24.9,25,24.8]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,9.4,9.4,9.4,9.8,9.5,9.6,10.1,9.4,9.8,10.4,9,9.7,9.5,9.9],"script":[7.3,7.3,6.8,7.8,7.5,7.5,7.5,7.7,7.4,7.6,8.5,6.6,7.6,7.5,7.9],"paint":[0.6,0.8,2.4,0.2,1.4,0.6,0.2,1,0.9,1.2,1.1,1.1,0.8,1.7,1.8]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6143827438354492]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8971624374389648]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9390954971313477]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6891355514526367]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.012824058532715]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.8]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.1,23.1,23.4,23.7,23.2,23.4,23.4,23.2,23.3,23.2,23.4,23.2,23.2,23.7],"script":[1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.5],"paint":[21.4,21.2,21.2,21.5,21.7,21.3,21.4,21.4,21.3,21.4,21.3,21.5,21.3,21.3,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.2,26.1,25.8,26,25.8,25.9,26.1,25.9,26,25.7,25.7,26,26.3,25.9],"script":[3.5,3.4,3.6,3.4,3.4,3.6,3.5,3.4,3.4,3.5,3.3,3.4,3.4,3.4,3.4],"paint":[22.2,22.3,22.1,22,22.1,21.8,22,22.2,22,22.2,22,21.9,22.2,22.4,22.1]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.4,10.4,10.7,10,10.9,10.9,10.9,10.6,10.3,10.7,10.6,10.3,10.9,10.1],"script":[0.9,0.6,0.8,0.1,0.6,0.8,0.1,0.5,0.6,0.6,0.1,0.1,0.1,0.8,0.1],"paint":[9.4,8.8,8.1,9.2,7.9,8.5,9.6,8.3,9.1,8.5,9.5,9,8.7,9.5,8.9]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.3,2,2.2,1.9,2.6,1.9,2.3,2.4,2.1,2.1,2,1.9,1.9,2.6,1.8,2.4,2.7,1.7,2.4,2.4,2.4,2.6,2.7,2.3,2],"script":[0.5,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0],"paint":[1.8,1.4,2,1.7,1.6,1.4,1.7,2.2,1.6,1.3,1.1,1.7,1.1,2.5,1,1.4,2.2,1.2,2.2,1.9,1.4,0.8,2.2,1.9,1.2]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,13.2,13.6,13.4,12.9,13,12.7,12.6,12.5,12.5,13.9,12.6,12.7,13.3,12.4],"script":[0.7,0.9,0.9,0.5,0.1,0.8,0.5,0.4,0.6,0.1,0.6,0.1,0.1,0.4,0.1],"paint":[11,11.4,11.5,12,11.6,10.7,11.2,11.2,11.2,11.3,11.7,11.8,11.6,11.8,11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.1,10.6,10.1,10.8,10.2,10.4,10.3,10.3,10.2,10,10.4,10,10],"script":[0.3,0.1,0.1,0.4,0.1,0.4,0.3,0.1,0.1,0.3,0.3,0,0.1,0.2,0.1],"paint":[9.1,9.4,9.6,9.2,9.5,9.8,9.3,9.7,9.3,9.2,9,9.1,9.8,9.3,9]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[245.7,248.7,248.9,244.9,247.7,247.9,246.5,246.1,245.9,246,245,248.1,247.2,248.9,247.3],"script":[16.1,16.2,16.6,16.4,16.6,16.5,16.6,16.3,16.6,16.6,16.1,16.3,17,16.3,16.4],"paint":[222.3,225.2,225.2,221.3,223.8,223.9,222.8,222.6,222,221.9,221.8,224.5,223,224.4,222.9]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.3,27.4,27.6,27.3,27.7,27.9,27.2,27.5,27.5,27.7,27.1,27.5,27],"script":[1.5,1.5,1.6,1.6,1.6,1.5,1.6,1.5,1.5,1.6,1.5,1.5,1.5,1.5,1.5],"paint":[24.9,24.9,25,25.1,25.2,25.1,25.3,25.6,24.9,25.1,25.2,25.4,24.9,25.2,24.8]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9,9,9.2,10.6,9.3,9.2,9.4,9.4,9.2,10.2,9.4,9.5,9.3,10],"script":[7.3,7.5,6.8,7,8.3,7.3,7.4,7.5,7.5,7.7,8,7.6,6.9,7.1,8.1],"paint":[0.8,0.7,0.6,0.6,1,0.4,0.2,1.1,0.7,0.4,1.4,0.6,1.5,1.3,1.7]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6010408401489258]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.990011215209961]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.036379814147949]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6422033309936523]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.496575355529785]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[32.5,32.3,32.7,32.5,32.5,32.6,32.3,33.7,32.7,32.4,32.8,32,32.7,32.5,32.3],"script":[10.4,9.9,10.6,10.3,10.5,10.1,10.2,11.2,10.5,10.3,10.4,9.9,10.3,10.3,10.3],"paint":[21.6,21.8,21.6,21.6,21.5,22,21.5,22,21.6,21.6,21.8,21.6,21.8,21.6,21.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.7,36,36.6,36.8,36.2,37.1,36.7,36.6,36.8,36.7,36.2,37.1,37.4,36.6],"script":[13.1,13.1,13,13.1,13,13.1,13.2,13.1,13.1,13.2,13.2,13,13.6,13.3,13.2],"paint":[22.6,23,22.4,22.9,23.2,22.5,23.3,23.1,22.9,22.9,22.9,22.6,22.9,23.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,10.6,10.4,10.8,10.5,10.9,10.9,11,10.2,10.1,11.2,12.3,11.4,10.8],"script":[0.5,0.9,1,0.2,1.4,0.5,0.7,0.9,1,0.9,0.7,1.4,1.1,1.4,0.2],"paint":[9.7,9.4,8.4,9.3,7.4,8.5,9.1,9.3,8.8,8.4,8.5,8.9,9.4,8.7,8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[4,2,2.7,2.5,2.7,2.2,3,1.8,2.4,2.1,1.9,2.2,2.2,2.2,1.9,2.4,2.2,2.1,2.4,2.4,2.7,2.2,2.7,2.1,2.5],"script":[0.1,0.3,0.1,0.1,0.6,0.1,0.1,0.4,0.2,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[1.4,0.9,2.5,1.9,1.6,1,2,1.3,1.6,1.3,1.7,0.9,2,1.2,1.1,1.4,1.2,1.3,1.3,1.6,2.5,2,2.5,1.9,2.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,12.4,12.9,12.7,12.8,13.5,12.8,12.8,12.3,14,13.2,12.6,13.1,12.6,12.8],"script":[0.1,0.3,0.1,0.5,0.5,0.1,0.1,0.1,0.1,1.8,0.1,0.1,0.1,0.1,0.1],"paint":[11.6,11.4,11.7,11.1,11.2,12.1,11.5,11.3,11.3,10.4,11.9,11.5,12,10.4,11.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.1,10.8,10.5,10.3,10.4,10.4,10.3,10.3,10.4,10.4,10.3,11,10.3,11],"script":[0.3,0.2,0.1,0.2,0.2,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[9.1,9.1,10.4,9.8,9.4,9.7,9.5,9.7,9.4,9.4,9.6,8.7,10,9.4,10.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[322.3,326.6,329.1,326.2,326.3,324.5,325.6,327,326.6,325,325.9,329,322.7,328.2,324.9],"script":[100.8,101.9,102.6,102.8,102.7,101.8,101.9,102.2,101.5,102,101.7,105,101.3,102.8,101.1],"paint":[214.2,217.5,217.8,216.1,216.5,215.6,216.5,217.6,217.8,215.8,217,216.7,214.3,218.2,216.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.7,36.5,37.1,37.5,38.1,37.4,37.1,36.8,37.6,37.1,37.3,37.1,36.8,37.2],"script":[9.7,9.6,9.7,10.2,9.9,9.7,10.2,9.7,9.8,10.3,10.3,10.2,10.2,9.7,10.1],"paint":[26.2,26.1,25.8,25.9,26.6,27.4,26.3,26.4,26,26.3,25.9,26.2,25.9,26.1,26.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.9,14.4,14.6,14.3,13.6,14.1,13.8,13.3,13.6,15.5,13.4,15.3,14.7,13.7],"script":[11.7,11.4,12.6,11.9,11.8,11.7,12.1,11.5,11.1,11.9,13.4,11.4,12.6,11.9,12.3],"paint":[1,0.3,0.9,1.6,0.3,1.5,1.8,2.1,1.6,0.6,0.3,1.4,2.1,2.1,1.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6637563705444336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.671767234802246]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.705085754394531]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9576692581176758]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.76193714141846]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[33.2,33.6,31.4,31.2,31,31.1,29.9,30.8,30.8,30.8,33.5,32.8,31.6,30.1,34.1],"script":[5.2,5.7,5.5,5.5,5.5,5.7,5.6,5.7,5.5,5.5,5.7,5.7,6,6,5.6],"paint":[21.1,21.2,21.5,21.7,21.7,21.4,21.4,21.2,21.7,21.6,21.3,21.4,21.6,21.7,21.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[30.5,37.9,30.8,36.3,31,36,31.4,30.6,35,37.9,38,36.5,36.4,36.7,36.7],"script":[7.6,7.7,7.7,7.7,7.8,7.9,7.7,7.7,7.8,7.7,7.6,8,7.3,7.8,7.8],"paint":[22.4,22,22.5,21.9,22.6,22.1,22.5,22.3,22,21.9,21.8,22.7,21.6,22.2,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13,13.5,14,13.3,13.1,13.8,13.1,12.9,28.4,13.3,14.6,28.8,14,13.9],"script":[3.1,2.7,2.9,2.7,2.8,2.6,2.4,1.7,2.6,3,2.4,3.3,2.8,2.8,2.7],"paint":[9.8,7.9,9.4,9.1,9.2,9.4,8.7,10.4,8.4,8.9,9.6,9.8,8.8,8.1,10.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10,3.1,7.5,10.6,7.2,4.8,7.6,7.7,2.9,12.3,3.6,7.1,5.5,6.2,3.6,3.2,5.6,4.8,3.9,7,4,3.6,3.6,2.9,3.5],"script":[0.7,1.3,0.6,0.2,0.7,0.9,0.7,1.8,0.9,0.7,1.2,1.2,1.2,0.9,1.2,1.1,1.3,1.3,0.3,1.1,1,1.3,1.2,0.9,0.9],"paint":[1.5,1.3,1.4,1.6,1.6,1.1,1.1,1.6,1.8,1.2,1.3,1.4,1.9,1.9,1.5,2,1.3,1.5,2,1.4,2.2,1.2,1.6,1.8,2.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[31.5,30.1,15.1,14.9,29.1,15.2,14.5,30.7,15.4,14.6,14.7,32.5,15.9,15.2,14.6],"script":[1.3,1.6,1,1.4,1,0.8,1.1,1.6,1.4,1.5,1,2.1,1.2,1.2,1],"paint":[13,12.5,12,11.7,11.4,11.2,12.3,11.8,13.2,11.6,13.1,13.6,12.1,13.7,12.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.7,13.2,11.6,14.7,14.6,16.3,12.8,11.6,16.3,14.1,14,13.2,11.9,14.7],"script":[0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.3,0.5,0.4],"paint":[10.5,10.3,10,10.2,10.7,10.3,10.7,10.1,10.1,10.7,10.5,11.4,10.1,10.4,10.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[722,290.6,711.6,281.8,289.1,289.6,726,723.8,282.7,283.4,283.7,284.4,290.1,281.8,714.9],"script":[60.8,63.7,62.5,61.5,60.5,62,61.7,60.5,62.1,61.8,60.6,63.9,63.7,61,60.8],"paint":[217.7,217.5,219.5,212.5,219.6,214.9,219.9,221.5,212.8,213.8,215.5,212.5,218.5,213.1,217.4]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,38.3,37.7,37.2,33.9,33.5,33.1,33.8,37.6,32.8,32.9,38,33.3,37.7,37.9],"script":[6.3,6.2,6.4,6.3,6.5,6.6,6.4,6.3,6.3,6.3,6.5,6.6,6.4,6.4,6.4],"paint":[25.2,25.9,25.3,25,26.5,25.8,25.8,26.6,25.4,25.6,25.5,25.4,25.9,25.4,25.6]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,34,32.8,34.5,33.3,12.6,10.9,32.1,32.7,29.7,11.1,31.9,31.8,10.9,11.7],"script":[8.6,9.4,8.5,10.4,8.4,10.1,8.5,9.3,9.2,9.3,9,8.3,8.8,7.8,8.7],"paint":[0.7,1,1.4,0.3,1.6,1.9,1.5,0.9,1.2,1.1,1.5,2.2,1.2,1.1,1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6486625671386719]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.666378974914551]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.765705108642578]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0226306915283203]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.158863067626953]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[45.1,46.7,46.5,46.9,47.3,47.2,46.5,46,47.6,47.7,45.7,46.5,46.8,46.6,47.6],"script":[23.7,24.7,24.6,25.3,25.7,24.5,24.9,24.6,25.8,25.4,24.3,24.4,24.9,24.4,25],"paint":[21,21.6,21.4,21.2,21.2,22.2,21.2,21.1,21.4,21.8,21,21.7,21.4,21.8,22.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[63.3,62.7,62.8,63.3,62.2,61.8,63.6,63.3,61.9,62.5,60.4,62.8,62.8,61.5,61.3],"script":[39.6,39.6,39.4,39.7,39.1,38.7,40.1,39.8,38.7,39.3,36.8,39.2,39.4,38.3,38.1],"paint":[23.2,22.7,23,23.1,22.6,22.7,23.1,23,22.7,22.8,23.2,23.1,22.9,22.7,22.8]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,19.9,20.6,20.9,20,19.7,20.3,21.4,21.1,20.1,21.5,20.1,19.9,20.6,20.1],"script":[8.2,8.3,8.8,8.4,8.4,7.9,7.6,9.5,8.5,8.2,9.1,8.6,8.5,8.2,8.3],"paint":[9.6,10.5,10.3,11.3,10.2,10.2,11,11.1,11.3,11,11.5,10.9,10.1,11.3,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[14.8,15.2,15,14.4,14.5,15.1,14.6,15,15.3,14.3,14.2,14.5,15,15.3,16.1,14.2,14.9,14.7,14.3,14.2,16,15.2,15.5,14.6,15.1],"script":[11.5,11.9,11.6,11.4,11.5,12.6,11.7,11.9,12.1,11.8,11.5,11.6,11.7,11.3,12.7,11.4,11.8,11.6,10.8,11.5,12.6,11.4,12.7,10.8,11.9],"paint":[3.1,2.8,2.1,2.9,2,1.5,2,1.9,2.3,1.5,1.8,2.4,2.5,3.7,2.5,2.1,2,1.8,3,1.9,2.1,3,1.9,2.8,2.2]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.4,22.7,23.8,23.7,24.5,23.6,24.4,22.8,24.5,24.1,24.4,23.7,22.7,25.6,24.1],"script":[8.6,8.2,8.2,9.3,9.1,9.2,8.7,8.7,9,8.8,8.9,9,8.3,9.6,9.4],"paint":[13.8,13.4,14.4,13.4,14.4,12.2,14.6,12.9,14.2,14.3,14.4,12.5,13.4,15.5,12.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,16.4,16.5,16.3,16.9,15.9,17.4,16.2,16.9,16.5,16.6,16.5,16.1,16.3,16.7],"script":[5.3,5.3,5.4,5.4,5.6,5,5.5,5.3,5.4,5.5,5.3,5.3,5.4,5.3,5.6],"paint":[10.6,10.2,10.2,10.3,10.6,10.5,11.2,10.3,11,10.3,10.5,10.2,10,10.4,10.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[423.8,422.3,426,426.4,425.5,426.8,424.2,425.2,425.1,424.7,428.7,424.1,424.1,426,426.4],"script":[194.2,191.6,194.7,194.9,196,195.1,194,196.5,195.3,195,195.6,194.4,193.9,194,196.2],"paint":[222.6,223.7,224.1,224.1,222.4,223.8,223.1,221.5,222.6,222.4,225.9,222.6,223.1,224.7,222.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.2,56.6,54.7,56.9,56.3,54.5,57.2,54,55.9,54.3,55.6,56.2,57,57,54.8],"script":[30.2,29.7,27.8,29.8,29.7,27.5,30.4,27.3,28.2,27.5,28.2,29.4,30.5,30,27.9],"paint":[26.1,26.1,26.1,26.2,25.7,26.1,26,25.9,26.8,25.8,26.6,25.9,25.6,26.2,26.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,22.5,22.9,22.6,23.2,22.6,21.7,22.5,25.2,21.8,23.1,23.1,22.6,22.8,23.2],"script":[20.9,21,21.1,20.2,21.8,20.7,20.4,21.5,23.4,20.5,21.6,21.6,20.9,20.9,21.4],"paint":[0.3,1,1,1.4,1.3,1.8,1.2,0.3,1,0.7,1.1,0.9,1.6,1,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.223213195800781]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.164497375488281]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.164779663085938]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.134173393249512]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.93343734741211]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[984.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.6,28.4,28.3,28.4,28.4,28.6,28.3,28.7,27.8,28.2,28.7,28.5,28.4,28.2],"script":[6.3,6.6,6.4,6.4,6.6,6.4,6.5,6.4,6.5,6.2,6.5,6.8,6.4,6.6,6.4],"paint":[21.3,21.5,21.5,21.4,21.3,21.4,21.5,21.3,21.6,21,21.2,21.4,21.5,21.3,21.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.1,32.4,32.4,32.8,32.3,32.1,32.2,32.8,32.6,32.4,32.9,32.5,32.6,32.7],"script":[8.9,9.1,9.4,8.8,9.4,9,9,8.9,8.8,8.9,9.5,8.9,9.1,8.8,8.8],"paint":[22.9,22.5,22.5,23.1,22.8,22.7,22.5,22.7,23.5,23,22.4,23.4,22.8,23.2,23.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.1,12.5,14.8,12.9,13,12.6,12.5,12.8,13.3,13.1,13.1,15.3,15,12.9],"script":[3,2.6,2,3.4,2.9,2.8,2.7,2.5,2.1,3.3,2.9,2.7,3.8,2.7,3.1],"paint":[8.6,9.5,8.9,9.3,8.9,8.5,8.1,9,9.6,9,9.2,8.7,9.7,10.8,8.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.7,2.9,3.9,3.3,3.3,3.8,3.2,3.4,3.6,3.9,3,3,3.2,3.2,2.8,3.1,3.2,2.6,3.2,3.3,3.3,3.3,3.3,3.7],"script":[1.6,1.5,1,1.6,1.1,0.7,0.9,1,1.4,0.9,1.4,0.9,1.1,1.1,1.2,0.7,1.1,1.3,1,1,1.1,0.7,0.6,1.2,1.4],"paint":[1.9,2.1,1.1,1.3,2.1,2.5,2.7,1.3,1.1,2.2,1.5,1.9,1.1,2,1.6,1.9,1.1,1.1,0.7,0.5,2.1,1.8,2.4,1,2.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[13.9,14,14.5,14.5,14.4,15.3,15.1,14.7,13.9,14.3,14,16.1,14.1,15.4,14.6],"script":[1.2,0.6,1.5,0.9,1.1,0.9,1.1,1.4,1.1,1.3,0.9,1.3,0.3,1.1,1.1],"paint":[12.4,11.7,11.9,11.6,12.6,12.4,12.9,12.3,11.8,12.1,11.6,13.7,12.9,12.6,12]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11,10.9,10.8,11,11.6,10.9,10.8,10.9,10.9,11,10.8,10.9,10.8],"script":[1,0.8,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.5,0.6],"paint":[9.6,9.6,9.8,9.9,9.5,9.4,10.3,9.7,9.6,9.5,9.7,9.7,9.7,9.8,9]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[292.4,293.1,293.5,291.7,294.3,295.6,292.7,295.2,295.5,294.5,294,291.7,294.6,295.1,293.3],"script":[70.8,70.4,71.9,71.8,71.4,72.9,72.5,71.2,72,71.6,71.9,71,72.1,72.4,70.7],"paint":[214.3,215.4,214.3,212.9,215.9,215.6,213,216.8,216.3,215.8,215,213.7,215.2,215.6,215.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,32.2,32.5,32.3,32.6,32.3,32.5,32.4,32.2,33.2,32.5,32,32.5,32.3,33.1],"script":[6.3,6.4,6.6,6.6,6.6,6.5,6.6,6.6,6.5,6.5,6.6,6.5,6.7,6.5,6.8],"paint":[24.8,24.8,25.1,24.8,25.1,24.9,25,24.9,24.7,25.7,25,24.6,24.9,24.9,25.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.2,12.5,11.7,11.8,10.8,11,11.1,12.3,11.1,12.2,12.5,11.1,11.6,11.1],"script":[9.5,9.7,11,9.6,9.9,9.5,9.4,9.4,10.1,9.3,10.1,9.5,9.5,9.4,9.1],"paint":[0.3,0.3,0.3,1.5,1,0.3,0.6,1,1.2,0.7,0.7,2.2,1,2,0.3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5754966735839844]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3913002014160156]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4268722534179688]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6977405548095703]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95158290863037]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.8,28.9,29.6,29.8,29.9,29.8,29.2,30.3,30.1,29.6,30.6,29.9,29.7,29.7],"script":[6.6,6.7,6.5,6.6,7,7.1,6.6,6.4,7.1,6.7,6.5,7,6.9,7,6.6],"paint":[22.4,22.5,21.9,22.4,22.2,22.2,22.6,22.2,22.6,22.8,22.6,23,22.4,22.1,22.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.1,34.6,34.6,35,35.2,34.6,35.1,34.8,34.2,34.4,33.4,34.6,33.8,34.2,34.6],"script":[11,10.6,10.6,10.7,10.9,10.6,10.7,10.6,10.1,10.6,10.1,10.6,10.1,10.3,10.5],"paint":[23.4,23.4,23.4,23.7,23.7,23.4,23.8,23.6,23.5,23.2,22.8,23.4,23.2,23.3,23.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,12.6,11.9,12.3,10.4,10.9,11.7,11.4,12.1,11.5,11.3,11.4,11.6,11.4,12],"script":[1.1,0.2,0.7,1.4,0.9,0.2,0.9,1.2,1.4,1.2,0.6,0.8,0.8,1.3,1.2],"paint":[9.8,10.4,9.8,9.4,8.6,9.4,9.5,9.1,9.7,9.1,9.5,9.2,9.7,9.2,10.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.2,2.5,2.3,2.2,1.9,2.3,2,2.8,2.5,2.6,2.2,2.2,2.7,2.2,1.6,2.5,2.3,2.4,1.5,2.3,3.1,2.2,1.7,1.9],"script":[0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0],"paint":[1.8,2,2.1,1.7,2,1.7,2.1,1.1,1.7,1.6,1.8,2,2,2.6,1.4,1,1.5,2.1,1.3,0.7,2.1,2,1.7,1.6,1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.9,14.4,15.5,15.2,14.9,14.8,14.7,15.6,15.1,13.8,17.2,14.3,14.3,15.6],"script":[0.9,1,1,1.7,1.3,0.9,1.1,0.9,1.4,1,1.3,1.3,1.3,0.9,1.3],"paint":[11.6,13.3,12.4,12.3,12.9,12.8,12.7,12.3,13.2,13.1,10.6,14.9,12,12.4,12.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.2,11.1,11,11.5,11.3,11.2,11.3,11.9,11.9,11,11.4,11.7,12],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.4,0.6,0.7,0.6,0.6,0.6,0.6,0.6],"paint":[10.2,10.2,9.8,9.8,9.8,10,10.3,10,10.5,10.6,10.9,9.9,10,10.1,10.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.7,317,316.9,315.7,316,316.7,317.5,314.4,315.7,314.5,320.9,315.2,316.5,316.8],"script":[77.6,78,78.5,78.8,78.4,78.6,77.9,77.9,77.2,78.7,77.6,78.2,78.9,78.8,77.8],"paint":[228,231.6,230.4,229.9,229.4,229.1,230.5,231.5,229.3,229.2,229,234.7,228,230,230.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.4,37.5,36.7,36.7,36.1,36.6,37.1,37,36.3,37,37.3,36.4,36.1,37.4],"script":[6.7,6.9,7.5,7.4,7.2,6.8,7.4,7.4,6.9,6.8,7.2,7.2,6.9,6.8,7.4],"paint":[28.6,28.5,28.9,28.3,28.3,28.1,28.3,28.7,29.1,28.5,28.8,29.1,28.5,28.1,29.1]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,9.7,9.9,9.3,10,9.7,10.3,10.3,9.5,10.2,11.1,9.3,9,9.5,9.7],"script":[7.4,7.9,8.1,7.9,8,7.6,8.4,7.8,7.8,8.1,8.5,7.3,7.5,7.4,8],"paint":[2.2,1.6,0.9,0.2,1.4,1,1,1.7,1.1,1.9,1.7,0.2,0.3,1.2,0.2]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5823783874511719]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1282949447631836]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1071624755859375]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7695455551147461]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.758095741271973]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[45,33.5,42.5,36.4,44,37.1,44.8,43.2,43,35.8,44.8,30.6,44.8,29.6,31.5],"script":[7.8,7.8,8,7.9,7.7,7.8,7.8,7.7,7.8,7.8,7.8,7.8,7.9,7.8,7.7],"paint":[21.2,21,20.7,20.8,20.7,20.7,20.9,20.6,20.8,21,20.7,21.4,20.8,21.5,21.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[42.7,35.6,37.3,40.9,34.7,39.9,36.1,35.2,36.1,35.8,35,34.7,34.9,34.7,34.5],"script":[12.1,12.4,12.2,12.1,12.2,12.3,12.3,12.4,12.4,12.2,12.4,12.4,12.5,12.2,12.4],"paint":[22.2,22.2,22.1,22,21.9,22.1,21.9,22.3,22.2,21.8,22.1,21.9,21.9,22,21.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.2,47.4,16.9,16.5,17.7,47.5,48.1,16.4,16,47.2,48.2,52.1,49.4,16.8,48],"script":[4.3,3.9,4.3,4.6,4.6,4.6,5,4.7,4.5,5.2,4.3,5.3,4.3,4.5,3.6],"paint":[10.4,11.4,10.5,10.9,11.1,11.5,10.5,10.3,10.5,10.8,11.6,13.3,12.3,11.3,12.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[12.1,11.1,8.4,7.1,12.9,11.3,6.8,14.1,6.3,6.4,7.3,6.3,10.2,6.9,8.1,7.4,7.3,13.4,6.3,12.3,8.8,7,10.4,6,6],"script":[2.9,1.8,2.5,3.3,2.1,2.7,2.3,2.9,2.8,2.9,2.2,2.1,2.5,2.4,2.2,2.4,3.1,2.4,2.9,2.2,3.4,3,2.9,2.1,2.4],"paint":[3.6,3.5,2.7,3,3.4,3.1,3.1,3.1,3.1,4,3.2,2.9,3.7,2.7,3,3.5,3.2,2.6,4.1,3.1,3.1,2.7,3.7,2.6,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,48.7,47.9,48.9,50,49,48.9,52.5,48.9,49,49.1,49.3,52.6,49.5,48.9],"script":[2.7,2.6,2.5,2.4,2.4,2.2,2.3,2.7,2.4,2.4,3,1.9,2.2,2.5,2.5],"paint":[14.7,14.1,14.5,15.1,14.9,15.9,15.4,15.3,14.3,13.8,13.3,16.3,15.6,14.6,15.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,13.3,15.3,15.1,15.3,13.5,15.9,13.1,15.2,14,13.8,13.9,15.5,13.4,15.5],"script":[5.5,5.3,5.4,5.1,5,5.8,5.9,5.4,5.7,5.8,5.7,5.4,5.3,5.3,5.3],"paint":[11.4,10.7,10.5,10.6,10.4,10.6,11.8,11.1,11.4,11.2,11.3,11,11.7,10.9,10.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[298.9,292.9,295.4,293.6,295,289,295.8,296.4,299,292.7,297,300.7,293.5,290.8,290],"script":[81.3,83.5,80.3,84,82.9,80.9,84.1,83.7,81.7,81.9,83.8,81.7,81.6,81.8,82.4],"paint":[204.4,204.4,204.1,201.8,202.3,203.5,201.2,202.2,205.8,205.3,203.6,207.9,205.9,203.3,203.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,44,37.8,37.1,36.7,36,35.9,35.8,44.6,43.7,36.1,44.6,43.6,36.5,45.4],"script":[9.4,9,9.7,10,9.4,9.6,9.6,9.4,9.8,8.9,9.7,9.2,9,9.4,9.2],"paint":[25.9,25.8,27.6,26.6,26.8,25.9,25.8,25.9,25.8,25.7,25.8,25.8,25.6,26.6,26.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.8,12.5,11.8,12.3,11.7,12.2,11.8,11.9,12.7,12.3,12.6,11.3,12,11.3,13.2],"script":[8.4,7.5,8.2,8.8,8.4,8.4,8.1,8.3,10,9.1,8.5,8,8.8,8.1,9.1],"paint":[2.6,2.2,2.9,2.2,1.9,2.9,2.4,2.5,1.6,2.8,3.3,1.2,2.3,1.4,2.5]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6561355590820312]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.627976417541504]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.562768936157227]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9666309356689453]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.449618339538574]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[54.3,50.6,57.6,49.9,52.1,51.8,53.6,57.8,53.6,53,56.3,52.6,54.8,52,54],"script":[27.4,27.1,26.6,25.7,25.8,26.8,25.4,27,26.8,27.1,26.5,27.6,27,25.5,28.7],"paint":[21.8,22.2,22.6,21.8,21.6,21.8,21.9,21.8,21.6,21.5,21.9,22.2,22.1,22.3,21.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[72.1,66.5,63.5,66,66,62.9,65,66.5,63.7,66.5,66.3,66.3,65.4,64.9,65.2],"script":[38.4,37,38.5,38.4,38.3,39.2,37.1,38.7,38.2,38,38.6,38.6,38.9,38.6,38.4],"paint":[23,22.9,23.1,23.3,23.2,23.2,22.7,22.9,22.9,22.9,23.1,23.6,23.4,23.5,23.6]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.3,35.4,34.6,36.2,34.8,36.7,38.3,34.6,38.4,35.1,34.6,34.7,33.6,37.9,36],"script":[4.3,4.9,4.5,5.1,4.6,4.4,3.6,4.4,4.7,3.9,4.1,4.5,4.3,4.3,4.7],"paint":[13.6,12.1,12.2,13.3,12.6,13.5,13.1,12.9,12.5,13.7,10.6,12.6,10.1,13.3,12.3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[17.6,17.7,17.2,17.6,18.2,18.1,17.5,19.3,16.6,16.5,16.9,20.1,18,20.2,16.7,17.2,16.7,16.3,17.1,17.6,16.5,16.6,17.7,15.9,21.1],"script":[13.1,12,13,12.3,13.1,12.3,11.9,12.2,12.3,12.6,12,12.4,12.3,13,12.2,12,11.3,11.1,12.1,12.9,12,11.7,12.7,11.9,12.5],"paint":[2.7,3.9,3.1,4.8,3,4.4,2.9,3.3,2.9,3.7,2.9,3.8,1.9,3.3,3.6,3.6,4.3,2.5,3.9,2.6,2.6,3.5,2.7,2.2,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[38.4,37.9,36.8,37.5,38.1,37.3,38.4,37.5,39.4,37.5,40.1,38.8,20.6,36.7,37.6],"script":[4.8,4.2,4,4.6,4.6,4.3,4.5,4.6,4,4.5,4.5,3.8,5,4.2,4.1],"paint":[16.1,15,15,14.4,15.2,14.7,16.3,14.3,15.4,15.7,14.6,14.9,13.9,14.6,15.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,19.6,20.5,20,22.5,20,21.7,19.4,21.2,20.1,21.7,20.9,19.8,22.3,23.1],"script":[7.8,7.6,7.6,7.7,7.4,7.4,7.1,7.6,7.8,7.3,7.4,7.6,7.5,7.4,6.9],"paint":[12,11.2,11.8,11.5,11.9,11.5,12,11.3,12,12,11.6,11.7,11.5,11.9,10.8]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[420,421.6,431.2,416,417.2,419.2,420,417.5,419.8,418.8,420.4,418.3,422.4,422.3,424.2],"script":[194,195.5,205.6,192.2,192.1,194,192.9,191.6,194.5,193.5,193.2,192.9,193.5,195.5,193.4],"paint":[222.7,222.6,222.2,220.4,221.6,221.8,222.5,222.5,222,222,223.8,222.1,224.7,223.4,222.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66,65,64.2,66,64.9,63.7,62.2,63.3,66,64.3,67,66.9,70.7,62.7,59.6],"script":[32.2,32.1,32.4,32.4,32.9,30.9,30.7,31.2,32.1,32.6,32.4,32.6,33,30.8,32.4],"paint":[26.9,26.8,26.3,27.1,26.9,27.1,26.7,26.6,27.2,26.5,26.7,27,26.7,27,26.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[46,44,22.1,22,42,22,21.7,21.9,44,22.9,43.4,22.1,21.9,22.2,43],"script":[22.9,20.9,18.3,19.2,20.4,18.6,18.5,18.4,19.9,18.2,22.2,19.2,18.6,19,21.4],"paint":[3.3,3.1,2.1,1.7,3.7,1.6,1.6,3.4,2.8,2.3,1.9,2,2.8,2.5,2.7]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.24592399597168]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.192009925842285]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.230036735534668]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.256852149963379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.08543586730957]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[122.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,31.9,32.7,32.5,32,31.9,32.7,32.7,32.8,31.5,31.7,32.8,32,32],"script":[10.2,10,9.5,10.2,9.7,9.6,9.5,9.9,10,10,9.2,9.5,9.9,9.7,9.7],"paint":[22,22.1,21.8,22,22.3,21.8,21.8,22.3,22.1,22.2,21.8,21.6,22.3,21.8,21.8]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.7,33.2,34,34.2,33.1,33.7,34.7,33.5,33.9,33.9,34,34.2,33.9],"script":[11.2,11.1,11.3,11,11.1,11.2,11,11.2,11.2,11.2,11.2,11.5,11,11.1,11.2],"paint":[22.2,22.2,21.8,21.7,22.4,22.4,21.5,21.9,22.9,21.7,22.1,21.9,22.4,22.5,22.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,11.5,11.9,12.2,12.1,12.4,11.9,12.2,13.8,11.7,11.8,12.9,11.7,12],"script":[1,1.2,0.9,1.2,1.4,1.9,1.4,0.7,1.2,0.7,1.4,1.4,1.4,0.8,1.4],"paint":[10.3,9.6,9.7,9.3,9.6,8.9,9.5,10,9.8,11.9,8.8,10.1,10.4,9.8,9.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[5.3,4.4,4.2,4.8,4.3,4.4,4.3,4.6,4.5,4.2,4.5,4.2,4.8,3.7,4.6,5.8,4,4,4.6,4.7,4.3,4.2,4.2,4.3,4.5],"script":[2.3,2.2,1.9,2.5,2.6,2.2,2,2.3,1.9,2.1,2,2,2.3,2,2.3,2.1,2.1,1.8,2.4,2.4,2.2,2.1,2.2,1.9,2.6],"paint":[1.8,2.1,1.3,2.1,1.6,2.1,1.5,2.1,2.5,1.5,2.3,1,1.4,1.6,2.2,1.6,1.2,1.4,2.1,2.1,1.4,1.2,1,1.3,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[13.7,14.1,14,15,13.9,15,14.6,14.5,13.6,14.3,13.4,14.6,13.5,14.5,14.9],"script":[0.7,0.6,1,0.7,1.3,0.9,1,1.2,0.8,1.5,0.9,1.3,0.2,1.1,1],"paint":[11.6,12,12,13.3,12,12.5,12.8,12.4,12.3,11.6,11.4,11.9,11.8,12.5,12.2]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.4,10.9,11,11.3,11.4,11,11,11.5,10.6,10.8,10.5,10.8,11.4,10.8],"script":[0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,10.4,9.4,9.6,10.3,10.3,9.9,9.4,10,9.6,9.7,9.6,9.7,9.7,9.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[320.1,324.3,317.7,322.5,317.6,317.9,319.2,317,318.1,318.4,317.5,320.5,318.5,319.6,318.1],"script":[95.5,97.8,94.2,97.8,94.8,95.1,94.6,94.7,95.1,94.5,94.5,97.1,94.7,94.7,95.1],"paint":[217.1,218.6,216.3,217.6,215.6,215.7,216.8,215.2,215.8,216.8,215.8,215.5,216.6,217.7,215.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,37,36.4,36.3,37.4,36.1,36.4,36.9,37.1,36.8,36.6,36.1,36.6,37,36.8],"script":[9.3,9.6,9.3,9.4,9.7,9.1,9.4,9.4,9.6,9.2,9.3,9.1,9.4,9.3,9.6],"paint":[26.1,26.4,26.2,26,26.7,26.1,26.1,26.6,26.5,26.6,26.4,26,26.3,26.8,26.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,14,13.4,14.1,13.6,12.5,13,13.4,14.2,13.6,14.5,13.5,13.7,13.8,13.6],"script":[11.3,12.2,11.6,12.2,11.4,11,11.7,11.2,11.8,11.6,12.5,11.1,11.5,12.1,11.7],"paint":[0.6,1,0.4,1.6,1.2,0.4,0.2,1.9,1.2,1.8,0.9,1.5,1.2,0.2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5869245529174805]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.182247161865234]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.211800575256348]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.062032699584961]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.04022979736328]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.4,32.5,32.3,31.9,32.2,32.1,32.1,31.9,31.8,31.8,31.8,31.8,32.6,32.4,31.4],"script":[9.7,9.9,9.6,9.4,9.5,9.5,9.4,9.5,9.4,9.4,9.5,9.4,9.3,9.9,9.2],"paint":[22.2,22.1,22.2,21.7,22.1,22.1,22.1,21.9,21.8,21.8,21.7,21.9,22.7,22,21.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[36.9,37.7,37.7,37.9,37,36.8,38.3,37.8,37.8,37.4,36.9,38.4,37.2,37.3,37],"script":[13.7,13.9,14.1,14.1,13.7,13.6,14.6,14,13.8,13.8,13.9,14.4,14,13.6,13.7],"paint":[22.6,23.2,23,23.1,22.4,22.6,23,23.2,23.4,23,22.3,23.2,22.6,23.1,22.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,19.7,20,18,19.9,19.2,19.7,19.5,18.6,20.6,19.6,18.6,19.9,18.4,18.5],"script":[8,7.5,8.4,6.4,7.9,7.8,7.6,7.8,7.1,8.1,8.6,7.2,7.5,7.4,7.4],"paint":[10.2,11.3,8.8,9.4,9.9,9.3,9.8,9.7,9.1,10.2,8.3,9.5,10.7,9.3,8.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.5,8.8,7.3,7,7.3,8.2,7.3,8.7,8.5,8.8,7.2,8.5,9,8.5,7,7.7,7.4,8.7,8.9,9.7,8.1,7.5,7.1,9.4,8.8],"script":[4.7,5.4,5,4.3,4.4,5,4.6,5.4,5.2,5.5,4.9,4.9,5.1,5.6,4.6,4.4,4.6,4.9,5.2,6.3,4.8,4.8,4.2,6.2,5.5],"paint":[2.6,2,1.6,2,1.8,0.8,1.6,2.1,2.3,2.9,1.6,1.7,3.5,0.8,1.8,2.5,1.6,2.9,0.8,2.2,2.7,1.8,2,1.4,1.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[18.4,18.8,20.8,17.8,17.8,21.8,18.1,18.2,19.8,20.4,17.4,19.6,18.3,17.7,18.6],"script":[4.6,4.6,5.8,4.7,4.8,6.5,4.9,4.5,5.5,5.5,4.7,5.3,4.8,4,5],"paint":[12.1,12.9,12.5,12.1,11.8,13.5,11.6,12.4,13.1,12.9,11.5,12.8,11.4,12.7,12.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.3,15.2,14.6,15,14.7,14.5,15.3,14.7,14.5,15.2,14.6,14.5,14.6,14.4],"script":[4.4,4.3,4.2,4.2,4.2,4.3,3.9,4.3,4.3,4,4.5,4.2,4.1,4.3,4.1],"paint":[10.3,10.1,10.1,9.3,10.2,10,10.3,10.1,9.7,9.9,10,9.6,9.7,9.8,9.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[330.7,326.2,328.1,327.6,330.2,326,327.5,327.8,327.3,326.1,331.1,328.3,332,327.8,326.8],"script":[97.6,97.9,98.3,99.2,99.2,97.9,99,98.2,99.1,97.7,99.3,98.5,98.1,98.2,97.6],"paint":[225.4,220.7,221.9,220.8,223.6,220.6,220.6,221,220.6,220.6,223.4,222.3,226.3,221.4,221.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.3,39.1,40.2,40.1,39.6,39.5,39.8,39.7,39.5,40,40.4,39.5,40.2,39.8,40],"script":[12.2,12.3,12.4,12.4,12.3,12.1,12.3,12.2,12.2,12.2,12.8,12.3,12.5,12.3,12],"paint":[26.1,25.8,26.8,26.4,26.2,26.3,26.4,26.3,26.2,26.8,26.6,26.2,26.6,26.4,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,16.2,16.3,16.4,16.5,16.6,16.9,16.1,16.2,15.7,17.3,17.1,16.6,18.4,16.1],"script":[13.5,14.2,14.4,14.2,14.3,14.1,14.2,14.4,14,13.7,15.5,14.9,14,15.7,14.3],"paint":[0.5,0.7,1.7,1.7,1.1,1.6,1.4,0.8,1,1.2,1.6,1.8,1.2,1.2,1.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7273960113525391]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9033660888671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.225467681884766]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2966690063476562]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.970210075378418]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.3,28.6,29.8,29.9,29.1,29.4,29.6,30.2,29.8,29.8,30,31.2,29.6,29.5,30],"script":[9,8,9.1,9.2,8.5,8.7,8.9,9.3,9,9.1,9.3,9.6,9.1,9,9.2],"paint":[20.7,20.1,20.2,20.2,20.1,20.1,20.2,20.3,20.2,20.1,20.2,21,19.9,20,20.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[32.6,33.3,33.2,32.4,32.1,32.1,33.2,31.9,33.1,32.7,32.6,33.3,32.6,32.1,32.9],"script":[10.8,10.9,11.3,10.8,10.1,10.6,11,10.2,10.8,10.8,10.8,10.7,10.8,10.3,10.8],"paint":[21.2,21.9,21.4,21.1,21.5,21,21.6,21.2,21.7,21.3,21.3,22,21.3,21.2,21.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,16.5,16.6,18.1,17.3,16.2,16.7,16.1,17.6,16.6,15.9,15.3,16.9,16.2,17.2],"script":[5.6,6,5.1,6.1,5.8,5.1,5.1,5.7,6.2,6,5.1,5,5.2,5.4,5.6],"paint":[10.4,8.5,9.6,10.2,9.6,8.9,9.2,8.2,9.5,9,7.7,8.6,9.7,9.9,10.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.1,5.1,5.5,5.8,5.6,5.7,5.2,5.6,6,5.6,5,5.6,5.9,4.4,5.5,4.9,4.8,5.2,5.4,5.1,4.5,5.7,8.4],"script":[3.2,3.4,2.1,2.5,3.1,3.4,3.2,3,3.3,3,3.7,2.6,2.9,3,2.5,2.9,3.4,3,2.8,2.8,3,3,2.7,2.8,2.9],"paint":[1.4,1.5,2.8,1.9,2.2,1.8,1.4,2.3,1.1,1.6,1.2,2.3,1.4,1.7,1.4,1.3,1.6,1.8,1.5,1.1,1.5,1.6,1.4,2.8,1.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[104.5,107.7,107.3,108.5,104.9,110.6,108.8,107.7,108.7,106.2,106.9,109,108.5,103.6,106.2],"script":[20.1,20.5,20.2,20.9,20.4,21.9,23.4,22.1,22.2,21.7,21.8,22.5,22.4,20.6,21.7],"paint":[81.9,85.1,84.9,85.5,82.1,86,82.5,82.7,84,83.2,82.4,83.5,82.6,80.6,81.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.3,12.2,12.1,12.3,12.3,12.7,12.3,12.2,11.8,11.8,12.6,12.2,12.1,12.2],"script":[2,1.9,2,1.8,2.1,2,2.2,2,2,1.9,1.9,1.9,1.9,2.1,1.9],"paint":[10.3,9.5,9.6,9.6,9.7,9.7,9.9,9.7,9.5,9.3,9.6,10,9.5,9.1,9.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[401.8,403.8,406.4,402.9,400.3,402,399.9,403.4,398.7,399,407.8,403.3,401.1,397.5,408.1],"script":[181.6,179.5,184.2,181.2,177.7,178.5,175.6,181.6,176.4,176.7,184.3,179.6,178,174.4,181.8],"paint":[213.1,217,214.6,214.6,215.1,216.3,217,214.6,215,215.1,215.6,216.2,215.8,215.9,218.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36.4,36.3,36,36.6,36.4,35,36.1,35.8,35.6,36.2,36.3,36,36.2,35.6],"script":[9.4,9.3,9.5,9.4,9.7,9.7,9.2,9.4,9.2,9.3,9.5,9.5,9.3,9.3,9.3],"paint":[25.2,26.1,25.9,25.6,25.9,25.8,24.9,25.7,25.6,25.3,25.8,25.8,25.8,26,25.3]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.9,12.7,11.6,13.3,12.8,13.4,12.1,12.3,13.4,13.5,12.7,13,12.1,13.2],"script":[10.7,10.1,10.7,10.4,10.9,10.5,11.6,10.1,10.5,11.8,11.8,10.9,10.6,10.1,10.8],"paint":[1.2,1.2,1.8,0.9,1.4,1.1,0.2,0.8,0.8,0.4,0.3,0.9,0.6,1,2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2997455596923828]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.730719566345215]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.281462669372559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.125727653503418]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24367809295654]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30.6,30.8,30.6,30.5,31.2,30.9,30.4,30.7,30.5,30.5,30.8,30.3,30.4,30.9],"script":[8.6,8.3,8.9,8.8,8.9,9.1,8.9,8.8,8.7,8.8,8.9,9,8.7,8.8,9.1],"paint":[21.1,21.7,21.3,21.3,21,21.5,21.4,21.1,21.4,21.2,21.1,21.3,21,21,21.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[40.3,40.2,40.5,41.5,41.3,41.6,41.2,41,41,40.3,40.2,40.1,40,40.1,40.5],"script":[16.1,15.9,16.6,17.2,17.1,17.2,17,17,16.9,16.3,16.2,16.2,15.9,15.9,16.8],"paint":[23.4,23.5,23.1,23.5,23.4,23.6,23.4,23.3,23.4,23.2,23.2,23.2,23.3,23.5,23]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.2,11.7,11.6,11.3,11.1,11.3,12.1,12.2,11.4,12.1,12,11.6,11.4],"script":[1.1,1.5,1,1.5,1.6,1.5,1.3,1.4,1.5,1,1.2,1.3,1.3,1.2,1.3],"paint":[9.4,9.2,9.6,9.2,8.2,8.4,8.5,7.8,9.6,9.9,8.9,9.5,9.6,9.4,9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.9,3.8,4.2,4,3.5,4.5,3.3,2.9,2.9,3.6,4.2,3.6,4.2,4.2,3.1,4.3,4.5,3,3.4,3.6,3.3,3.4,2.7],"script":[1.1,0.7,1.7,1.3,2.6,1.6,1.8,1.5,1.5,0.9,1.3,1.9,2,1.6,1.6,2,0.9,1.3,2.3,0.6,1,1.6,1,1.3,1.1],"paint":[1.6,2.7,1.1,2,1,2.2,1.5,2.9,1.7,1.8,1,1.6,2.1,1.1,1.8,2.1,1.1,2.4,2.1,2.2,2.3,0.9,2.2,1.6,1.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,15.6,15.9,15.9,16.4,15.8,16.8,16.5,16.9,16.4,16.3,15.2,15.8,15.9],"script":[2.4,2.7,2.9,3,3.1,3,3,2.9,3.3,2.4,3.3,3,3.2,2.8,2.7],"paint":[12,11.8,11.6,11.5,11.6,12.1,12.1,11.8,12.5,13.2,12.1,12.6,10.9,11.8,12.2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.2,12.9,12.2,12.4,12,11.8,12.1,12.2,12,12.1,12.4,12,11.8,12],"script":[1.8,1.8,1.8,1.9,1.6,1.7,1.8,1.8,1.7,1.8,1.8,2.1,1.8,1.8,1.8],"paint":[9.3,9.7,10.3,9.8,10.2,9.1,9.2,9.6,10,9.8,9.6,9.9,9.5,9.3,9.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[312.5,314.7,315.8,316.2,314.9,316,316.1,314.8,315.7,316,315.7,316.3,317,316.9,316.5],"script":[85.8,87.2,89.5,89.8,89.5,90.3,89,90.1,90.6,89.1,88.4,88.8,91,90.2,89.7],"paint":[218.8,219.7,218.6,218.5,217.6,217.7,219.1,217.1,217.4,219.1,219.2,219.5,218.2,218.9,219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,37.4,38.5,37.5,38.3,37.7,38.2,37.4,37.3,37.6,38.3,39,38.5,36.9,37.5],"script":[9.9,9.5,10.3,9.6,10.3,9.7,10.4,9.5,9.8,9.5,10.2,10.4,9.7,9.5,9.8],"paint":[27.3,26.9,27.1,26.8,26.9,26.9,26.8,26.8,26.4,27,27,27.5,27.6,26.4,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.8,24.6,24.3,24.9,26,25.4,24.6,23.9,24.8,23.5,26.6,27.1,24.4,24.4,24.4],"script":[22.2,22.3,22.3,22.8,23.6,22.8,22.4,22.3,22.9,22.1,24.3,25.1,22.3,22.9,22.5],"paint":[1.5,0.8,1.2,1.3,2.1,0.9,1.9,0.3,0.3,0.3,0.4,0.8,1.5,0.3,0.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291213989257812]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2711753845214844]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2019948959350586]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8175430297851562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.761988639831543]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.1,30,30.6,30.3,31.9,29.8,30.1,29.4,31.4,30.6,29.8,30.6,30.5],"script":[8.1,8.3,8,8.3,8.5,8.1,9.3,8,8.1,7.8,8.7,8.3,8,8.3,8.4],"paint":[21.7,21.6,21.5,21.2,21.5,21.7,22.1,21.4,21.4,21,22.3,21.7,21.4,21.8,21.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[43.9,43.6,44.5,43.4,43.8,43.4,43.1,43.3,42.8,43,43.6,43.8,43.3,43.6,44.2],"script":[19.6,19.7,20,19.5,19.7,19.6,19.4,19.7,19.3,19.4,19.7,19.9,19.5,19.5,19.9],"paint":[23.7,23.3,23.9,23.2,23.4,23.3,23.1,23,23,23,23.3,23.4,23.3,23.5,23.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,18.2,18,18.2,17.1,17.2,17.8,17.8,18.3,17.7,18.9,17.9,19,17.1,17.1],"script":[8.4,6.6,5.9,6.6,6.2,6.8,6.7,6.6,6.8,6.9,7.2,6.6,7.1,6.8,6.2],"paint":[8,9.7,9.6,10.5,9,8.8,9.1,9.4,9.4,8.4,10.1,8.7,10.3,8.5,9.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.9,5.4,5.2,5.6,6.2,5.6,5.9,5.3,6.2,5.5,5.5,5.5,5.6,5.3,5.7,5.7,5.8,5.2,5.3,5.3,5.3,6,5.4,5.5,5.8],"script":[3,2.8,3.4,3.1,3.7,2.6,3.4,2.5,4,3.3,3.1,3.8,3.5,3.3,3.4,3.7,3.3,2.9,2.7,3.5,3.3,3.8,3.3,3.1,3.6],"paint":[1.6,2.1,1,1.3,2.4,2.1,1.7,2.3,1.7,1.1,1.5,1.6,1.5,1.1,0.5,1.9,2.3,1.6,2.5,1.6,1.1,1.4,1.4,0.9,1.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.4,16.6,16.8,16.2,16.8,17.9,16.5,16.4,16.7,16.9,17.7,16.8,15.9],"script":[3.1,2.7,3.7,2.7,3.5,3,3.4,4.2,3.2,3.3,2.8,3.2,3.5,2.6,3.4],"paint":[11.7,11.7,11.6,12.7,11.6,11.9,11.2,12.5,11.8,11.8,13.1,12.4,12.6,13.3,11.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.6,12,12.1,12.2,11.9,13.2,11.8,12.1,11.5,12.3,12,11.6,11.7],"script":[1.7,1.4,1.7,1.7,1.6,1.8,1.6,1.7,1.4,1.7,1.6,1.7,1.6,1.5,1.4],"paint":[9.6,9.6,10.5,9.7,10.1,10,9.4,10.7,10.1,9.3,9.3,10,9.7,9.5,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[313.6,317.5,312.6,319.5,312.7,315.8,317.9,312.6,317,319.3,314.8,314.5,316.1,318.1,311.9],"script":[90.2,93.5,91.2,93.2,90.9,90.1,93.1,90,93,93.8,92.4,91,91.8,93.1,90.2],"paint":[216.5,217,214.4,218.9,214.9,218.3,217.1,215.5,216.9,218.4,215.4,216.4,217.3,217.6,214.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.1,35.4,35.3,36.1,36.7,36.6,36,35.2,36.3,35.6,35.6,35.1,35.4,36.1],"script":[9,9,8.7,8.6,9,9.2,9.2,9,8.8,9.1,9,8.8,8.6,8.8,9],"paint":[25.9,26.1,25.8,25.8,26.2,26.6,26.4,26,25.5,26.3,25.6,25.9,25.5,25.7,26.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.9,28.4,31.2,28.4,29.6,30.2,29.4,29.2,29.8,29.4,31.4,29.7,29.1,29.7,28.9],"script":[26.2,26.1,28.6,26,27.7,27.3,27.1,26.8,27.8,27.1,28.9,28.1,27.2,27.4,26.8],"paint":[2.4,1.5,1.9,1.2,0.4,1.8,1.2,0.3,1,1.2,1.2,0.7,0.6,1,0.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6350555419921875]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.248970031738281]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.884618759155273]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9016351699829102]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.34021282196045]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.1,37.3,37,38.7,36.9,37.6,37.2,39.1,36.6,36.6,37.2,37.1,36.3,37.2],"script":[14.8,14.9,15.1,15,15.7,15.3,15.5,14.9,15.9,14.8,14.9,14.9,15,14.7,15],"paint":[21.6,21.6,21.6,21.5,22.4,21.2,21.7,21.9,22.7,21.4,21.3,21.8,21.8,21.2,21.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,41.5,43.7,42.1,41.9,41.7,43.1,43,42.9,41.4,41.5,42.7,41.5,42,42.9],"script":[18.4,18.2,19.3,18.4,18.2,18.1,19.6,18.8,18.8,18.5,18.1,18.6,18.3,18.4,18.9],"paint":[22.6,22.9,23.8,23.2,23,23.2,23.1,23.5,23.5,22.5,23,23.5,22.8,23,23.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.6,11,10.8,11.7,11.5,11.3,11.9,11.3,11.7,11.9,12.3,12.1,11.8,11.1],"script":[1,1.5,1.8,1,1.4,1.6,0.7,1.3,1.6,1.4,2.2,1.8,1.5,1.7,1],"paint":[9.3,9.4,8.5,8.2,9.2,8.9,9.1,9.4,8.3,9.3,8.5,9.8,10,8.9,9.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.6,3.9,3.3,3.4,3.1,3.2,4.3,3.5,3.7,3.7,3.2,3.5,3.8,3.5,3.1,2.8,3.6,3.3,3.2,3.3,3.5,3.1,2.6,3.2],"script":[1.6,1.7,1.8,1.3,1.4,1.4,0.9,2.1,1.1,1.7,1.5,1.5,1.3,1.7,1.6,1.6,0.6,1.6,1.5,1.3,0.9,1.4,0.6,1.2,1.5],"paint":[1.1,1.8,1.4,1.1,1.2,1.5,1.8,1.4,2,1.9,2,1.1,2.1,1.4,1.7,1.1,1,1.9,1,1.8,2.2,0.5,2.2,1.3,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14,14.3,14.3,16.1,13.7,12.3,13.2,13.3,13.4,13.6,13.2,12.8,12.7,12.8],"script":[0.1,1,0.7,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.1,0.1,0.3],"paint":[12.9,11.8,11.2,13.3,14.2,12.2,10.8,12.2,10.6,11.7,11.2,11.6,11.3,11.2,11.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.3,10.5,10.4,10.4,10.3,10.3,11,10.7,10.3,10.3,10.7,10.8,10.4],"script":[0.4,0.1,0.1,0.1,0.2,0.1,0.3,0.1,0.2,0.3,0.3,0.2,0.2,0.3,0.1],"paint":[9.4,9.7,9.6,9.7,9.5,9.4,9.6,9.3,10.2,9.6,9.2,9.6,9.7,9.5,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[377.7,379.3,382.1,384.9,383.7,381.7,382.1,380.2,383.5,380.5,382.9,385.1,381.6,380.4,385.5],"script":[148.1,151.3,150.9,151.9,153.4,150.8,151.1,150,151.8,149.8,151.6,153.2,149.5,150.3,152.8],"paint":[222.4,220.7,224.4,225.6,223.4,224,224.1,223,224.5,223.3,224,224.8,225.1,223.1,225.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.1,46,45.5,46.3,46.5,45.4,46.1,46.8,46.1,46.3,45.4,46,46,46.1,46.3],"script":[19,18.6,18.7,19,19.1,19.3,18.7,19.4,18.8,19.5,18.7,19,19.2,18.7,18.8],"paint":[26.2,26.5,26,26.6,26.6,25.4,26.6,26.6,26.6,26.1,25.9,26.2,26.1,26.6,26.7]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.7,11.4,12.3,10.3,10.1,10.1,12.1,9.1,11,12.5,11.4,11.6,11.2,11.6],"script":[9,9.1,9.5,10.2,8.8,8.8,8.3,10.9,8,9.6,10.4,9.8,10,10,9.5],"paint":[1.4,1,1.4,1.4,0.6,1.2,1.7,1.1,1,1.3,1.1,1.5,0.3,0.8,1.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5972061157226562]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.045897483825684]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.071386337280273]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1606311798095703]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1229887008667]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[32.5,35.5,29.7,32.4,30.8,33.6,30.1,29.9,32.7,28.4,33.4,34.1,34.7,30.7,29.7],"script":[4.5,4.6,4.7,4.8,4.8,4.8,4.6,4.6,4.7,4.9,4.6,4.8,4.7,5,4.8],"paint":[21.4,21.8,22.1,21.6,21.9,21.6,21.7,22.2,21.7,22.1,21.6,21.5,21.7,22,22]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[38.9,34.8,35.3,34.5,35.6,35.1,34.8,35.5,34.5,32.9,36.9,35.1,36.3,36.9,34.3],"script":[7.5,7,7.1,7.1,7.1,7.2,7.1,7,7,7.1,7.2,7.2,7.2,7,7.2],"paint":[22.9,22.3,22.6,22.3,22,22.3,22.4,22.2,22.3,22.6,22.3,22.4,22.5,22.1,22.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.7,28.3,12.7,12.7,12.8,28.4,13,28.5,12.4,28.1,12.6,11.8,14.7,28.4,12],"script":[2.6,2.8,3,1.9,2.5,2.7,2.2,2.7,3.2,2.8,2.1,2.4,3.8,2.7,2.8],"paint":[9.3,9.1,9.6,9.2,10.1,8.4,9.4,9.7,8.6,9.3,9.8,8.9,10.8,9.4,9.1]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.5,8.4,4,4,3.7,3.7,3.1,4.5,4.2,3.8,3.3,3.8,3.7,4.5,3.3,3,4.2,3.4,3.6,3.5,3.2,3.5,3.4,3.7],"script":[0.9,1.2,1.5,1.5,2.1,1.1,0.9,1.6,2.2,2.1,1.4,1.5,1.4,1.6,1.2,1.1,1.4,1.7,1.5,1,1.8,1,1.5,1,1.9],"paint":[1.6,2.2,1.6,1.5,1.4,1.5,1.7,1.4,2,1.3,1.7,1.7,1.6,2,1.8,2.1,1.6,2.3,1.1,1.1,1.6,2,1.1,2.3,1.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[32.4,29.5,30.1,29.6,15.1,15.3,13.6,29.4,15,14.8,16.1,15.2,15.2,14.4,30.4],"script":[2,1,1.5,1.1,2.2,2.7,1.8,1.2,1,1.2,1.4,1.9,2.2,1.8,1],"paint":[14,11.2,11.9,12.4,12.3,12.4,10.9,12,12.1,11.5,13,12,12.7,11.9,13.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,14,10.2,11.9,11.9,12.4,9.8,9.9,13.6,10.7,10,12.9,9.9,12.1,12.1],"script":[1,0.7,0.6,0.7,0.7,0.7,0.7,1,0.7,1.6,0.7,0.8,0.6,0.7,0.7],"paint":[9,8.8,8.9,8.7,8.6,8.8,8.8,8.8,8.7,8.8,8.6,9.1,8.8,8.8,8.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[290,291.6,289.3,291.1,287.5,290.5,289.3,289.8,289.9,291.1,291.9,286.9,293.1,294.2,290.2],"script":[54.9,55.5,56.6,55.3,55.8,55.4,54.6,55.5,55.4,55.4,55.7,56.8,55,54.7,55.1],"paint":[228.3,227.9,225.9,226.6,228.3,227.5,227.8,226.7,226.8,226.8,226.1,226.1,227.8,229.3,226.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,36.9,36.3,35.4,37.1,36.7,36.9,36.6,36.1,36.6,37.1,36.2,36.2,32.3,35.8],"script":[4.9,5.1,5.1,5,5.1,5.1,5.1,5,5.2,5.1,5.3,5.1,5,5.1,5],"paint":[26.3,26.9,26.2,25.7,26.3,26.1,27.1,26.7,26,26.2,26.9,26.4,26.4,26.3,26.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,26.5,10.3,28.3,9.2,28.4,10.1,10.2,26,26.3,10.6,26.3,27.1,26.4,26.4],"script":[8.1,9,8.3,10.6,7.9,10.7,8.7,8.3,8.5,8.7,8.3,8.7,9.7,8.8,8.5],"paint":[0.7,0.7,1.7,0.8,0.3,0.3,0.3,1.2,0.6,1,1.4,0.7,1.3,0.3,1.7]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5451717376708984]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9681663513183594]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.066629409790039]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6433811187744141]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.880518913269043]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.9,31.1,33.8,30.8,29.8,28.2,31.6,30.7,31.1,31.6,30.1,31.3,30.3,32,30],"script":[6.1,6.2,5.7,5.8,6.3,5.7,5.6,5.5,5.7,5.8,5.5,5.7,5.5,5.6,5.5],"paint":[21.7,21.9,21.6,21.5,22.2,21.6,21,21.2,21.5,21.9,21.3,21.5,21.5,22.1,20.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[32.9,37.2,33.1,30.5,35.3,31.4,31.9,31.3,31.3,30.8,32.1,34.7,30.8,32.9,31],"script":[8.6,8.6,8.6,8.1,8.6,8.6,8.5,8.6,8.4,8.3,8.4,8.9,8.7,8.5,8.5],"paint":[22.6,22.4,21.7,22.1,22.1,22.3,22,22.3,22.5,22.2,22.5,22.4,21.7,22.1,22.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,10.6,28.4,26.7,12.7,26.7,11.7,26.9,10.7,26.1,12.2,10.6,11.5,10.8,10.5],"script":[1.3,0.7,2.3,1.7,2,1.9,1.3,1,1.2,1,0.9,1.3,1.2,0.3,0.9],"paint":[10.1,9.8,9.3,8.3,9.6,9.2,9.4,9.2,8.8,9.3,9.9,9.1,8.9,9.8,9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.5,3,3.7,7.3,3.9,2.9,3.1,3.2,3.1,3.2,4,4.6,3.7,2.9,3,2.7,3.6,3.9,2.9,3.4,3.4,2.7,7.3,3.5,3.9],"script":[0.2,1.2,1.2,0.6,0.9,0.2,0.5,1,0.7,0.9,1.3,0.2,0.7,1,0.9,0.5,1.1,1.7,0.6,1.1,0.6,0.6,1,0.8,1.5],"paint":[1.6,1.6,2,1.7,1.8,2.2,2.4,1.7,2.2,2,1.9,2.2,2.4,1.8,1.3,1.6,1.5,1.5,2.2,2,1.9,1.3,1.7,2.5,2.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[30.2,29.7,30.3,28.9,30,29.5,29.3,31.3,14.3,29.5,30.7,29.6,15.9,14.7,28.6],"script":[1.6,1.1,2.8,1.7,1.9,1.8,0.6,2,0.7,1.1,1,1.3,2.3,1.4,1.6],"paint":[12.7,11.8,12.5,11.4,12,13,13.2,13.1,13.5,12.8,14.3,12.7,13.5,11.7,12.2]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,10.4,10.1,11.3,9.5,10.1,13.9,10.3,12.5,11.5,9.4,10.2,10,11.3,12],"script":[0.4,0.3,0.9,0.4,0.6,1,0.9,0.5,0.5,0.4,0.3,0.5,0.5,0.5,0.3],"paint":[8.8,8.9,9,8.9,8.6,9,8.6,8.8,9,8.8,8.6,8.9,8.6,8.8,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,292.1,294.9,295.2,296.8,290.6,294.7,290.9,297.1,294.5,294.9,293.7,293.1,291.2,292.1],"script":[69.7,71.9,68.5,69.9,69.1,70.8,70,70.2,70.6,69.6,70.3,69.3,70.2,68.9,69.9],"paint":[216.6,216.8,217.8,217,218.3,216.3,215.5,217.1,217,218.3,217.2,218.7,217.6,216.8,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.1,66.7,66.8,66.8,66.5,65.5,67.1,65.9,61.2,66.2,65.2,67.8,61.7,66.5,66.3],"script":[14.7,14.9,14.6,14.2,14.2,13.9,14.6,14,14.4,14.5,14.4,14.3,14.4,14.3,14.1],"paint":[46.8,46.5,46.5,46.8,46.5,46,46.7,46,46.3,46.1,45.8,47.9,46.7,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,26.2,10.7,27.8,11.2,10.4,27,27.4,10.8,10.4,11.6,12.4,10.3,10.4],"script":[8.7,8.7,9.1,8.1,10,9.3,8.9,9.1,9.4,8,9,8,9.6,8,8.6],"paint":[0.6,0.7,0.3,2.4,1.2,1.6,0.2,1.1,1.3,1.7,1.2,0.8,1.3,0.6,0.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8460683822631836]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.643153190612793]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6214113235473633]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.073225975036621]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.009462356567383]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[30,29.1,29.3,29.3,29.5,30,29.6,29,29.4,29.8,28.8,29.7,29.2,29.4,29.4],"script":[8,7.3,7.3,7.4,7.3,8,7.5,6.9,7.1,7.6,6.9,7.5,7.2,7.5,7.5],"paint":[21.4,21.3,21.5,21.4,21.6,21.5,21.6,21.6,21.8,21.6,21.3,21.6,21.5,21.4,21.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61,60.9,61,60.4,60.4,61.9,60.4,60.9,60.9,60.8,60.4,61.1,60.6,60.8,61.7],"script":[39.3,39.3,39.1,38.8,38.8,39.5,39,39.3,39.3,39.3,38.9,39.6,38.9,39.1,39.1],"paint":[21.2,21.2,21.5,21.2,21.1,22,21,21.2,21.1,21.1,21,21.1,21.3,21.2,22.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.9,18.4,18.8,18.3,18.5,18.8,17.6,18.8,19.4,18.7,18.6,19.4,17.9,17,17.5],"script":[6.4,6.8,7.1,6.8,7.2,6.7,6.8,7.3,8.2,7.5,7.4,7.5,6.9,6.7,6.6],"paint":[9.7,9.8,9.5,9.6,8.8,9.5,9,9.2,9.8,9,9.5,10.7,9,9.1,8.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[9.7,10.1,9.5,10.7,10.4,9.7,10.3,9.7,8.9,9.4,10,9.7,10,9.3,9.8,9.5,10,9.9,9,9.8,9.2,9.5,9.9,8.9,9.8],"script":[6.6,6.7,7,7.3,7,6.7,7.7,6.9,6.2,6.6,6.7,6.5,6.7,6.8,7.3,6.7,6.4,6.8,6,6.9,6.2,6.6,7.2,6.3,6.1],"paint":[0.7,1.4,1.1,2.3,2.7,2.7,1.6,1.6,1.1,1.6,2.2,2.1,1.5,1.1,1.4,1.6,1.7,1.5,1.4,1.1,1.1,1.5,1.9,1.6,3.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[105.6,105.3,107.1,103.9,106.1,106.5,104,104.7,108.1,106.6,105.9,106.6,104.6,105.7,104.6],"script":[19,18.8,18.3,18.1,19.4,19.3,18.7,19.5,19.3,19.5,18.6,19.3,18.3,18,18.5],"paint":[84.3,84,86.7,83.2,84.6,84.7,81.7,83.9,86.1,84.3,85.4,85.1,84.9,85,83.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[57.1,57.6,55.7,57.7,57.5,57.8,56.6,56.6,57.3,58,56.2,56.5,56.7,58.5,56.7],"script":[12.4,12.8,12,12,12.2,12.5,11.7,11.8,12.4,12.1,12.1,12.1,12.2,12.5,12],"paint":[42.9,43.4,42.6,43.8,43.5,43.8,43.1,42.7,43.1,44.4,42.4,43.2,42.8,44.2,43.1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296,297.1,296.7,298.3,296.2,297.8,299.3,298,297.3,296,296.7,298,296.4,304.1,296.9],"script":[74.9,77.1,75.5,76.4,76.8,75.7,76.8,76.9,76.5,76,76.1,77.2,75,75.2,76.7],"paint":[214.2,213.3,214.4,214.9,212.3,215.1,215.4,214.3,213.9,212.5,213.8,213.8,214.4,220.1,213.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36,37.2,36.2,35.8,36.2,36,36.2,35.6,35.9,35.8,36.1,36,36.6,36.4],"script":[8.9,9,8.9,8.9,8.4,8.8,8.8,8.7,8.9,8.9,8.8,8.8,8.9,9.2,9],"paint":[26.6,26,27.4,26.3,26.4,26.5,26.2,26.5,25.7,26.1,26.1,26.3,26.2,26.5,26.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,11.4,11.8,11.5,11.7,11.1,11.7,11.1,11.2,13,12.8,11.7,11.2,11.5,11.2],"script":[10.5,9.5,9.6,9,9.9,9.2,9.2,9.5,9.1,10.5,10.8,9.6,9.4,9.7,9.5],"paint":[1.1,1.1,1.4,1.6,1.6,1,1.5,0.2,1.1,0.9,1.7,0.6,0.9,0.8,0.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.622044563293457]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.002596855163574]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.010848045349121]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.835902214050293]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.299354553222656]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.2,24.1,24.3,24.1,24,24.3,24.2,24.4,24.7,24.1,23.9,24.1,24.2,24.1],"script":[2.7,2.8,2.7,2.8,2.7,2.7,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21,21,21,21.2,21.1,20.9,21.2,21,21.2,21.5,20.9,20.7,20.9,21,21]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.3,27,27.5,27.1,27.5,27.5,27.3,27.1,28.2,27,27.2,26.8,27.3,27,27.3],"script":[4.9,4.7,4.9,4.9,4.8,4.9,4.8,4.9,5,4.8,4.9,4.8,4.9,4.8,4.9],"paint":[22,21.9,22.1,21.7,22.3,22.3,22.1,21.9,22.9,21.8,21.9,21.6,22.1,21.8,22]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.5,10.8,10.5,10.7,10.3,11.4,11.9,11.5,11.6,10.7,10.8,11.6,11,10.8],"script":[1,1.2,0.8,1.1,0.6,1,0.6,1.3,0.9,1.5,0.9,1.1,0.6,0.9,0.7],"paint":[8.9,9,8.7,8.2,9,8,9.7,9.6,9.8,7.9,8.6,8.7,10.2,8.8,9.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.9,3,2.8,2.9,3,3,2.5,2.5,3.3,3.3,2.3,3,2.6,3.2,2.5,2.4,2.9,2.8,2.7,2.5,2.2,2.7,2.6,2.6,3.3],"script":[1.1,0.6,0.1,0.8,0.1,1,0.1,0.1,1.2,1.2,0.1,0.6,0.1,1.2,0.1,0.1,0.1,0.5,0.6,0.9,0.1,0.5,0.1,0.6,1.2],"paint":[1,0.6,1.8,1.3,2.7,1.4,2.2,2.2,1.6,1.5,2,1.6,2.3,1.5,1.9,1.5,1.7,1.9,1.9,1,1.8,2.1,1.5,1.3,1.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.1,13,13.9,13.6,13,13.1,13.1,13.3,15.7,12.8,13.7,14.2,13,13.3,12.8],"script":[1,0.2,0.9,0.9,0.6,0.9,0.9,1,1.6,1,1.4,1,0.2,1,0.9],"paint":[10.5,11.7,12.1,11,10.5,11.2,11.4,11.4,13.5,11.2,11.3,12.2,11.6,11.7,10.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.2,11.3,10.7,10.7,10.7,10.7,10.6,10.4,10.4,10.3,10.5,10.7,10.4,10.4],"script":[0.4,0.5,0.5,0.3,0.4,0.3,0.5,0.5,0.2,0.2,0.1,0.2,0.5,0.1,0.1],"paint":[10,9.2,10.2,9.8,9.7,9.7,9.6,9.6,9.4,9.6,9.3,9.6,9.6,9.6,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[261.8,261.6,260.2,258.3,261.1,260.8,261.1,258.8,259.5,259.3,260.5,262,261.5,260.1,260.5],"script":[31.9,31.8,32.3,31.6,32.7,32.9,32.9,32.1,31.5,32.1,32.1,31.8,32.6,32.4,32.9],"paint":[222.7,222.7,220.7,219.7,221.1,220.5,220.9,219.8,220.7,220.2,221.2,223.1,221.6,220.4,220.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.6,29.7,28.9,29.3,28.1,29,28.7,28.6,28.9,30.1,29,29.2,28.8,28.5],"script":[3.3,3.3,3.5,3.3,3.5,3.3,3.4,3.3,3.4,3.6,3.4,3.3,3.4,3.3,3.3],"paint":[25.2,24.5,25.4,24.8,25,24,24.9,24.7,24.5,24.6,25.9,24.9,25,24.8,24.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,9.5,10,10.1,10.1,9.6,10,11,9.9,10.4,10.5,10.2,10.2,10.4,9.9],"script":[7.7,7.6,7.6,8,8,8.1,8.5,8.6,8.1,7.9,8.2,8,8.2,8.7,8.4],"paint":[0.5,0.9,2.1,1,1.8,0.6,0.7,0.4,1.6,1.6,1.7,1.3,0.5,1,0.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5836181640625]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7753381729125977]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8468399047851562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7773532867431641]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.121651649475098]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.6,24.5,24.4,23.9,24.3,24.2,24.4,24.2,24,24.5,24.2,24.4,24.4],"script":[1.8,1.9,1.9,2.1,1.9,1.8,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9],"paint":[22.3,22.2,22.4,22.1,22.2,21.7,22,21.9,22,22,21.8,22.2,21.9,22.1,22]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27.4,28,27.4,27.6,27.1,27.3,27.5,28.3,27.6,27.4,27.7,27.5,27.3,28.2],"script":[4,4.1,4.4,4,4.5,4,4,4.1,4.2,4,4.1,4.1,4.1,4,4.3],"paint":[22.4,23,23.1,22.9,22.7,22.7,22.8,23,23.7,23.2,22.9,23.2,23,22.8,23.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,10.5,11.3,12.1,11,11.2,11.4,11.9,12.1,11.3,11.9,11.1,12.2,11.4,11.3],"script":[1.2,0.8,1.1,1.1,1.3,1.1,1.7,1.6,0.9,1.4,1.3,0.8,1.4,1.4,0.9],"paint":[9.5,8.6,8.7,8.6,8.8,8.7,8.6,9.4,10.2,8.7,9.5,8.9,9.9,8.9,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[2.9,3.2,3.4,3.2,3.1,3.2,3.3,3,2.3,2.8,3.3,2.8,3,3.5,2.8,3.2,2.9,3.4,2.6,3.2,2.9,2.8,3.3,3.2,3],"script":[0.9,0.8,1.2,0.8,0.7,1.1,0.7,1,0.2,0.5,1,0.8,0.9,1,0.8,1,1.1,1.1,0.9,0.7,0.5,1,0.8,0.7,0.9],"paint":[1.5,2,1.5,2.3,1.6,1.1,2.4,1.4,1.1,2.1,1.5,1.8,2,1.8,1.9,1.5,1.2,1.6,1.6,2.3,1.7,0.9,2.4,2.1,1.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.5,14,14.1,13.8,14.3,14.2,14.2,15,14.4,14.5,13.7,14.3,14.7],"script":[1.2,0.8,1,0.9,1.2,0.8,1.2,1.3,0.8,0.8,0.9,0.9,1.1,1,1.2],"paint":[11.5,12.1,12.4,12.2,11.6,11.5,11.8,12.1,11.9,12.4,11.7,12.8,11.4,12.5,12.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.6,10.8,10.7,11.1,11.4,11.2,10.9,10.8,10.9,11.1,11,10.7,10.7],"script":[0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"paint":[9.9,10.1,10.3,9.5,9.7,10,10.2,10,9.6,9.7,10,9.9,9.7,9.7,9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[263.5,262,262.8,261.3,264,266.4,265.7,262.9,264,264.5,263.3,262.6,262.1,262.7,260.7],"script":[27.4,27,27.9,26.6,28,27.1,27.2,27.4,27.1,26.7,27.1,27.5,26.7,27,27],"paint":[228.7,227.4,227.6,227.2,228.5,231.8,231,228.2,229.3,230.3,228.6,227.8,227.8,228.3,226.2]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.5,29,28.9,28.4,28.7,28.6,29.4,28.4,29,28.6,28.4,28.5,28.4,28.3,28.8],"script":[2.1,2,2.1,2,2.1,2.1,2.1,2,2.1,2,2,2.1,2,2,2],"paint":[25.7,26.2,26,25.6,25.9,25.7,26.4,25.6,26.2,25.9,25.7,25.7,25.7,25.5,26.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.4,10.4,10.9,10.3,10.8,10.4,10.7,10.2,9.8,10.7,9.7,10.6,10.4,11.1],"script":[9.1,8.3,8,8.9,8.2,8.5,8.4,8.5,8.1,8.4,8.8,7.9,8.9,8.4,9.2],"paint":[0.9,1.2,1.4,1.1,1.6,1.3,0.2,1.5,1,0.2,1.1,1.2,0.3,1.1,0.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5896310806274414]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.289639472961426]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2942590713500977]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.697718620300293]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.62725067138672]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.4,33.1,32.9,32.4,33.1,33.1,33.2,32.1,32.6,32.8,32.9,32.7,32.7,31.9,32.3],"script":[9.5,10.4,10.3,9.6,10.2,10.6,10.5,10,9.8,10.1,10.3,10.1,9.8,9.7,9.7],"paint":[22.4,22.2,22,22.2,22.4,21.9,22.1,21.5,22.3,22.2,22.1,22.1,22.4,21.7,22]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.6,39.2,39.7,39.7,39.4,39.4,39.1,39.2,39.6,39.6,39.6,39.7,39.6,39.6],"script":[15.3,15.3,15,15.4,15.2,15,15,15.1,15.1,15.5,15.4,15.4,15.3,15.1,15.1],"paint":[23.6,23.8,23.6,23.7,23.9,23.8,23.8,23.4,23.6,23.6,23.6,23.7,23.8,24,24]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.4,13.5,11.7,14.4,11.6,11.6,11.4,11.7,11.2,12.2,11.2,11.5,11.3,11.3],"script":[1.2,0.7,0.8,1,0.8,0.8,1,0.8,0.5,0.5,0.9,0.7,0.6,0.8,0.5],"paint":[9.6,9,11.2,9.7,12.4,9,9.4,9.3,10.1,10,10.1,9.6,10,9.3,9.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.7,2.3,2.1,2.3,2.4,2.5,2.4,2.7,2.4,2.8,2.4,2.4,2.7,2.6,2.3,2.5,2.9,2.2,2.4,2.6,2,2.1,2.2],"script":[0.1,0.7,0.1,0.3,0.6,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.9,0.7,0.1,0.9,0.5,0.1,0.6,0.8],"paint":[1.1,1.7,2.1,1.6,1,2.1,1.4,1.5,1.1,1.6,2.2,2.6,1.5,1.9,2.5,1.7,2.1,1.1,1.4,2,1,1.5,1.2,1.1,0.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,15.5,15.5,16.3,15.5,16.7,15.9,16.1,16.3,16.7,16.4,16.7,17,15.5,17.2],"script":[2.2,2,2,2.1,2.2,2.4,1.8,2.4,2,2.4,2.5,2.5,2.8,2.2,1.8],"paint":[12.7,12.1,12.8,13.3,11.8,13.4,13.1,12.3,13.1,13.1,12.9,12.8,13.2,12.7,14.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,12.2,11.9,11.9,11.8,11.6,12.2,11.6,11.8,11.8,11.6,12,11.8,11.9],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.4,1.4,1.5,1.3,1.3,1.3,1.4,1.3],"paint":[9.7,9.9,10.2,10.2,9.9,10,9.7,10.1,9.7,9.5,10,9.7,10.2,9.8,9.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[339.3,338.8,344,341,339.7,347.2,346.9,347.9,347.3,350.7,355.9,347.6,341.5,344.8,342.2],"script":[107.9,109.1,112.4,110,109.6,110.2,111.4,109.7,114.2,112.8,113.7,111.1,111.4,112,111.4],"paint":[224.3,222.5,224.6,223.3,223.1,229.5,228.1,230.8,226,230.6,233.7,228.9,223.1,224.7,223.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,37.6,38,38.6,39,39.1,38.3,38.3,38.4,39,39.1,38.2,38,37.6],"script":[11.1,11.5,11.1,11.2,11.7,11.3,11.7,11.7,11.4,11.1,11.4,11.6,11.4,11.1,11],"paint":[26,26.3,25.6,25.9,26,26.8,26.5,25.8,25.9,26.4,26.7,26.6,25.9,26,25.7]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,19.5,20,20.2,19.5,19.3,19.5,20.4,19.6,19.1,20.1,19.3,18.6,19.2,19.1],"script":[17.6,17.7,17.9,18.4,16.8,17.1,18.4,18.4,17.7,17.3,18.3,17.2,17.1,17.3,17.2],"paint":[1.5,0.9,1,1,1.8,0.9,0.9,0.9,1.7,0.6,0.3,1.8,0.6,1,1.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6438417434692383]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.449915885925293]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.4791259765625]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0068578720092773]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12136268615723]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[51.5,51.6,52.5,52.4,52.9,52.2,52.6,53.4,52.3,52.3,52.4,51.9,51.4,51.5,51.7],"script":[27.9,28.1,28.9,29.4,29.1,28.6,29.2,29.4,28.8,29,28.9,28.3,28.6,28,27.7],"paint":[23.2,23.1,23.1,22.5,23.4,23.1,23,23.6,23.1,22.8,23,23.2,22.3,23.1,23.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[68.7,66.2,67.9,67,68.2,67.9,68,69.8,67.4,66.6,67.1,68.6,66.4,67.3,66.2],"script":[44.3,41.8,43.8,42.8,43.9,43.2,43.6,45.8,42.5,42.7,43.1,44.4,42.2,43.2,42.5],"paint":[24,23.9,23.6,23.7,23.8,24.2,23.9,23.5,24.4,23.4,23.5,23.7,23.8,23.5,23.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.4,12.8,13.4,13.6,12.7,13.9,12.9,12.7,12.6,12,13.4,13.7,13.8,12.6],"script":[1.2,1.3,1.4,1.6,2,1.1,1.8,1.6,1.8,1.7,1,2.2,1.9,2,1.8],"paint":[10.9,10,10,10.1,10.3,10.5,11,9.7,9.5,9.6,9.3,9,9.9,10.2,9.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.2,10.8,11.5,10.6,10.8,10,9.8,11.3,11.1,10.6,10.9,10.7,11.4,10.9,10.6,11.9,10,11,11,11.2,11.1,10.6,11.3,11.5,10.4],"script":[8.1,7.4,8.6,7.5,7.9,7.3,7.1,8.1,7.7,7.7,8,7.4,8.4,7.8,7.3,8.6,7.7,7.9,7.7,8.1,7.8,7.7,8.1,8.2,7.3],"paint":[2,2.5,1.7,2,2,1.4,1.9,1.3,2.6,1.6,2.4,2.1,1.9,2,1.5,2.2,1.1,1.9,2.4,1.9,3.1,1.9,1.5,2.4,2.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[110.4,110,108.4,109,111.2,109.4,114.1,109.8,109,112.4,109.2,108.1,112.2,114.1,111.7],"script":[21.2,20.3,20.2,21,22,19.4,21.4,20.4,20.8,20,20,20.1,20.7,21.1,20.8],"paint":[87.5,87.7,86,86.9,87.3,88.5,90.9,86.6,86.3,91,86.7,86.4,90.2,90.6,88.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,12.8,13,13,13,12.9,12.7,12.7,13,12.8,13.2,12.6,12.8,13.1],"script":[1.7,1.5,1.6,1.3,1.4,1.7,1.5,1.4,1.6,1.6,1.7,1.5,1.5,1.4,1.6],"paint":[10.3,10.5,10.3,11.1,11.1,10.6,10.7,10.6,10.1,10.4,10.2,11,10.7,10.2,10.7]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[479.4,477.8,479.9,481.2,480.8,481,480.1,481.1,480.6,478.5,478.5,481.3,482.6,479.7,480],"script":[232.1,231.8,233.7,233.9,233.5,233.8,233.3,234,232.8,232,232.2,234.2,234.9,231.7,234.3],"paint":[239,237.9,238,239.2,238.9,239.1,238.5,238.7,239.4,238.1,238,238.9,239.5,240,237.5]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.2,58.2,58.8,58.7,58.1,59.3,58.7,59,58.4,59,58.7,58.3,58.9,58.7,59],"script":[30.1,29.4,31.1,30.1,29.6,30.9,30,30.3,30.6,30.7,30.2,29.4,30,30.2,30.8],"paint":[28.1,27.8,26.8,27.6,27.6,27.4,27.7,27.8,26.9,27.3,27.6,27.9,27.9,27.5,27.2]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.7,37.5,36.6,41.5,38.7,37.2,37.4,39.9,37.9,37.9,44.6,39.2,43.1,37.7,41.9],"script":[39.3,36,34.8,39.5,36.9,35.5,35.7,38.4,36.1,36.1,42.1,37.9,41.8,36.3,39.9],"paint":[1.2,1,1,1.3,1.6,0.8,1.6,0.6,1.7,1,1.4,1.3,0.3,1.3,1.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120527267456055]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.639345169067383]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.597149848937988]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2624378204345703]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.27529335021973]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[24.7,24.6,25,24.7,24.6,24.6,24.7,24.8,24.9,24.9,25,24.6,24.9,24.8,24.7],"script":[3.7,3.8,3.8,3.8,3.7,3.8,3.7,3.7,3.8,3.8,3.9,3.7,3.7,3.7,3.7],"paint":[20.6,20.5,20.9,20.5,20.5,20.5,20.6,20.7,20.8,20.8,20.8,20.5,20.8,20.7,20.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[29.2,28.2,28.5,27.9,28.6,28.8,28.5,28.5,28.4,28.3,28.1,28.7,28.6,28.1,28.4],"script":[6.5,6.1,6.4,6,6.3,6.4,6.1,6,6.2,6.1,6,6.3,6.2,5.9,6.1],"paint":[22.2,21.6,21.6,21.3,21.7,21.9,21.8,22,21.6,21.7,21.5,21.9,21.8,21.6,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.6,11.5,11.9,12.2,11.4,11.5,12.3,12.3,11.7,11.9,11.3,12.6,11.5,11.9],"script":[1.6,1.7,1.7,1.6,2.1,1.6,1.3,1.9,2.2,1.5,2.1,1.7,2.2,1.7,1.5],"paint":[9.2,8.7,8.1,9.3,9,7.9,9.3,8.9,8.8,9.9,8.9,8.1,9.4,8.9,7.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.7,2.7,5.4,2.7,6.4,4.2,2.4,2.7,6.2,2.7,4.9,2.5,2.7,2.4,2.4,2.8,3.1,2.5,2.7,3,2.5,2.4,2.5],"script":[0.4,0.5,0.7,0.1,1,1,0.5,0.9,0.7,0.5,0.1,0.4,0.4,0.1,0.1,0.3,0.1,1,1,0.1,0.1,0.7,0.7,0.1,0.6],"paint":[1.3,1.1,1.7,1.4,1.2,1.6,1.1,1.9,1.3,1.3,2.1,1.3,1.1,1.3,2.2,1.7,1.5,1.7,1,1.4,1.2,2.1,1.7,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.6,14,13.8,13.9,14.4,13.9,14.1,14.8,14.4,13.9,13.5,15.5,13.9,13.7],"script":[1.3,0.6,1.6,1,1.2,1.4,0.9,1.5,1.6,1.1,0.7,0.9,1.6,1,1.3],"paint":[11.6,11.7,11.5,11.7,11.9,11.8,12,11.4,12.5,11.8,12,11.6,12.8,12.1,11]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.9,10.8,11.4,10.6,10.7,10.4,10.7,11,10.1,10.4,10.7,10.4,10.9,10.9],"script":[0.5,0.5,0.5,0.5,0.3,0.5,0.3,0.5,0.3,0.2,0.5,0.3,0.2,0.5,0.4],"paint":[9.6,9.7,9.8,10.4,9.6,9.4,9.5,9.7,10.2,9.5,9.1,9.8,9.6,8.9,9.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[264,263.5,263.4,263.8,264.1,262.8,264.5,263.6,263,263.7,262.8,262.8,265.7,264.1,262.1],"script":[43.7,44.2,43.6,43.8,43.6,44.5,43.7,43.7,43.5,44,44,44,44.2,43.8,43.6],"paint":[213.3,212.4,212.4,213.1,213.6,211.4,213.9,212.9,212.4,212.8,211.9,212,214.4,213.3,211.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.3,30,29.6,29,28.4,29.8,28.7,28.5,28.5,30,29.2,28.8,28.5,29.9,28.3],"script":[3.8,4.2,4,3.6,3.5,3.7,3.5,3.5,3.6,3.8,3.7,3.8,3.5,3.8,3.5],"paint":[24.8,25,24.9,24.6,24.2,25.4,24.4,24.3,24.1,25.4,24.8,24.3,24.3,25.4,24.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,10.9,11.5,10.4,10.5,10.9,11.5,10.5,10.6,10.4,11.3,10.7,10.5,11.2,10.8],"script":[9.7,9.2,9.8,8.6,9.3,8.5,9.2,8.9,8.7,8.6,9.6,9,8.4,9,8.9],"paint":[0.6,1.2,0.5,1.1,0.3,2.1,1.1,1,1.1,0.9,0.3,0.6,1,0.4,0.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7621994018554688]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.204743385314941]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.142613410949707]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0129585266113281]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.105714797973633]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[58.4,58.5,58.6,59.4,58.3,58.9,58.7,58.3,58.6,58.4,58.1,58.9,58.5,58.6,58.3],"script":[35.7,35.7,35.7,37,35.5,36,35.8,35.7,36,35.4,35.4,35.9,35.6,35.9,35.5],"paint":[22.2,22.3,22.4,22,22.4,22.5,22.4,22.1,22.2,22.5,22.3,22.5,22.4,22.2,22.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[87.7,87.6,88,88.6,88.1,86.2,87.1,88.8,87.9,87.5,87.8,87.9,88,88.1,88.5],"script":[63.4,63.3,64,64.2,63.7,62.3,62.5,64.3,63.4,63.3,67.9,63.7,63.5,63.8,64.3],"paint":[23.8,23.8,23.5,23.8,23.8,23.4,24.1,24,23.9,23.7,19.4,23.7,23.9,23.8,23.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.7,15.5,15.8,15.8,15.8,15.9,15.1,17.3,15.1,17.2,15.7,16.2,15.8,15],"script":[3.9,4.3,4,4.3,4.5,4.1,4.2,3.9,5.4,3.5,4.7,4.7,3.9,3.7,4.1],"paint":[10.6,10.3,9.4,10.5,9.4,10.3,10.4,9.6,10.3,9.9,11.7,9.5,10.7,10.4,10]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.5,6.7,7.6,7.2,6.9,8.1,7.6,7.8,6.7,6.9,6.9,7.2,7.7,7.1,7.4,8.1,7.3,6.5,6.5,7.2,7.2,7.8,7.6,7.3,7.8],"script":[5.9,4.3,5.4,4.5,4.8,5.5,4.5,5.3,4.8,4.5,4.8,4.2,4.6,4.2,5,5.4,4.5,4.3,4.1,4.3,5,4.9,5.1,5.1,5.1],"paint":[2.5,1.2,1.3,2.3,1.5,1.8,2,1.8,1.1,1.8,1.7,1.9,2.5,2.4,2.3,2.4,2.2,2,1.1,2.7,2.1,2.7,1.5,1.2,2.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[107.6,104.8,108.5,107.3,104.3,109.1,107.6,107.6,107.8,106.8,111.2,106.4,103.5,106.7,108.6],"script":[17.4,15.3,18.4,16.2,15.2,16,16.5,15.7,15.7,16,17.6,15.4,15,16.6,16.1],"paint":[87.9,88.1,88.1,88.8,87.1,89.5,90.3,90.5,90.5,88.9,90.7,89.3,87.1,88,90.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.1,12.7,12.5,12.6,12.8,12.7,13.3,12.7,12.3,13.2,13.2,12.7,12.5,12.7],"script":[1.8,2.1,2.1,1.8,1.9,1.9,1.9,1.9,2.1,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[10.3,10.2,9.7,9.4,10.3,10.4,10.6,10.7,9.4,9.6,11,10.4,10.3,9.7,10.3]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[478.5,479,480.7,479.5,477.7,479.4,479.8,479.6,478.6,478.3,479.7,482.7,478.6,479.9,479.1],"script":[238,239.3,239.4,240.1,239,239.6,239.5,239.6,239.5,238.5,237.7,240.7,238.7,239.5,238.7],"paint":[232.6,232.2,233.5,231.8,230.9,232,232.6,232.3,231.4,232,234.4,234.1,232.1,232.5,232.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.5,61.9,62.1,61.2,61.9,61.3,61.8,62.3,62.2,62.3,61.9,62.1,61.9,61.9,61.7],"script":[34.5,35.1,35.4,34,35.1,34.4,34.7,35.2,35.1,35.5,34.6,35.1,34.8,34.9,34.7],"paint":[26.2,25.9,25.8,26.3,25.9,26,26.1,26.2,26.3,25.9,26.4,26.1,26.2,26.1,26.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.2,35.4,33.2,32.5,33.2,34.4,33.5,32.6,33.2,34.7,33.7,32.5,32.8,33.3,32.3],"script":[30.9,33.4,31.4,30.9,31.8,33.2,31.9,30.6,31.6,32.9,32.4,30.9,31,31.7,30.5],"paint":[1.8,1.5,1.6,0.3,1.3,0.4,1.5,1,0.3,1.4,0.3,0.8,1.5,1.5,1.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.346522331237793]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.221152305603027]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.326862335205078]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09367561340332]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.92218017578125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[629.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[32,31.2,32.1,31.9,32.6,31.9,32.8,33,32.7,32.8,32.8,32,32.3,32.7,32],"script":[10.7,10.2,11.1,10.8,11.5,10.9,11.3,11.4,11.3,11.3,11.1,10.8,10.9,11.2,10.8],"paint":[20.8,20.5,20.5,20.6,20.5,20.5,20.9,21.1,20.9,20.9,21.2,20.6,20.8,21,20.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[37.1,36.6,37.2,37,37,37.4,37.4,37.1,37.4,37.5,37.5,37.7,37.2,37.5,37],"script":[13.8,13.7,14.5,14.3,14.4,14.4,14.8,14.4,14.6,14.6,14.7,14.5,14.7,14.6,14.5],"paint":[22.7,22.3,22.1,22.1,22,22.5,22.1,22.1,22.3,22.4,22.2,22.6,21.9,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.9,17,16.9,17.2,17,17.2,16.5,17.6,15.9,17.5,16.8,17.5,16.5,17.3],"script":[4.6,5,5.7,5.8,5.7,5.2,5.5,5.5,5.8,4.8,6.1,5.6,5.3,5.5,5.6],"paint":[9.6,9.1,8.3,9.7,9.7,10.6,9.9,9.2,9.7,10.1,9.8,8.9,10.1,9.5,9.4]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.9,4.5,6.9,3.7,4.5,3.6,4.1,4.5,4,4.2,3.8,4,5.3,4,4.7,3.8,4.4,4,6.4,4.3,4.2,3.5,3.9,4.6],"script":[2,1.6,2.1,2.2,2,2.1,1.5,1.9,1.5,2,1.8,1.9,2.3,2.1,1.8,1.9,1.3,1.9,1.6,1.7,2.4,1.5,1.3,1.6,1.8],"paint":[1.6,2,1.5,2.1,1.6,1.9,1.9,1.2,2,1,0.8,1,1.6,2.7,1.1,1.2,1.4,2.3,1.5,2.8,1.3,0.4,2,1.3,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[106.1,106.7,112.1,107.7,110,109.9,108.8,111,108.2,111.4,110.5,109.4,105.7,108.2,109.9],"script":[21.6,20.7,22.6,21.7,21.6,21.6,21.3,21.5,20.9,20.5,22,20.5,20.1,21.3,21.2],"paint":[82.1,82.5,87.8,84.1,85.4,85.5,84.6,86.7,84.5,87.9,85.7,85.8,83.6,84.7,86.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13.8,13.4,13.2,12.4,13,12.9,13.4,13.5,12.9,13.3,12.5,13.2,13.7],"script":[2.7,2.4,2.7,2.6,2.5,2.2,2.4,2.5,2.4,2.7,2.5,2.6,2.1,2.7,2.7],"paint":[9.7,9.4,10.3,9.9,10,9.4,10,9.8,10,10.3,9.2,10,9.7,9.8,10.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.4,412.7,415,415.4,409.3,413,416.2,415,411.9,408.7,413.1,407.4,410.4,410.1,414.9],"script":[189.5,188.2,189,190.3,185.9,188.7,190.1,187.7,185.3,184.3,188.1,183.4,185.2,185.1,189.5],"paint":[213.7,217,218.8,217.3,216.1,216.9,218.7,219.4,218.8,217,217.6,216.9,218,217,218.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.5,36.4,36.9,36.9,36.6,36.4,36.8,36.6,36.7,36.3,36.8,36.7,36.7,37.8],"script":[10,9.6,10.1,10,10.1,10.1,9.9,10.1,10.2,10,10.2,10.2,10.5,10,10],"paint":[25.6,25.9,25.3,25.9,25.8,25.5,25.5,25.7,25.4,25.8,25.2,25.7,25.2,25.8,26.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.9,14.6,13.3,13.9,12.8,13.6,12.5,13.3,13.4,13.4,15.2,13,12.8,13.5],"script":[11.2,10.9,12.5,11.2,11.5,10.4,11.2,10.6,11.5,11,11.6,13,10.3,10.6,11.5],"paint":[1.1,1.8,1.2,1.1,0.9,1.2,1.4,0.3,0.4,1.6,0.3,1.7,1.5,1.1,1.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1626176834106445]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.758243560791016]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.336838722229004]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.6927289962768555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.66135883331299]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[172.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.8,28.4,28.6,29.5,29.6,29.8,28.8,29.9,29,29.3,29,28.5,28.7,28.5],"script":[6.7,6.6,6.5,6.6,7.4,7.3,7.4,6.7,7.4,6.7,7.2,6.7,6.6,6.6,6.6],"paint":[21.8,21.7,21.3,21.5,21.6,21.7,21.9,21.6,22,21.8,21.6,21.8,21.4,21.6,21.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.2,34.1,34.9,34,33.9,34.3,34.1,34.1,34.2,34.5,33.9,34.6,34.2,34.1],"script":[11,11.1,11.3,11.8,11,11,11.4,11.1,11,11.2,11.2,11.1,11,11.2,11],"paint":[22.3,22.5,22.3,22.5,22.4,22.3,22.4,22.4,22.5,22.4,22.7,22.2,23.1,22.4,22.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.6,13.1,13.8,13.6,13.4,13.5,14.2,12.9,13.8,13,13.5,14,14.1,13.5],"script":[3.9,3.6,3.1,3.2,2.5,3.3,3.2,4.1,3.3,3.4,2.7,3.5,3,3.4,3.5],"paint":[8.9,9,8.8,8.7,9.8,9.2,9.5,8.7,8.1,9.3,9,8.7,10.1,9.2,8.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.9,5.5,5.9,4.8,4.4,5.2,4.4,5.1,5.5,5.5,5,5.8,5.3,5.5,4.9,5.3,5.2,5.1,5.1,4.7,5.1,5.2,4.8,5.1],"script":[2.8,2.8,2.6,3.7,2.9,2.5,2.8,2.6,2.7,2.9,2.8,2.7,3.6,3.2,2.8,3.2,2.7,3.1,3.2,2.7,3.2,3.1,3.1,3.1,3.6],"paint":[1.9,1.4,2.1,2.1,1.1,1.1,2.3,1.1,1.3,1.5,2.6,1.2,1.8,1.9,2.6,1.5,1.7,1.4,1,1.5,1.3,1.9,2,1.6,0.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.9,15.6,14.9,14.8,16,16.2,16.4,15.2,18,16.1,16.7,15.5,16,14.8],"script":[3.6,3.6,2.9,2,2.5,2.6,3.7,3.5,2.6,4.3,2.6,4.3,3.1,2.9,2.9],"paint":[12.4,12.6,11.4,11.9,10.8,12.3,11.5,11.5,11.5,12.7,12,11.5,10.9,12,10.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.1,12.1,11.8,12.2,12.5,12.3,12.4,12.4,12.3,12.2,12.4,12.7,12.2,12.7],"script":[2.2,1.9,2.1,1.9,2,2.1,2.1,2.1,2,2,1.9,2.1,2.2,2.3,2.2],"paint":[9.6,9.6,9.4,9.6,9.6,9.8,9.7,9.7,9.7,9.7,9.7,9.8,9.5,9.4,9.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.7,297.7,298.3,299.5,297.8,297.4,299.8,297,296,296.3,297.5,299.3,297.6,297.5,297],"script":[66.5,67.3,67.1,67.2,66.2,66.3,67.1,66.4,66.4,66.4,65.5,67.3,66.5,66.4,66.4],"paint":[222.9,223.2,224.1,224,224.3,223.7,225.3,223.4,222.5,222.6,224.8,224.8,224,223.9,223.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.8,34.7,35,34.2,34,34.1,33.4,33.5,33.8,33.5,33.6,33.6,33.4,34],"script":[6.7,6.7,7.1,7,7,6.9,7.2,6.8,6.6,6.7,7,6.9,6.6,6.7,6.7],"paint":[25.8,26.2,26.6,27,26.2,26.1,26,25.7,25.9,26.2,25.6,25.7,26,25.8,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.1,17,17.9,18,17.2,19.6,17.9,17.6,19.1,18.8,19.2,18.2,16.9,18.5,17.8],"script":[15.2,15.1,15.3,16.2,15.2,17.4,15.8,15.3,16.8,16.5,16.8,15.5,15.3,16.4,15.2],"paint":[0.3,0.9,1.6,0.8,0.8,1.2,1.8,1,0.7,0.3,0.3,1.6,0.7,1.2,0.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7741727828979492]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.514687538146973]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.531018257141113]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.546525001525879]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.217732429504395]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[222.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[27.4,26.5,25.9,26,26.2,25.8,26.1,26,26.2,25.4,26.7,26.1,26.1,26,25.5],"script":[4.9,4.2,4.1,4.3,4.2,4.1,4.2,4.2,4.2,4.2,4.7,4.2,4.6,4.2,4],"paint":[22.1,21.8,21.4,21.3,21.5,21.3,21.5,21.4,21.5,20.9,21.5,21.4,21.1,21.4,21.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.8,30,30,30.1,29.8,30.2,30.1,30.4,29.9,29.6,30.4,30,30.4,30.2,30],"script":[6.7,6.7,6.9,6.9,6.8,6.8,6.8,6.9,6.9,6.7,6.9,6.9,7,6.9,6.9],"paint":[22.5,22.6,22.5,22.7,22.4,22.7,22.7,22.9,22.4,22.4,22.9,22.6,22.9,22.7,22.5]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.8,12.8,12.5,11.8,12.6,12.9,13,13.2,12,12.1,11.4,13.3,12.2,14.5],"script":[1.8,2.5,2.1,1.7,1.7,1.3,2.7,1.8,2.8,1.7,1.6,1.8,1.9,2.1,2.3],"paint":[9.3,9.2,9.8,9.8,8.9,10.2,8.7,9.8,9.4,9,9.5,8.1,9.6,8.8,10.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.6,4.3,4.2,4.2,4.3,4.5,4.6,4,4.2,4.2,4.2,4.3,4.3,4.8,4.5,4,4.9,4.4,4.2,5,3.8,4,4],"script":[2,1.6,1.8,1.8,1.7,2.1,1.9,1.8,1.5,1.8,1.8,2.1,1.5,1.6,1.6,2.4,2.1,1.8,2.6,1.5,1.2,2.3,1.6,1.6,1.7],"paint":[1.1,2.6,2.7,2.4,1.2,1.9,1.9,1.3,2.9,1.4,2,1.6,1.7,2.2,2.5,2.3,2.2,1.4,2.2,1.7,2.4,2.2,1.3,1.9,1.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.4,15.2,14.6,16.2,15.9,15.8,14.6,14.5,15.1,15.3,15.4,14.9,15,15.5],"script":[1.8,1.4,1.9,1.5,1.8,1.7,2.3,1.6,1.5,1.5,1.8,1.9,2,1.5,2],"paint":[13.8,13.1,12.1,12,13.3,13.4,11.9,12,11.9,12.4,12,12.4,11.3,12.5,12]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.8,11.6,11.7,12,12.7,11.9,11.9,11.9,11.8,12.1,12,11.5,12,12.2],"script":[0.9,0.9,1.1,1.1,1.1,1.8,1.1,0.9,1.1,0.9,0.9,1.1,0.7,1.1,1.3],"paint":[10.7,10.1,9.8,9.9,9.7,10.4,10.2,10.4,10.4,10.1,9.9,10.3,10.1,10.5,10]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[278.5,275.8,280.2,277,278.7,276.6,277.6,279.8,280.3,277.6,276.4,278.8,276.4,279.3,280.5],"script":[44.6,43.9,44.2,44,45.4,44,44.4,44.8,45.3,44.4,43.9,44.6,44.7,44.8,46.2],"paint":[226.1,224.2,228.4,225.3,225.5,224.9,225.6,227.3,227.2,225.1,224.8,226.6,224,226.5,226.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.6,32,31.6,31.7,32,32.4,31.7,32.1,32.2,31.7,31.8,32,32.5,31.9],"script":[4.8,4.8,4.6,4.8,4.7,5.1,5.1,5.1,4.7,5.1,5,5.1,5.1,5.2,5.2],"paint":[25.9,25.9,26.5,25.9,26.2,25.9,26.3,25.6,26.5,26.2,25.7,25.7,26,26.4,25.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,12.3,11.7,11.7,12.5,12,13.3,12.1,11.2,13.3,13.3,13.3,13.1,12.7,11.6],"script":[10.3,10.2,9.9,9.6,10.6,9.5,11.3,10,9.9,10.9,11.5,11.2,10.5,10.1,9.8],"paint":[2,1.5,0.4,1.5,1.3,0.3,0.6,0.5,1.1,1.9,1,1.3,2.4,1.9,0.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6808300018310547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8559751510620117]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8668041229248047]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8445272445678711]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.080493927001953]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[25.7,25.9,25.5,25.3,25.6,25.5,25.7,26.3,26,25.8,25.7,25.7,26,25.9,25.4],"script":[3.4,3.7,3.6,3.3,3.5,3.4,3.4,3.7,3.5,3.4,3.7,3.3,3.6,3.6,3.4],"paint":[21.9,21.9,21.6,21.6,21.7,21.8,21.9,22.2,22.1,22,21.6,22,22,21.9,21.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,28.9,29.2,29.6,28.9,29.5,29.8,29.1,29.3,29.1,29.1,28.4,28.9,28.8,29.5],"script":[6.4,6.2,6.3,6.4,6.2,6.3,6.3,6.3,6.3,6.3,6.3,5.8,6.3,6.3,6.4],"paint":[22.8,22.1,22.3,22.6,22.1,22.6,23,22.3,22.5,22.2,22.2,22.2,22.1,22,22.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.4,11.4,11.5,11.1,11.4,11.4,12.7,11.4,11.9,11,12.4,12,12.4,11],"script":[1.3,1.8,1.2,1.8,1.2,1.1,1,1.4,1,1.5,0.9,1.6,1.5,1.6,1.3],"paint":[9.3,8.6,8.7,8.5,9,8.8,10.1,10,9.4,9.4,9.1,9.4,9.7,9.8,8.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.4,3.7,3.3,3.7,3.1,3.9,3.8,3.3,3.5,3.8,3.3,3.6,3.2,3.5,3.8,3,3.7,3.5,3.1,3.2,3.5,3.3,3.6,3.1],"script":[1,1.7,1.2,1.1,1.4,1.2,1.2,1,0.8,0.6,1.5,0.9,1.1,1.1,1.5,0.9,0.6,1.6,0.9,0.9,1.1,1.4,0.8,1,1.2],"paint":[1.9,1.6,1.4,1.3,1.2,1.8,1.9,2.7,1.3,2.8,1.6,2.3,2.4,2,1.2,2.1,1.9,1.9,2.4,1.1,2,2,1.6,2.5,1.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.3,13.6,14.4,14.9,14.3,13.9,14,14.3,14.5,14.2,13.8,14,14.1,13.7],"script":[1.3,1,1.1,1.3,1.6,1.2,1.4,1.1,0.6,1,1.3,1,1.8,0.9,0.9],"paint":[11.4,11.9,11.5,12.2,12.5,12.2,12.2,12,12.4,12.2,12.1,11.5,11.4,12.2,11.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.3,11.4,11.4,11.3,10.9,11.6,11,11.2,11.2,11.1,11,11.6,11.1,11.6],"script":[0.7,1,0.5,0.9,0.6,0.6,0.7,0.7,0.6,0.8,0.7,0.6,0.7,0.7,0.8],"paint":[10,9.4,10.5,9.9,10.4,9.6,9.7,10,9.9,9.8,9.9,9.5,10.3,9.8,9.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,270.9,270.3,271.7,269.9,268.4,269.7,270.2,273.4,269.2,271.3,270.2,269,270.2,270.6],"script":[38.2,38.3,38,37.5,38.2,37.5,37.4,37.7,37.9,37.8,37.9,37.8,37.5,37.9,37.5],"paint":[227.3,225.3,225,226.2,224.3,223.4,225,225.3,227.4,224.2,226,225.1,224.2,225.1,225.7]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,31.7,31.6,31.2,31.7,31.6,31.4,31.1,31.6,31,31.4,32.3,31.2,31.6],"script":[4.3,4.5,4.4,4.1,4,4.4,3.9,3.9,4,3.9,3.8,4,3.9,3.9,4],"paint":[26.7,26.2,26.5,26.7,26.5,26.5,26.9,26.7,26.4,26.9,26.4,26.6,27.6,26.5,26.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.4,12,13.1,13.8,12.5,12.4,12.4,12,12.2,13.4,13.9,12.5,12.4,12.7,11.6],"script":[10.5,10.3,10.5,11.5,11,10,10.5,9.7,10.5,11.3,12,11.1,10.5,10.3,10.5],"paint":[1.3,0.7,1.5,0.7,0.3,0.3,1.6,1.3,1.1,1,0.7,0.2,0.9,2.2,0.2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5732936859130859]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.635763168334961]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6673450469970703]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7030305862426758]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.04368019104004]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.2,27.1,27.7,27.5,27.2,27.5,27,27.3,27.3,27.3,27.2,27.4,27.2,27.5],"script":[5.4,5.3,5.3,5.4,5.6,5.5,5.3,5.3,5.3,5.3,5.5,5.3,5.6,5.3,5.3],"paint":[21.4,21.4,21.3,21.7,21.4,21.2,21.6,21.2,21.5,21.5,21.2,21.3,21.2,21.3,21.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[31.5,32,32.5,31.4,31.6,32.2,32.5,31.4,31.3,31.7,31.8,31.6,32.1,31,31.6],"script":[8.7,9.1,9.1,8.7,8.7,9.1,9.2,8.7,8.5,8.7,8.7,9,9.1,8.5,8.7],"paint":[22.3,22.4,22.9,22.2,22.4,22.6,22.7,22.1,22.2,22.4,22.5,22.1,22.4,21.9,22.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,14.1,12.4,13.2,14,13.2,13.6,12.8,12.3,13.2,13.3,12.5,12.5,13.3,13],"script":[2.9,2.9,1.6,2.9,2.4,2.2,2.7,1.8,2.5,2.1,2.4,2.4,1.9,2.8,2.7],"paint":[10.2,9.8,9.5,9.1,9.8,9.9,9.3,9.7,8.9,9.9,9.7,8.8,10.3,8.8,8.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.8,7.1,8,8.8,8.7,7.1,6.7,8.3,7.9,7.9,8.5,7,7.9,7.2,9,8.5,8.1,7.9,7.6,9.4,7.9,7.8,8.4,9,8.2],"script":[5.9,5,4.9,5.3,5.6,4.2,5,5.3,5.3,4.9,5.4,4.9,5.2,4.7,5.8,5.4,5.1,5.3,5,5.9,4.9,5.3,5.6,5.2,5.4],"paint":[1.6,1,2.8,1.6,1.2,2.4,1.6,2.2,1.2,2,1.1,1.9,1.1,1.4,2.3,2,1.4,1.3,1.8,1.7,1.4,1.4,1.5,1.8,1.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[99.7,96.5,99.5,98.7,99.2,97.1,100.7,99.7,98.8,97,98.3,100.7,97.4,94.2,98.7],"script":[12,11.6,12.5,12,12.1,11.7,11.8,10.7,11.6,11.3,11.4,13.9,11.4,10.9,11.9],"paint":[85.1,81.8,84.6,83.7,84.9,81.1,87,86.7,84.3,84.4,84.9,84.7,84.2,81,83.6]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.3,11,11.7,11.5,10.5,10.8,11.5,10.7,10.9,10.8,11.2,10.7,10.7,11],"script":[0.6,0.5,0.3,1.5,1.2,0.3,0.5,0.8,0.4,0.6,0.3,0.9,0.5,0.6,0.6],"paint":[9.5,10.5,10.4,9.5,9.4,9.7,9.7,10.1,9.8,9.7,9.5,9.6,9.6,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[284.7,284.7,284.7,283.1,284.8,284.2,285.6,283.9,285.7,285.7,284.3,285.8,285.2,287.5,284.8],"script":[53.8,55.5,55.8,54.2,54.7,54.9,55.1,54.2,55.1,54.2,53.7,54.1,54.3,56,54.6],"paint":[223.6,222,221.7,221.7,222.9,222.1,223.3,222.4,223.3,224.3,223.1,224.1,223.7,223.4,223]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,32.7,31.1,31.7,31.3,33.6,32.3,32.3,32.6,31.4,31.9,32.9,32.3,31.6,32],"script":[4.8,5.5,4.9,5,4.8,5.2,5.6,5,5.5,4.8,5,5.4,5,4.9,5],"paint":[25.7,26.2,25.4,25.9,25.7,27.4,25.8,26.3,26.2,25.8,25.9,26.6,26.4,25.9,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,12,12.3,11.7,12,11.4,11.9,13,11.8,12.7,12.6,11.9,12.1,12.2,11.6],"script":[9.8,10,9.6,9.7,10.1,9.6,10.2,10.2,9.6,9.8,10.2,9.9,10,10.1,10],"paint":[1.4,1,2.4,0.9,0.8,1.6,0.4,2.4,1.2,1.3,1.3,1.1,0.9,1,0.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.61370849609375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.043519973754883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.083294868469238]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7266397476196289]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.91557216644287]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.8,26.9,26.3,26.4,26.5,26.5,26.6,26.6,26.3,26.1,26.5,26.4,26.5,26.5],"script":[4.5,4.7,4.9,4.5,4.6,4.5,4.5,4.6,4.6,4.4,4.5,4.5,4.6,4.5,4.5],"paint":[21.8,21.7,21.7,21.3,21.5,21.6,21.7,21.6,21.6,21.5,21.2,21.6,21.5,21.6,21.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.6,30.7,30.4,30.2,30.1,30.4,30.3,30.5,30.7,30.5,30.3,30.4,30.3,30.6],"script":[7.6,7.5,7.7,7.6,7.5,7.1,7.6,7.6,7.6,7.6,7.6,7.5,7.6,7.6,7.6],"paint":[22.3,22.5,22.4,22.3,22.1,22.4,22.2,22.2,22.4,22.5,22.3,22.3,22.2,22.2,22.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,15.3,16.8,14.7,15.1,14.9,15.3,15.5,15,15,14.6,15.1,15.5,14.5,14.8],"script":[4.1,4.1,5.1,4.7,4.7,4.2,4.4,5.1,4.1,4.3,4.5,4.6,4.8,4.7,4.5],"paint":[8.5,9.7,10.2,8.5,9,9.5,9.2,7.9,9,9.3,8.8,9.2,9.4,8.8,8.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[7.2,9.5,6.7,6.5,8.1,8.5,6.3,7.3,6.6,7.2,7,6.2,7,6.6,7,7.4,7,7.5,8,8.1,7.3,6.4,7.5,7,6.7],"script":[4.5,5.8,4.6,4.1,5.3,5.1,4.1,4.1,4.2,4.8,4.7,4.4,4.7,4.2,4.6,4.5,4.9,4.3,5.4,5,4.5,4.3,4.8,4.4,4.8],"paint":[1.7,3.2,2,2.2,1.8,1.9,2.1,3,1.9,2.3,2.3,1.6,1.4,1.9,1.5,1.7,1.8,2.5,1.3,1.6,1.9,2,1.7,1.6,1.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,17,17.6,18.6,19.3,17.1,17.6,18.5,17.5,17.6,17.2,17.3,18.5,17.5,20.3],"script":[4.4,4.4,4.5,4.8,5,4.3,4.4,4.5,4.5,4.5,3.8,4.9,4.5,4,4.7],"paint":[10.7,11.2,11.9,12.6,12,12.2,12.2,12.2,11.8,11.8,12.4,11.3,13,12.5,14.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14,13.7,14,13.9,12.9,13.8,13.1,14.3,13.9,13.9,14.6,15.8,13.2,13.7],"script":[3.8,3.5,3.3,3.6,3.3,2.5,3.3,2.9,3.5,3.6,3.3,3.7,4.1,2.5,3.4],"paint":[10.1,9.8,9.8,9.6,9.9,10,9.6,10,10.5,9.7,9.3,10.3,11.1,10.4,9.3]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[269.7,273.8,271.7,271.7,270,271.7,272.9,271.8,270.2,272.4,270.8,270.9,271.3,268.6,271.6],"script":[40.7,40.2,41.2,41.9,40.7,40.4,40.1,41,40.3,41.4,40.2,40.9,40.5,40.9,40.9],"paint":[222.1,226.5,223.3,222.6,221.7,223.4,225.2,222.7,222.8,223.7,223.3,222.8,223.7,220.6,223.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.6,34.4,33.4,33.3,33.5,33.9,33.2,33.7,33.4,33,33.6,33.7,33.4,34],"script":[6.5,6.3,6.2,6.4,6.4,6.3,6.3,6.3,6.5,6.5,6.6,6.5,6.4,6.7,6.3],"paint":[26,26.3,27.2,26,26,26.3,26.6,26,26.3,26,25.5,26.2,26.4,25.9,26.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.7,11.4,12.6,12.7,11.8,11.6,11.2,11.8,12,12.3,11.8,11.6,12.3,11.2],"script":[9.9,9.4,9.2,10.3,10.5,9.4,9.9,9.7,9.2,10.1,10,9.6,9.1,10.1,9.6],"paint":[0.8,2.1,1.2,1.1,1,1.4,0.3,0.3,2.4,1.7,1.3,2,1.6,0.7,0.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8143367767333984]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.359827995300293]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3946762084960938]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3741464614868164]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8940372467041]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.5,24.4,24.7,24.4,24.4,24.6,24.5,24.5,24.2,24.6,25,24.4,24.6,24.5],"script":[2.6,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5],"paint":[21.9,21.7,21.5,21.7,21.5,21.5,21.7,21.6,21.7,21.4,21.7,22.1,21.7,21.8,21.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.1,27.4,26.8,27,27.2,28.2,27.4,27.6,27.8,27.9,27.6,27.2,27.3,27.9],"script":[4.4,4.4,4.5,4.2,4.3,4.4,4.5,4.4,4.4,4.5,4.5,4.5,4.4,4.5,4.6],"paint":[22.5,22.3,22.4,22.2,22.2,22.3,23.3,22.5,22.8,22.9,23,22.7,22.4,22.4,22.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,11.2,11.6,10.9,11.4,10.2,10.5,10,12.4,11.4,10.5,11.1,12.4,11.5,10.2],"script":[0.9,0.6,1,0.6,1.3,0.2,0.9,0.2,0.9,1.6,1.1,0.7,1,0.9,1],"paint":[10.3,9.6,9.6,9.4,8.4,8.5,8.5,8.5,10.4,8.2,8.4,9.1,10.2,9.9,7.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.7,2.5,2.7,1.9,2.9,2.5,2.9,2.4,3,3.2,2.9,2.5,2.8,2.8,2,3,2.6,2.5,2.1,2.1,2.7,2.4,2.4],"script":[0.9,0.1,0.6,0.1,0.1,0.1,0.5,0.5,0.1,0.5,0.7,0.9,0.9,0.4,0.9,0.7,0.1,1,0.5,0.1,0.6,0.5,0.1,0.5,0.1],"paint":[1,2.5,1.6,1.6,1,0.9,1.4,1.1,1.6,1.1,2,2.1,1.9,1.9,1.3,2,1.1,1.7,2,2.1,1,1.5,1.6,0.4,2.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.9,14.5,14.6,14.6,13.9,15,15.9,14.3,14.6,14,14,13.4,14.4,13.8],"script":[1.1,1.7,1.3,1,1,1.3,1.8,2.1,1.5,1,1.4,1,1.2,1.4,1.1],"paint":[11.7,11.3,12.5,11.8,12.3,11,11.8,12.3,11.7,12.2,11.4,11.5,10.6,11.5,11.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,10.8,10.7,10.9,10.6,11,11.8,10.8,10.7,11.1,10.8,11.2,10.4,10.6],"script":[0.7,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.6,0.6,0.6],"paint":[9.1,9.6,9.4,9.4,9.6,9.6,9.7,10.5,9.5,9.6,9.7,9.5,10,9.2,9.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[255.6,256.4,258,256.3,256.8,255.5,256.3,257.5,255.5,257.1,256.5,255.8,257.3,258.2,260.1],"script":[26.6,27.2,27.9,27.4,27.3,27.8,27.8,27.8,27.1,28.6,27.7,27.4,28.3,27.6,28.4],"paint":[221.9,222.1,223.2,221.8,222.5,220.7,221.2,222.5,221.3,221.4,221.8,221.5,221.7,223.6,224]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30,30.2,31,30.1,30.4,30.3,30.8,30.3,30.6,30.5,30.4,30.3,30.1,30.4,30.1],"script":[2.9,3,3,2.9,2.8,3,3.5,2.9,3.1,3,3.1,2.9,3,3,2.9],"paint":[26.4,26.5,27.3,26.4,26.8,26.6,26.5,26.6,26.7,26.7,26.5,26.6,26.4,26.7,26.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.6,8.7,9.8,9,9.4,9.7,10.8,9.7,11.8,9.8,9.8,9.3,9.2,9.4],"script":[7.9,7.4,7.6,7.4,7.2,7,7.6,8.4,7.9,9.8,7.9,7.7,7,7.5,7.8],"paint":[0.7,1.3,0.9,2.2,0.8,2.2,1.5,1.4,0.5,0.8,1,1.1,0.2,0.3,1]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5458879470825195]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4669437408447266]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5476388931274414]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7141580581665039]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.016407012939453]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.4]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.7,27.1,27.2,27,27.1,27,27.4,27.8,27.2,27.5,27.2,27.4,27.8,27.5,27.5],"script":[5.8,5.4,5.3,5.3,5.4,5.3,5.4,5.8,5.2,5.7,5.3,5.4,5.7,5.4,5.4],"paint":[21.4,21.2,21.3,21.1,21.2,21.1,21.5,21.4,21.4,21.3,21.3,21.4,21.6,21.5,21.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.9,30.2,30.2,30.1,30.5,30.4,30.4,30.5,31.7,30.3,30.3,30.7,29.8,29.9,31],"script":[8,7.5,7.6,7.6,7.8,7.6,7.6,8,8,7.7,8.1,8.2,7.5,7.7,8.3],"paint":[22.4,22.1,22,21.9,22.1,22.2,22.2,22,22.9,22.1,21.6,22,21.8,21.7,22.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,13.7,14.7,14,13.6,14.5,14.5,16.7,15.3,14.4,13.4,14.5,15.4,14.3,13.9],"script":[4.3,3.4,4.5,4,3.9,4.1,4.5,4.3,4.3,4.8,4.3,3.8,5,3.6,3.7],"paint":[9.6,8.6,9.1,8.7,7.9,9.1,8.6,11.2,8.8,8.5,8,9.7,9.5,9.3,8.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,3,3.1,3.3,2.9,2.3,2.5,2.9,2.4,3.4,2.7,2.5,4,2.2,2.5,2.4,2.3,2.8,3.3,2.5,2.8,2.9,3.5,3.7,3],"script":[1.1,0.8,0.8,1,1,0.1,0.9,0.5,0.7,1.1,0.1,0.1,0.1,0.6,0.8,0.8,0.1,0.9,0.6,0.9,0.8,0.8,1.3,0.8,1.2],"paint":[1.3,1.4,2.2,1.5,1.8,1.3,1.1,0.6,1.5,2.2,1.6,2.2,2.5,1,1.6,1.5,1.3,1.7,2.5,1,1.1,2,2,1.6,1.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,13.3,13.2,14.1,13.5,13.3,13.6,13.2,14.3,12.9,13,13.8,12.5,13,14.4],"script":[0.7,0.1,0.1,0.5,0.7,0.8,0.7,0.4,1,0.1,0.1,0.8,0.1,0.1,0.8],"paint":[12.1,12,12.3,12.6,12.1,11.8,11.4,11.8,12.2,11.3,11.9,11.9,11.5,11.1,12.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.5,10.4,10.7,10.3,10.1,10.3,10.7,10.8,10.6,10.2,10.5,10.4,10.4],"script":[0.4,0.3,0.1,0.1,0.1,0.3,0.2,0.3,0.1,0.3,0.4,0.3,0.1,0.4,0.3],"paint":[9.4,9.5,9.7,9.5,10.1,9.3,9.4,8.8,10,9.7,9.3,9.3,9.9,8.9,9.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[277.1,274.7,274.9,276.8,273.6,274.1,274.2,274.4,276.4,275.8,276.1,275,276.7,274.5,273.4],"script":[45.6,45.4,45.3,46.3,45.7,45.7,46.5,45.8,46,46.7,45.7,46,46.6,45.7,45.3],"paint":[223.8,222.1,222.3,223.2,220.6,221.1,220.6,221.4,223.2,222,222.9,221.8,223,221.7,220.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,31.5,32.3,32.5,32.2,32.3,32,31.2,31.4,31,32,31.9,31.6,32.2,32.4],"script":[5.4,4.8,5.4,5.4,5.3,5.5,5.2,5.1,5.4,5.1,5.4,5.4,5,5.3,5.3],"paint":[26.6,25.9,25.9,26,25.9,25.8,25.9,25.2,25.2,25,25.6,25.6,25.8,25.9,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.7,15.4,14.8,15.4,14.6,14.8,15.7,14.9,15.7,15.5,16.1,14.8,14.4,17.1,14.8],"script":[13.6,13.2,12.9,13.2,13,13.1,12.8,12.5,12.8,13.1,14.4,12.5,13.3,15.1,12.7],"paint":[1.4,0.9,0.8,0.9,0.3,0.3,1.1,0.8,2.2,1.7,0.3,1.6,0.2,1.6,0.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7609901428222656]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6951465606689453]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653345108032227]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.031198501586914]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.497085571289062]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[34.6,35,34.7,34.5,34.9,35.1,34.7,35.2,34.9,35.1,34.8,34.6,34.6,34.9,34.7],"script":[12.1,12.4,12.3,12,12.2,12.4,12.3,12.5,12.3,12.4,12.3,12.1,12.1,12.3,12.2],"paint":[22,22,21.8,21.9,22.2,22.2,21.8,22,22,22.2,21.9,22,22,22.1,21.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[37.6,38.1,38.3,38.1,37.2,37.8,38.4,37.6,38.1,38.2,37.8,37.8,38.3,38.2,37.9],"script":[14.3,14.4,14.5,14.4,14.3,14.1,14.6,14.3,14.5,14.3,14.3,14.2,14.7,14.5,14.5],"paint":[22.8,23.1,23.2,23.1,22.3,23.1,23.2,22.7,23,23.3,22.9,23,23,23.1,22.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.7,12.4,11.7,12.5,12,11.9,12.7,12.2,11.7,12.5,11.1,12.5,12,11.3],"script":[0.9,1.4,1.8,0.9,1.9,1.3,1.2,1.5,1.3,1.1,1.1,0.9,1,1.5,0.9],"paint":[10.3,9.1,9.1,9.8,8.8,9.8,9.7,9.7,9.6,9.2,10.5,9.5,10.7,8.9,8.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.2,2.1,2,2.8,2.1,2,2.2,3,2.5,2.4,1.5,2.7,2.3,1.9,2.4,2.4,3,2.1,2.6,1.9,2.2,2.5,2.7,6.6],"script":[0,0.1,0.3,0.1,0.1,0,0.3,0.1,0.9,0,0.5,0.2,1,0.4,0,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.7,0,0.1],"paint":[1.3,1.4,1.3,1.1,1.7,1.5,1.3,1.2,1.9,2,1,0.7,1.6,1.7,1.1,2.2,1.4,2.8,1.9,1.8,1,1.6,1.7,2.5,1.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.5,12.9,13.3,12.8,12.7,13.4,12.9,13.3,13.1,12.9,12,12.3,12.6,12.8],"script":[0.1,0.1,0.8,0.1,0.1,0.7,0.8,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1],"paint":[11.1,11.2,10.8,11.7,11.6,10.5,11.7,11.5,12.3,10.8,11.5,11.1,11.3,11.4,11.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.5,10,10.4,10.8,10.2,10.3,10.4,10.8,10.4,10.2,11,10.8,10.3],"script":[0.4,0.3,0.3,0.3,0.3,0.4,0.3,0.1,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9,9.8,9.5,9.2,9.3,9.2,9.1,9.5,9.6,10,9.3,9.1,10.2,9.7,9.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[339.6,338.5,339.4,336.7,336.1,336.4,336.3,335.7,338,337.6,336.4,336.5,341.3,336.7,338.6],"script":[115.4,115.5,115.3,114.2,114.2,113.6,115.1,114,113.7,115.4,114.3,113.9,116.4,114.6,114.7],"paint":[216.4,215.7,217,215.3,214.9,215.7,214,214.4,217.1,215,215.1,215.6,217.2,215.2,216.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,39.6,39.2,39.2,39.5,38.3,38.5,38.2,38.8,38.1,39.2,38.1,38.9,38.5,38.3],"script":[12,11.9,12.3,12.3,12,11.5,11.8,11.7,12,11.6,12.3,11.4,12.2,11.8,11.7],"paint":[25.7,26.7,25.9,25.9,26.5,25.8,25.8,25.5,25.8,25.5,26,25.8,25.7,25.7,25.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.9,14.5,14.2,14.9,15,14.2,14,15.3,14.6,16.2,14.2,15.1,15.5,14.2],"script":[13.1,11.9,13.1,11.8,12.5,12.6,12.2,12.4,12.8,12.7,13.6,12.7,12.7,13.5,11.8],"paint":[2,1,0.3,1.7,1.4,1.3,0.4,0.3,1.8,1,2,0.3,0.8,1,0.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8166971206665039]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1328773498535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.152883529663086]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.12255859375]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.638179779052734]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.3,25.9,25.6,25.4,25.7,25.9,25.5,26.2,25.3,25.4,26.1,26,25.4,26.1],"script":[3.8,3.7,4.3,3.9,3.8,3.9,4.3,3.9,4.5,3.8,3.8,4.4,3.9,3.8,3.9],"paint":[21.7,21.2,21.2,21.3,21.2,21.5,21.2,21.3,21.4,21.2,21.2,21.4,21.8,21.2,21.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.7,29.1,28.8,28.7,30.1,29,29.5,28.9,29.4,29.2,28.9,29.9,28.7,28.8],"script":[6.3,6,6.3,6.1,6.1,6.2,6.2,6.4,6.2,6.1,6.1,6.2,6.4,6.1,6.2],"paint":[22.2,22.1,22.3,22.2,22.1,23.3,22.3,22.5,22.2,22.7,22.5,22.2,23,22,22]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,18.8,17.7,18.5,18.2,18.4,19.2,17.2,17.8,18,18.8,17.1,19.3,17.9,17],"script":[6.3,6.4,5.6,6.7,5.6,6.1,6.7,6,5.5,7,7,5.9,6.6,6,5.6],"paint":[10.1,10.4,10.1,9.9,11.2,10.4,9.9,9.4,10.1,8.7,10.1,9,10.3,9.8,10.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.8,6.1,5.8,6.8,6.3,6.4,5.8,6.6,6.5,5.9,7.5,6.2,6.3,6.4,6.4,6.3,6.4,6.8,6.4,6.1,6.5,6.9,6.9,7.2],"script":[3.9,4,3.8,3.5,4,4,3.8,3.7,4.2,4.4,3.8,4,3.8,4.3,4.5,3.7,4,4,4.3,3.8,4.2,3.8,4.6,5.1,4.9],"paint":[1.8,2.3,1.8,2.2,2.6,2.1,2.5,1.2,2.2,1.4,2,2.1,1.4,1.9,1.1,2.5,1.7,2,1.3,1.5,1,2.6,2.1,1.3,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[18.1,18.2,19.8,19.8,20.4,18.6,19,20,19.8,19.5,20.1,19.4,18.5,19.8,19.6],"script":[5,4.9,5.8,5.4,6,4.9,5.4,5.1,6.3,6,6,5.1,5.5,5.6,5.7],"paint":[11.6,11.2,11.6,12.5,12.1,12.5,11.6,13,11.4,12.1,12.8,12.5,11.1,12,11.8]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,12.8,13.3,13.2,13,12.9,13,12.9,12.9,13,12.8,12.8,13,12.9,12.8],"script":[2.5,2.4,2.4,2.7,2.7,2.5,2.6,2.5,2.5,2.6,2.4,2.4,2.5,2.7,2.5],"paint":[9.8,9.6,10.1,9.8,9.9,9.8,9.4,9.7,9.8,9.4,9.5,9.7,10.3,9.7,9.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[270.1,275,271.9,270.5,270.1,271.8,273.8,271.9,271.2,271.3,274.5,273.8,277.2,271.7,271.7],"script":[41.7,41.6,41.4,41.5,41.6,41.7,41.1,41.9,42.2,40.7,42.1,41.3,42.3,40.8,42],"paint":[221.3,226.4,223.2,221.8,221.2,223,225.4,222.9,221.9,223.4,225,224.8,228,223.7,222.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,31.8,32.1,31.6,33.4,31.9,32.2,32,31.4,32.9,31.9,31.3,31.9,31.2],"script":[5.6,5.6,5.3,5.6,5.4,5.6,5.6,5.7,5.6,5.4,5.7,5.4,5.5,5.5,5.4],"paint":[25.9,25.6,25.5,25.6,25.2,26.8,25.4,25.6,25.5,25.1,26.2,25.6,24.8,25.5,24.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.2,10.6,10.7,10.4,9.7,9.8,9.6,10.4,10.4,10.9,10.2,10.6,10.3,10.5],"script":[8.4,8.2,8.2,8.5,8.2,8.3,7.1,7.7,8,8.3,9,8,8.8,8.2,8.3],"paint":[1.2,0.3,1.2,1.3,1.4,0.6,1.3,0.9,1.9,0.9,1.7,0.9,1.5,0.6,1.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5943021774291992]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6553211212158203]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.596734046936035]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7271127700805664]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.3585844039917]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[26.8,27.4,26.2,26,26.7,26.6,26.8,27.3,27.5,27.2,27.2,26.7,27,26.9,27.7],"script":[4.7,5,4.3,4.3,4.6,4.4,4.6,4.7,5,4.8,4.7,4.6,4.8,4.6,5],"paint":[21.7,21.8,21.5,21.4,21.7,21.8,21.8,22.2,21.9,22.1,22.1,21.7,21.8,21.8,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,29.6,29.5,29.7,29.8,29,29.2,29.7,29.5,30.1,29.3,30.3,29.8,29.3],"script":[6.2,6.4,6.7,6.6,6.7,6.7,6.4,6.6,6.7,6.6,6.7,6.5,6.9,6.8,6.6],"paint":[23.1,22.4,22.3,22.3,22.4,22.5,22.1,22.1,22.5,22.3,22.9,22.3,22.8,22.4,22.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.6,9.6,10.7,10.1,10.6,10.2,10,10.3,10.4,10.3,10.6,11.2,10.3,10.1],"script":[0.9,0.1,0.1,0.5,0.1,0.6,0.5,0.1,0.7,0.1,0.7,0.5,0.1,0.1,0.6],"paint":[8.9,9.5,8.2,9,8.9,8.9,9.1,9,8.7,8.8,8.4,8.6,9.3,9.3,8.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.9,2.4,2.6,2.5,4.8,2.2,2.5,2.6,2.1,1.9,2.2,2.1,2.7,1.9,1.9,1.7,3.7,1.5,2.4,2.9,2.1,1.9,1.6],"script":[0,0,0.4,0,0,0.3,0.9,0,0.5,0.4,0,0,0,0.5,0.7,0,0,0,0,0,0,0.7,0,0,0],"paint":[2.4,1.6,1.5,1.5,2.5,1.9,1.4,2.1,1.9,2.1,1.9,1.8,1.8,1,1.9,1.1,0.9,1.5,1.6,1.4,2.2,2.1,1.9,1.1,1.3]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.3,13.2,13.1,12.6,12.2,12.7,12.5,12.7,13.5,13.9,12.5,12.9,13.1,13.2,13.2],"script":[0.1,0.1,1.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.6],"paint":[11.3,11.7,10.7,11.5,10.8,11.2,11,11.3,12.7,12.3,11.3,11.8,11.8,10.8,11.6]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.2,10.3,10.3,10.7,10.2,10.3,10.2,10.3,10.2,10.1,10.3,10.1],"script":[0.3,0.4,0.4,0.1,0.3,0.3,0.1,0.1,0.4,0.1,0.1,0.3,0.3,0.3,0.3],"paint":[9.6,9.3,8.9,9.5,9,9.1,9.9,9.7,8.7,9.6,9.7,9,9.1,9.2,9.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275.4,274.6,274.1,275.7,274.4,275.4,275.1,273.9,275.1,275.6,276.1,272.6,272.6,274.1,274.4],"script":[45.2,44.1,44.7,44.6,44.6,45,44.4,44.3,44.8,45.3,44.8,44.6,43.8,45.1,44.6],"paint":[222.9,223.1,222.1,223.7,222.6,222.7,223.1,222.3,222.9,222.9,223.9,220.7,221.6,221.8,222.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,32.1,34,32,31.6,31.8,32.3,32.4,33.3,31.1,32.5,32,31.7,31.8],"script":[4.1,4.4,4.7,5.4,4.7,4.5,4.5,4.6,4.5,4.5,4.4,4.9,4.4,4.6,4.1],"paint":[26.7,26.6,26.7,27.6,26.5,26.3,26.5,26.9,27.1,27.9,25.9,26.9,26.8,26.3,26.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,9.3,9.6,10,10,9.3,9.7,9.5,9.9,10.8,9.8,10.5,10.5,9.2],"script":[6.8,7.3,7.5,7.8,7.7,7.9,7.4,7.6,7.4,8.2,8.9,7.9,8,8.2,7.3],"paint":[0.9,0.3,1.2,0.9,1.4,1.2,1.1,0.9,1.3,1,0.3,0.9,1.5,1.2,1.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891357421875]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4300975799560547]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.464888572692871]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.756587028503418]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.3368558883667]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23,22.8,23,23.1,23,23,23.1,23.1,22.8,23.2,23.1,23,22.6,23,22.7],"script":[1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3],"paint":[21.3,21.1,21.3,21.3,21.3,21.3,21.4,21.4,21.2,21.5,21.4,21.3,21,21.4,21]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.4,25.9,25.9,25.9,26.2,25.7,25.5,25.5,25.5,25.6,26.1,25.2,25.9,25.6,26.2],"script":[3.3,3.3,3.4,3.2,3.5,3.3,3.3,3.1,3.1,3.2,3.4,3.2,3.3,3.2,3.5],"paint":[22.7,22.2,22.1,22.3,22.3,21.9,21.9,22,22,22,22.3,21.6,22.2,22,22.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,9.6,9.7,10.3,10.5,10.2,11,10.5,10.4,9.9,10.2,9.5,10.4,10.4,10.6],"script":[0.9,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1],"paint":[9.2,8,8.6,8.4,8.9,9.2,9.2,9.4,9.6,8.7,8.8,8.5,8.5,8.5,9.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.9,2.2,2.2,2.7,2.3,2.2,2.3,2,2.6,2.4,2.3,2.1,2.4,1.9,2.6,2.7,2.6,2.3,2.4,2.3,2.2,2.3,2.7],"script":[0.1,0.1,0.6,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.4,0.7,0.1,0.9,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1],"paint":[1.2,1.5,2.1,1.3,2,1.3,1.2,1.2,2.1,1.1,2,1.3,1.2,1.5,1.6,1,1.5,1.7,2.3,1.7,1.5,1.6,1.2,1.9,2.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[14.4,14,13.7,13.6,13.1,13.5,13.6,13.3,14.1,13.1,13.7,13.5,14.5,13.5,13.4],"script":[0.6,0.9,0.6,0.5,0.2,0.2,0.7,0.9,0.6,1.3,0.6,0.8,1.4,0.9,0.2],"paint":[11.7,11.9,11.9,11.6,11.7,11.7,11.2,11.4,12.6,10.2,11.7,11.7,12.4,11.6,12.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10,9.9,10.1,10.2,10.3,10.4,10.1,10.1,10,10.3,10.4,10.7,10.3],"script":[0.2,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.2],"paint":[9.7,9.5,8.7,9.2,9.3,9.4,8.8,9.1,8.9,9.4,9.2,9.6,9.5,10.3,9.6]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.2,245.7,245.2,244.9,245.5,244.1,246.9,244.1,244.1,243.6,244.7,244.5,245.7,247.5,244.9],"script":[15.1,15,14.9,15,15.1,14.8,14.9,15,14.7,14.8,15.2,14.9,15,15,15],"paint":[222.9,223.6,223.2,222.9,223.4,222.2,224.8,222.2,222.3,221.3,222.3,222.6,223.7,225.5,222.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.4,26.7,26.7,26.4,26.7,25.9,26.6,26.5,26.9,25.9,26.7,26.5,26.6,26.5],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3],"paint":[24.9,24.4,24.6,24.6,24.3,24.6,24,24.5,24.4,24.9,23.9,24.6,24.4,24.5,24.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.8,9.3,9.1,9.4,9.6,10.2,9.3,10.4,9.9,10.4,9.7,9.8,9.5,9.9],"script":[7.9,7.7,7.4,7,7.3,7.3,7.4,7.5,7.9,8,8.2,7,8,7.6,7.9],"paint":[2.1,0.7,0.9,1.5,1.1,1.2,1,0.6,1.6,0.6,1.1,1.7,0.7,1.2,1.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986108779907227]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.995802879333496]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0202550888061523]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7451982498168945]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.160560607910156]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.5,23.6,23.9,24,23.6,23.5,23.6,23.5,23.6,23.5,23.7,23.5,23.9,23.6],"script":[2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2,2.1,2.1,2.1,2.1,2.2,2.1],"paint":[21.1,21,21.2,21.4,21.5,21.1,21,21.1,21.1,21.1,21.1,21.2,21,21.3,21.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26.8,26.8,27.2,26.9,27.5,26.7,27,27.4,27,26.7,27.2,27.5,27,27.3],"script":[4.2,4.2,4.4,4.3,4.2,4.6,4.1,4.2,4.5,4.2,4.1,4.2,4.7,4.3,4.5],"paint":[22,22.3,22,22.5,22.3,22.5,22.2,22.4,22.5,22.4,22.3,22.7,22.4,22.2,22.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.6,10.8,11,10.6,11,11,10.7,10.6,10.9,10.4,10.9,11,11.2,11.2],"script":[0.9,1.2,0.5,0.8,0.7,0.9,0.6,0.8,0.6,0.5,0.8,0.2,1,1,1.1],"paint":[7.8,9.7,9.2,8.7,9.4,8.9,9.4,8.6,8.8,9.2,7.8,9.5,8.4,9.4,9.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,2.6,2.3,2.1,1.9,2.8,2.5,2.4,2,2.2,2.4,2.7,2.1,2.5,2.5,2.7,2.4,2.7,2.4,2.3,2.1,3,2.1,2.5],"script":[0.7,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.9,0.8,0.1,0.6,0.3,0.4,0.1,0.5,0.4,0.1],"paint":[1.3,2,1.6,1.7,1.9,1.3,2.6,1.6,0.4,1.1,2,1.3,2.5,1.9,2.3,1.1,0.8,1.5,1.6,1.6,1.8,1.9,1.7,1.5,1.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.3,12.8,13.3,12.3,12.5,13.3,12.6,12.9,12.8,14.1,12.9,13.3,12.1,12.8],"script":[0.1,0.4,0.4,0.8,0.1,0.1,0.5,0.6,0.1,0.5,0.7,0.3,0.9,0.1,0.4],"paint":[12,10.4,11.5,11.1,11.3,11.6,11.6,10.3,10.7,11,12.4,11.3,11,11.3,11.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.2,10.3,10.8,10,10.4,10.5,10.2,10.3,10.4,10.3,10.2,10.2,10.3],"script":[0.2,0.1,0.1,0.1,0.4,0.1,0.2,0.2,0.3,0.1,0.1,0.2,0.1,0.3,0.1],"paint":[9.4,9.4,9.6,9.6,9.7,9.5,9.6,9.6,9.3,9.6,9.2,9.6,9.5,9.1,9.6]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[252.7,255.4,257.5,256.2,254.1,253.6,255,255.8,254.6,253.6,254.2,253.4,253,253,252.7],"script":[24.1,24,25.3,24.5,24.2,24.3,24.8,24.6,24.1,24.1,23.9,24.6,24,24.6,24.4],"paint":[221.5,224.3,224.8,223.7,222.3,222.2,222.7,223.9,223,222.3,223,221.7,221.8,221.5,221.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.2,27.4,28,27.6,27.4,27.9,27.3,27.9,27.6,27.7,27.8,28.7,27.8,27.9],"script":[2.1,2.4,2.4,2.2,2.1,2.1,2.4,2.1,2.1,2.1,2.2,2.4,2.1,2.1,2.1],"paint":[25.1,25,24.2,25.1,24.7,24.5,24.7,24.5,25,24.8,24.8,24.7,25.7,24.9,25.1]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,10.3,10.2,10,9.8,10.2,9.5,9.8,10,9.2,10.8,9.8,9.6,10,10.5],"script":[7.8,8.3,7.8,8.2,7.5,7.9,7.7,7.7,8.1,7.8,8.5,7.6,7.8,7.7,9.1],"paint":[1,1.8,1.3,1,0.3,1.9,0.7,1,0.9,0.2,0.3,1.4,0.8,1.3,0.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559391975402832]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3419933319091797]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.352231979370117]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7482967376708984]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.106847763061523]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[53.2,41.7,40.7,43.2,43.3,42,48.2,42.8,41.4,43.1,44.8,46.8,46.5,48.4,46.9],"script":[19.6,19.2,19.4,19.2,19.4,19.4,19,19.3,19.8,19.2,18.7,19,18.7,18.9,19],"paint":[21.4,21.3,20.9,21.3,21.2,21,20.9,20.9,20.8,21.1,18,20.9,21.3,21,21]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[57.6,62.3,64.5,61.4,63.6,62.3,60.5,57.7,66.9,64.2,62.5,58.5,57.1,63.4,57.1],"script":[34.2,33,32.9,33,32.8,33.4,33.3,33,34,33.7,33.5,33.2,33.6,33.3,32.7],"paint":[22.1,23.2,23.3,19.4,23.5,23.1,23.4,23.1,19.8,23.1,23.1,23.4,22.4,19.7,23.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.1,64.9,68.6,48.6,47.2,63.4,49,64.3,51.9,65,48.4,67,65.7,70.2,65.1],"script":[33.9,33.5,34.6,33.1,33.4,33.6,33.9,31.7,35.5,32.9,34.2,34.8,32.7,35.6,32.2],"paint":[13.9,13.6,14.3,11.8,12.4,12.8,12.9,13.7,14.2,13.1,13.5,13.4,14.1,14.4,14.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[39.3,39.2,39.4,42,40.8,38,42.8,38.1,38.2,38.8,37.9,39.4,40.9,39.3,40,41.6,38.6,41.2,40.5,36.6,40.5,36.8,38.1,38.8,39.2],"script":[32.6,32.7,33.2,34.9,34.7,31.6,34.2,33.9,31.8,32.7,33.2,32.7,35.3,33,33,32.3,32.9,34.6,34.5,31.6,35.4,31,32.7,33.6,33.8],"paint":[4.4,4,4.1,2.6,4.1,4.4,3.4,2.1,3.2,4.4,2.9,2.9,2.6,3.4,3.1,3,3.5,4.2,2.6,3,3.9,3.6,2.6,4,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[47.7,68.9,46.4,46.3,67.4,48,66.5,66.3,49.2,48.1,48.4,46.2,64.7,63.7,65.4],"script":[29.8,32.7,29.8,29.6,30.2,30.1,31.3,29.1,30.8,31.1,30.7,29.9,30.4,29.7,30.2],"paint":[15.8,16.5,16.3,15.2,17.4,16,16.3,16.8,15.5,16.1,15.9,16,15.8,16.3,16.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,36.7,40.4,39.6,36.1,37.8,36.8,35.1,37.4,35.6,43.1,33.1,39.6,36.8,35.9],"script":[15.6,15.1,15.5,15.6,16.1,15.9,15.9,16.7,15.5,16.9,16.1,16.5,15.9,15.6,15.5],"paint":[12.2,13.7,13,12.8,13.2,13.1,13.5,13.2,12.8,12.9,14,13.1,13.2,13.4,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[416.4,413.6,411.1,411.4,415,409.7,413.2,418,405.7,409.1,422.5,414.2,413.3,416.8,418],"script":[184.1,182.8,181.3,185.7,182.8,184.8,182.9,185.1,182.9,183.5,187.2,183.7,183.2,183.4,185.7],"paint":[219.5,218.7,218.5,221.6,220.5,220.9,219.6,219.8,218.8,220.7,222.8,220.6,217.4,221,220.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.8,57.5,56.5,57,61.3,62.4,61.7,57.3,61,61.7,64.8,58.2,62.3,61.1,61.6],"script":[25.4,25.2,24.6,25.2,25.3,25.7,25.9,25.6,25,25.1,26,26.3,26,25.1,25.6],"paint":[27.1,26.8,26.4,26.4,26.7,27.2,26.3,26.6,26.6,27.1,29,26.4,27,26.7,26.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.4,45.4,41.9,41.5,47.7,40.8,42.7,40.7,42,42.5,48,41.8,41.5,42.1,41.9],"script":[18.6,18.7,18.7,17.9,19.2,18.2,19.6,18.3,18.9,18.6,20.2,19,18.4,18.9,19.6],"paint":[2.5,2.8,2.3,2.6,2.1,1.7,2.9,2.5,1.6,2.4,2.6,2.6,2.3,2.5,3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5811967849731445]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.099721908569336]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.533857345581055]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.157256126403809]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.772847175598145]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[480.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28,27.7,27.8,28.3,27.9,27,27.6,27.7,27.7,27.7,27.2,27.3,27.3,27.9,27.6],"script":[5.6,5.2,5.6,5.9,5.8,5.1,5.6,5.8,5.7,5.4,5.1,5.5,5.2,5.7,5.6],"paint":[21.9,21.9,21.7,21.9,21.5,21.3,21.5,21.4,21.4,21.8,21.5,21.3,21.6,21.7,21.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.1,32.1,32.5,32.7,32.1,33.2,32.2,32.7,32,32.1,32.1,33,32.5,31.8],"script":[10,9.8,9.7,9.7,9.9,9.9,10,9.8,10,9.6,9.8,9.7,10.2,9.7,9.8],"paint":[22,21.7,21.7,22.1,22.3,21.6,22.6,21.8,22.2,21.8,21.8,21.8,22.2,22.2,21.4]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.1,21.8,20.6,20.8,20.2,21.1,20.9,21.9,21.5,20.6,20.8,21,21.8,21.9,21.7],"script":[6.4,5.8,5.6,6,5.5,5.7,6,5.7,7.1,5.7,5.9,6.3,6,6.4,6],"paint":[13.5,14,12.4,12.9,12.9,13.5,12.1,13.7,12.3,13.2,12.8,12.6,13.9,13.9,13.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.9,11.3,11.7,11.1,12,11.3,11.9,11.1,11.3,11,11.6,11.9,11.2,11.8,11,11.1,11.5,11,10.7,11.4,11.8,11.9,11.9,11.5,10.7],"script":[6.1,6,5.7,5.2,6.8,5.4,6.3,5.3,6.3,5.8,6.4,6,5.1,6.6,5.1,5.8,6.1,5.4,5.5,5.7,6.6,6.2,6.1,5.9,5.4],"paint":[4.3,4.1,5.7,4.2,4,4.2,3.7,4,4.1,3.5,3.7,4,5,3.7,4.2,3.9,5.1,4.4,4.2,4.4,3.6,4.9,3.7,3.6,4.1]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[19.9,21,21.9,20.2,20.1,20.8,20.1,21.2,20.6,20,20.6,19.2,21,20.2,21.1],"script":[5,5.9,6.5,5.2,5.3,5.9,5.2,5.8,5.4,5.8,5.7,4.5,6.4,5.8,5.9],"paint":[13.3,12.7,14,13.8,13.2,12.9,13.5,13.7,13.2,12.6,13.1,13.6,12.7,12.9,12.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.1,14.5,14.5,14.4,15.2,14.5,14.1,14.2,14.4,14.4,14.4,14.7,14.5,14.6,14.5],"script":[3.1,3.1,3,3.2,3,3.4,3.1,3.1,3.1,3.3,3.2,3.2,3.3,3.2,3.2],"paint":[10.4,10.6,10.8,10.3,10.8,10.1,10.3,10.3,10.7,10.5,10.4,10.6,10.3,10.7,10.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[287.1,283.2,281.4,282.8,282.3,284.1,285.4,285.9,285.4,285.6,283.4,290.9,289.1,282.7,290.8],"script":[52.2,52.5,51.7,51.8,52.7,52.5,51.4,52.1,51.7,52.5,51.8,52.3,54,51.5,51.5],"paint":[227.2,223.1,222,223.4,222,223.8,226.4,226.3,226.1,225.5,223.9,230.7,227.4,223.5,231.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,37.1,35.7,36.5,36.4,36.4,36.3,37.4,36.4,36.7,36.3,36.4,37.1,36.5,36.2],"script":[8.5,8.3,8.1,8.3,8.3,8.2,8.1,8.8,8.4,8.6,8.3,8.3,8.3,8.1,8],"paint":[27.1,27.8,26.7,27.2,27.2,27.2,27.2,27.5,27.1,27.1,27.1,27.1,27.8,27.4,27.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,15,15.2,15.2,14.7,14.2,15.4,15.8,14.3,14.4,17.8,14.8,15,14.8,14.8],"script":[12.2,13.2,13.4,13.6,13.2,12.3,13.3,13.8,12.5,12.2,15.7,12.9,12.7,13,12.9],"paint":[1.4,0.9,0.8,0.2,0.2,0.9,0.9,0.8,1,1.5,0.5,1.2,0.9,1.6,0.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5696544647216797]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3488950729370117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3947219848632812]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350568771362305]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.2009334564209]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[34.7,34,32.8,33.4,33.4,35.5,34.6,33.1,35,33.5,33.7,36.1,33,33.5,34.3],"script":[6.1,6.2,6.3,6.1,6.1,6,6,6.6,6.7,6.1,6.8,6.5,6,6.1,6.4],"paint":[21.1,21.5,21.7,21.5,21,21,21.5,21.2,21.2,21.7,21.1,21.3,21.2,21.4,21.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[34.7,32.1,32,34.9,31.5,33.7,32.1,33,34.9,31.3,33,34.5,35.4,31.9,33.6],"script":[9.6,8.9,9.3,9.1,8.9,9.1,8.9,9.5,9.3,9,9.4,8.6,9.3,9.1,9.3],"paint":[22,22.8,22.4,22.6,22.2,22.5,22.8,22.5,22.2,21.9,22.6,22.6,22.2,22.4,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.2,21.7,38.6,38.8,21.1,37.1,37.9,39,39.1,21,21.6,21.5,36.8,37.6,35.9],"script":[10.6,10.5,11.1,11.3,9.7,10.1,10.1,11,10.9,10.2,8.7,9.3,9.9,10.4,8.3],"paint":[11.3,10,10.7,9.7,9.2,10.1,10.7,10.8,12.7,9.8,9.7,10.3,11.4,9.6,11.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[10.8,11.7,11.8,10.5,11,11.1,10.8,10,10.9,10.1,10.8,11,11.1,11.6,15.1,10.7,15.3,11.6,10.4,12.5,11.8,10.7,12.7,10.9,10.2],"script":[7.9,8.4,7.1,7.4,8.3,7,7.4,6.9,7.8,7.6,7.7,8.1,8.1,7.8,7.6,7.9,7.4,7.6,7,6.9,7.5,7.7,7.3,7.9,7.3],"paint":[2.6,2.5,2,1.9,2.4,2.3,2.3,1.9,1.5,1.5,1.1,1.1,1.6,1.3,1.8,0.8,1.7,0.8,1.7,1.9,1.1,1.1,2.5,1.5,1.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[39.2,23.1,38.4,37,38.1,39.5,38.6,23.4,21.9,21.4,37.4,38,38.1,38,21.1],"script":[8.4,7.7,7.9,7.3,7.4,8.4,9.4,9.4,7.4,7.7,8.3,7.8,8,8.2,7.8],"paint":[13.2,12.3,14.2,13.3,13.7,14.1,14.4,13.3,11.6,11.8,12.6,13.3,13.9,13.2,11.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,17.4,13,13.2,16.7,13.4,14.3,13.3,13.6,13.9,16.1,13.4,13.6,16.2,16.7],"script":[3.7,3.9,3.9,3.8,3.8,3.9,4,3.9,4.1,3.9,3.8,3.7,3.7,3.8,3.8],"paint":[9,9.6,8.7,9.3,9.4,9,8.8,9.3,9.1,9.6,9.4,9.5,9.1,9.1,9.4]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[293,293.6,288.8,294.9,291.3,293.1,290.6,288.8,292.9,286.3,295.5,293.7,294.7,291.7,291.8],"script":[68.9,69.4,68.2,69.1,68.1,68.3,71.6,70.7,69.8,68.6,69.1,68.8,68.8,69.9,69.7],"paint":[215.9,215.2,214.3,216.3,214.1,213.7,215.7,214.8,216.6,214.4,216.2,216.7,217.1,214,214.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,39,39.5,40.4,39,39.3,34.4,39,40.5,40.9,39.8,39.6,38.7,38.7,34.8],"script":[8,8.1,8.6,8.1,8.6,8.4,8.2,8.1,8.6,8.1,8.5,8.2,8.1,8,8.6],"paint":[25.8,25.4,25.3,26.7,25,25.4,25.7,25.3,25.2,25.5,25.7,25.9,25,25.3,25.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,28.8,11.2,12.5,13.2,29.3,28.8,11.9,27.6,30.1,28.1,13.3,12.1,13.4,11.7],"script":[9.4,11,9.8,11.4,11.5,11.6,11,10,10.3,12.2,10.5,11.2,9.1,9.5,9.4],"paint":[1.5,1.6,0.7,0.3,0.6,0.3,0.9,1.3,0.7,1.8,0.6,1.9,1.4,1.7,1.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6427574157714844]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9780378341674805]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.41512393951416]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8950672149658203]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1475133895874]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,26.8,25.8,26.9,26.6,25.8,26.1,25.8,26,26.1,25.8,25.9,26.3,25.9,26],"script":[4.5,5.3,4.6,5.4,5.3,4.5,4.5,4.5,4.6,4.7,4.5,4.6,4.8,4.5,4.6],"paint":[21.1,21,20.9,21,20.8,20.9,21.3,20.9,21,21,20.9,21,21.1,21,21.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,30,30.4,29.3,30.4,30,30.3,30.3,30.2,29.9,29.7,30.7,29.8,30.1,31.6],"script":[7.1,7,7.5,7,7.5,7.5,7.1,7.3,7.5,7.2,7.1,7.8,7,7.2,8.1],"paint":[22,22.4,22.4,21.7,22.4,22,22.6,22.4,22.2,22.2,22.1,22.3,22.2,22.4,23]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11.6,11.2,12.9,11.1,11.4,11.8,10.8,11.5,11.9,11,10.6,12.4,12.1,10.4],"script":[1.2,1.4,1.2,1.6,1.5,1.2,1.9,1.2,1.3,1.7,1.4,1,1.5,1.1,1],"paint":[8.7,8.6,9,10.2,8.5,9.1,8.7,8.4,9.3,9.2,8.6,7.9,9,9.3,8.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.5,3.1,2.5,2.5,3,2.5,2.4,2.7,2.3,2.8,2.7,3.3,2.4,2.4,2.2,2.3,2.8,3.3,2.4,2.4,3,2.5,2.8,2.7],"script":[0.6,1,1.1,0.5,0.1,0.9,0.1,0.8,0.9,0.1,0.8,0.8,0.9,0.5,0.2,0.6,0.5,0.5,1.2,0.9,0.8,1.1,0.6,0.8,0.1],"paint":[1.5,1.1,1.9,1,1.4,2,1.6,1.1,1.7,1.2,1.2,1.8,2.1,1.1,0.6,1.4,1,1.8,1.7,1.1,1.1,1.2,1.6,1.9,1.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,13.8,13.7,13.8,14.2,14.3,14.5,14.7,14.3,14,13.7,14.7,14.1,14.2,14.4],"script":[1.9,1.7,1,1.6,1.9,1.7,1,1.3,1.2,1.1,1.5,1.7,1,1.3,1.5],"paint":[12.2,10.3,11.9,10.9,11.6,10.5,12.8,12.1,12.1,11.8,11.2,12.1,12,12,11.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.7,10.6,10.8,10.5,10.8,10.6,11.4,10.9,10.8,10.3,10.4,10.5,11],"script":[0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.3,0.8,0.4,0.5,0.5,0.6,0.4,0.5],"paint":[9.7,9.5,9.5,9.4,9.5,9.5,9.6,9.4,9.9,9.5,9.7,9.2,9.2,9.6,10]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[275.4,274,273.3,275.6,274.8,273.8,274.2,274.1,274.3,279.7,273.5,273.7,278.1,272.1,273.1],"script":[53.4,53.6,53.5,54.5,54.1,53.4,54.1,54.2,54,58.5,54.2,53.9,57,52.5,54.2],"paint":[214.8,213.7,213,214.2,213.8,213.6,213.2,213,213.5,214.4,212.4,212.2,214.2,212.6,211.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.9,31.4,31.5,30.8,30.8,32,32.5,31.7,32.3,31.6,31.5,31.6,32],"script":[5.2,5.2,5.4,4.7,5.3,4.8,4.8,5.4,5.1,5.3,5.3,5.3,5.1,4.8,5.3],"paint":[25.4,25.7,25.6,25.9,25.2,25.3,25.2,25.7,26.4,25.5,26,25.3,25.5,26,25.7]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.8,10.4,10.8,10.8,10.4,10.7,11.4,10.9,11.3,11.4,10.6,10.6,9.7,10.8],"script":[8.9,8.9,8.7,8.8,8.7,8.3,9,10,9.5,8.9,8.8,8,8.2,7.9,8.5],"paint":[1,0.3,1,1.8,1.5,1.2,0.2,1.2,0.2,1.1,1.2,1.2,0.3,1.1,1.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716001510620117]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9543943405151367]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.990999221801758]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1730737686157227]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.811062812805176]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.9,27.7,28,28.6,28.2,27.8,28.2,30.1,27.8,27.9,27.8,27.7,28.2,28],"script":[5.7,5.9,5.7,6,6.5,6,5.8,5.8,5.9,5.8,5.9,5.7,5.9,5.9,5.9],"paint":[22.2,21.6,21.6,21.6,21.7,21.9,21.6,22,23.6,21.6,21.6,21.6,21.4,21.9,21.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,32.5,32.5,33,33,32.8,32.9,32.8,33,32.9,32.1,32.4,32.8,32.5],"script":[8.7,8.8,8.9,8.8,9.2,9.2,8.9,9.3,8.9,9.5,9.1,8.7,8.9,8.9,8.9],"paint":[23.5,23.3,23.1,23.3,23.3,23.3,23.4,23.1,23.4,23.1,23.3,23,23,23.5,23.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,13.4,13.1,13.8,13.5,13.1,14.5,13.9,13.6,14.5,12.8,13.9,13.3,13.4,13.6],"script":[3.4,2.6,2.9,2.8,2.7,2.3,2.6,2.9,3,3.3,2.7,3.5,2.4,3.1,3],"paint":[10,9.7,9.1,10,9.6,8.4,9.9,9.6,9.4,10,9.1,8.9,9.5,9.1,9.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[7.1,7.1,7.7,6.5,6.4,6.5,6.4,7.7,6.6,6.6,7.1,7,6.6,7,7.8,7.8,7,7.5,6.8,7.1,8.7,7,6.1,6.9,6.4],"script":[4.5,4.6,5.8,4.5,4.5,3.9,4.5,5.1,3.6,4.5,4.3,5,4.8,4.9,5.2,5.5,4,4.8,5.1,4.3,6,4.9,4.4,4.8,4.4],"paint":[1.6,2.2,1.1,1.3,1,1.5,1.8,2.5,2.1,2,1.9,1.1,1,2,1.5,2.1,1.9,2.1,1.6,2.1,2.5,2,1.6,1.7,1.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.1,18.5,18.7,18.6,18.7,19,18.3,18.7,18.6,19.4,19.5,18.7,17.9,18],"script":[5,5.4,4.8,4.6,4.8,4.8,4.9,5.1,5.1,5,5.2,5.4,5.1,5,5.2],"paint":[12.3,11.8,12.5,13.2,12.7,12.6,12.6,11.7,12.1,12.7,13.2,13.1,11.5,11.2,11.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.8,13,13,13,13.1,13.2,12.7,12.8,13.2,12.9,12.7,13.3,12.7,12.8],"script":[2.4,2.4,2.5,2.5,2.5,2.7,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.4,2.5],"paint":[9.4,9.9,9.6,10,9.9,9.7,10.2,9,9.1,9.9,9.5,9.3,10.4,9.4,10.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[362.1,362.5,362.4,365.3,365,367.7,361.5,364.3,366.2,363.7,366.9,365.1,366.7,362.9,362.1],"script":[138.1,139.7,137.6,140.2,140.3,141.9,136.7,140,141.4,138.9,140.9,140.4,142.4,137.8,137.9],"paint":[216.2,215.3,217.1,217.3,217,218.3,216.5,216.7,217.1,216.9,217.9,217,216.6,217.1,216.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.1,48.1,48.1,48.7,48.5,47.8,47.8,47.9,48.4,48,47.3,47.9,47.4,48.4,48.1],"script":[19.2,18.9,19,19.2,19,18.8,19,18.6,18.8,19.2,18.3,18.9,18.8,19.2,19.1],"paint":[28,28.3,28.2,28.6,28.7,28.1,28,28.5,28.5,28,28.1,28.1,27.8,28.3,28.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,21.7,18.8,19.7,19.8,19.5,19.1,19.8,20.9,19.4,20.9,18.3,19.4,19.3,19],"script":[17.8,20.3,17,18.2,18.1,18.2,17.6,18.2,19.2,17.8,19.5,16.8,17.7,17.3,18],"paint":[1.5,0.8,1.6,1.4,1.6,0.7,0.3,0.7,0.9,1.5,1.3,1.4,1.7,1.9,0.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.845004081726074]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.797246932983398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.787343978881836]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314798355102539]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.49604606628418]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.1]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.3,28.6,28.9,27.6,28.9,28.1,29,28.1,28.1,28.2,28.7,28.7,28.6,27.6],"script":[6.6,7,7,7.1,6.2,7,6.5,6.5,6.9,6.6,6.7,7,6.9,7,6.1],"paint":[21.3,20.8,21.1,21.3,20.9,21.4,21,21.9,20.7,21,20.9,21.2,21.2,21.1,20.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33.6,33.9,33.9,33.8,33.8,33.8,33.5,33.8,33.5,33.9,33.2,33.5,33.4,33.1,33.8],"script":[10.5,11.1,10.7,10.7,11,10.7,10.7,10.7,10.5,10.9,10.5,10.6,10.7,10.3,10.9],"paint":[22.5,22.2,22.6,22.5,22.3,22.6,22.3,22.6,22.5,22.4,22.1,22.3,22.2,22.2,22.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,14.1,13.3,13.2,14.2,13.5,12.6,13.6,13.2,13.1,13.6,13.2,15.4,14.2,13.1],"script":[2.8,3.3,2.5,3,3.8,3.1,3,2.8,2.4,3.1,3.4,2.3,3.3,3.3,3.4],"paint":[9,9.8,9.9,8.9,9.5,9.5,9,9.4,9.9,9.1,9,9.7,10.8,9.9,8.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.3,3.7,3.4,2.9,3.1,3.4,3.8,3.6,3.8,3.6,3.6,3.4,3.8,3.9,3.8,3.8,3.5,4.5,3.2,3.3,3.5,3.5,2.7,3.4],"script":[2,1.8,1.7,1.8,1.1,1.6,1.3,1.4,1.5,1.7,1.2,1,1.7,1.8,1.5,1.9,1.7,1.1,2.3,1.3,1,1.7,1.4,1.1,0.9],"paint":[1,1.6,1.8,1.1,1,1.3,1.7,2.3,2,1.1,2.3,2.5,1.5,1.7,2.3,1.8,0.7,2.2,2.1,1.1,1.8,1.2,1.3,0.7,2.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.4,16.7,17,16.9,15.9,16.6,16.7,16.2,17,16.8,16.2,16.6,16.4,16.2,16],"script":[3.1,3.2,2.7,3.4,2.8,2.5,3.3,3.7,2.7,2.5,2.5,2.6,2.5,2.5,2.3],"paint":[12,12.8,13.1,12.3,11.9,13.3,11.9,11,12.4,13.3,12.2,12.8,12.6,12.6,12.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12.1,11.9,11.7,11.9,11.6,11.5,12.1,11.7,12.1,12.1,12.9,12.1,12.1,11.7],"script":[1.7,1.6,1.5,1.6,1.6,1.4,1.6,1.7,1.6,1.7,1.7,1.5,1.5,1.5,1.4],"paint":[9.9,10,9.8,9.7,9.4,9.1,8.7,9.6,9.6,9.7,9.7,10.8,9.8,9.6,9.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.5,286.1,286.5,285.5,284.6,285.6,283.5,285.1,284.4,283.1,288.3,286.2,283.9,291.6,286.9],"script":[65.9,64.5,64.5,64.3,63.1,64.6,61.9,63.7,63.4,61.5,68.5,65.3,63.7,65.2,66.1],"paint":[214.6,214.7,214.9,214.3,214.3,214,214.5,214.4,213.7,214.6,212.7,213.8,213.2,217.6,213.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,35.2,35.1,34.7,34.5,34.5,34.4,35.2,34.5,35.1,35.4,34.8,34.6],"script":[7.5,7.1,7.8,7.9,7.8,8,7.6,7.5,7.6,8.1,7.7,7.7,8,7.7,7.6],"paint":[26,25.9,26.5,26.4,26.3,25.7,25.9,26.1,25.9,26.1,25.8,26.4,26.4,26.1,26]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,13.3,13.4,13.3,13,13,14,13.5,13.5,13.6,13.2,12.4,11.2,12.9,13.1],"script":[11.7,11.3,11.3,10.7,11.1,11.2,12.1,11.6,11.3,11.6,11.8,10.5,9.6,10.8,11.2],"paint":[0.8,1,0.6,1.1,1,0.4,1.7,0.8,1.9,0.4,1.1,1,1.4,1.9,0.7]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5517683029174805]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.006746292114258]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.02640438079834]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.761540412902832]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.84206199645996]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[36,36.9,36,37.5,37.1,36.9,37,38.1,34.3,29.6,37.2,37.5,38,34.4,37.8],"script":[5.4,5.5,6,6,5.7,5.6,5.9,6.1,5.9,6.1,5.8,5.7,6,5.8,6],"paint":[21.8,22,22.2,22.3,22.4,22,22.2,22.5,22.8,23.1,22.6,22.4,22.5,22.9,22.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[33.4,33.2,33.7,32,33.3,33.7,31.8,33.5,33.6,31.7,33,33.4,31.3,34.2,32.6],"script":[8,7.7,8.5,8.1,8,8.5,8.1,8.3,8.5,8.2,8.2,8.2,8.3,8.3,8.1],"paint":[23.4,23.1,23.3,22.6,22.9,23.5,22.6,22.9,23.2,23.1,23,22.9,22.6,23.4,22.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.8,10.7,11,11.1,11.5,11.5,11.5,11.2,11.2,10.8,11.2,10.9,10,11.1],"script":[0.1,0.9,0.4,0.5,0.1,0.1,0.5,0.8,0.6,0.1,0.9,0.1,0.7,0.1,0.7],"paint":[10.6,10.1,8.9,9,10,10.3,9.6,9.2,9.1,9.9,8.6,9.9,9.4,9.1,8.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.4,2,2.6,2.4,2.4,2.7,2.5,2.2,2.4,2.6,2.4,1.7,2.1,2.4,2.5,1.7,2.5,2.6,2.3,2.8,2.1,2.6,2.4,2.4,1.8],"script":[0.5,0,0,0,0,0,0,0,0.5,0.3,0,0,0,0,0,0,0,0.7,0,0,0,0.5,0,0,0.2],"paint":[1.3,1.8,1.7,1.5,1.5,1.6,2.3,1,1.4,2.2,1.9,1.6,1.1,1.6,2,1.6,2.3,1.8,1.3,1.6,1.2,1.6,1.9,2.2,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[14.6,13.5,13.9,13.5,14.6,12.9,13.4,13.1,14,13.1,13.6,13.9,13.2,14.2,13.7],"script":[0.9,0.8,0.8,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1.1,0.9],"paint":[12.8,11.7,12.5,12.1,13.1,11.8,12.3,12.2,12.7,11.9,12.5,12.7,12.1,12.2,11.6]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.5,10.6,10.3,10.4,10,10.3,10.3,10.5,10.3,10.3,10.6,10.2,10.7],"script":[0.1,0.1,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.4,0.2,0.3,0.3],"paint":[9.1,9.6,9.7,9.8,9.6,9.8,9.5,9.6,9.6,9.7,9.6,9.3,9.8,9.1,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[294.7,297.8,294.7,287.5,289.8,295.3,289.4,286.3,289.6,294.4,287.9,289.9,295.3,289.1,708.4],"script":[60.7,61.1,61.1,61.4,62.2,62.5,62.1,61.9,62.2,61.7,62.6,64.4,61.1,64.6,61],"paint":[230.3,232.7,229.9,220.4,221.2,229.2,221.4,218.9,221,229,219.2,221.8,230.4,220.7,234]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.4,50.1,51.1,49.9,50.1,50.8,32.7,41.1,50.5,49.8,50.5,51.4,49.9,49.7,49.3],"script":[5.9,5.6,5.8,5.8,6.1,6.1,6.2,6.2,6.1,5.9,5.8,6,6.1,5.8,5.9],"paint":[25.6,25.2,26,25.5,25.4,25.8,25.9,26.2,25.5,25.4,25.6,26,25.6,25.2,24.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.6,11.8,10.8,11.3,11.4,10.4,10.7,9.2,11.1,12.5,10.6,10.7,10.1,10.6],"script":[8.7,9.1,9.7,8.3,9.6,9.7,8.6,8.3,7.8,9.3,10.7,8.8,8.7,8.3,8.3],"paint":[1.2,0.7,1.1,1.4,1.1,0.6,1.6,2.2,0.3,0.9,1.1,0.2,1,0.9,1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6950721740722656]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5557785034179688]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5425310134887695]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9374370574951172]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.60407066345215]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.1]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[34.7,30.2,26.4,34.9,32.4,33.3,27.6,33.8,34.4,34.9,33.6,33.6,34.5,34.7,27.3],"script":[23,23.7,22.9,23.3,23.8,23.7,23.8,23.5,23.8,23.7,23.9,23.2,23.6,23.7,23.5],"paint":[20.1,20.7,20.4,20.2,20.7,20.6,20.9,20.4,20.5,20.6,20.7,20.3,20.8,20.6,20.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[43,33.4,33,32.3,32.5,34.2,32.7,33.7,38.2,33.7,33.1,32.7,32.9,32.5,34.9],"script":[28,29.2,28.9,28.4,28.5,28.5,28.6,28.8,28.5,28.9,28.5,28.6,28.9,28.5,28.9],"paint":[21.7,21.9,22,21.5,21.6,21.7,21.8,21.5,21.9,21.9,21.7,21.8,22.2,21.7,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.6,55.5,57.4,58.5,57.1,41.4,41.2,41.3,40.9,41.7,39.5,39.5,39.5,41.6,40.2],"script":[34.2,34.1,34.3,34.1,34.5,32.8,34.6,33.1,33.6,33.5,31.8,32.8,32.1,33.7,32.6],"paint":[12.3,12.3,12.4,14.7,12.5,12.1,12.2,12.2,11.8,11.9,12.4,12,10.8,13.8,12.2]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[32.2,32,32.1,33,32.2,30.9,31,31.6,32.1,33,33.7,31.2,31.9,29.2,31,32.1,30.6,32,31.4,30.3,31.4,31.5,31.1,29.6,30.8],"script":[26.8,26.7,25.7,26.9,25.8,24.9,24.4,26.3,25.8,27.3,25.1,25.5,25.6,23.3,24.7,26.9,24.6,25.7,25.7,24.2,25.6,25.7,24.9,24.1,25.5],"paint":[3.5,1.9,3.2,3.5,3.4,4.7,4.5,3.3,4.5,3.5,2.8,4.5,3.9,3,3.5,2.6,4.1,4,3.8,2.6,3,3.9,2,3.5,2.5]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[144.8,145.9,143.5,129.9,129.3,128.7,146.5,145.3,130.1,144.8,131.1,127.2,144.4,145.6,149],"script":[112.8,112.2,111.1,112.8,111.7,111.4,113.8,111.9,110.7,111.4,113.4,109.8,111.7,111.9,112.7],"paint":[83.8,82.8,82.9,83.2,83.6,83.3,85.8,82.4,83,81,84.5,82.9,85,83.5,84.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[66.6,64.7,67.6,64.4,71.3,67.3,65,64.7,64.9,65.2,66.3,69.7,66.1,69.7,64.9],"script":[20.9,20.8,21.2,20.2,21.4,21.2,20.7,20.4,20.6,20.5,20.2,21.2,21.3,20.9,20.4],"paint":[43.4,42.3,42.5,42,43.6,41.9,42.7,42.4,42.5,42.8,44.3,42.7,42.9,42.4,42.3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[287.4,290.8,289.5,291.5,290.8,289.3,293.1,292.8,290.3,292.2,289.6,287.7,285.4,292.7,292.3],"script":[240.7,239.6,238.2,238.5,239.9,238.8,240.2,239.7,239.9,240.2,238.4,240.6,238.7,239.8,240.6],"paint":[224.2,222.6,222.3,221,221.8,221.9,223.1,225.5,222.4,222.8,221.4,222.5,220.9,222.2,223.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.3,42.9,42.8,42.2,43.3,41.6,42,38.3,42.8,43,43.4,42.4,42.4,42.9,43],"script":[32.6,31.9,31.4,31.9,32.4,31.3,31.7,32.3,32.2,31.9,32.2,32,32,32.2,31.9],"paint":[26.4,25.8,25.4,25.7,25.9,25.1,25.5,25.7,26.1,25.8,26,25.8,25.5,25.6,25.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,22.7,24.6,21.8,22.1,44.2,21.9,23.1,46.2,22.6,23,22,22.8,41.4,22.4],"script":[17.9,18.6,21.2,18.1,18.4,19.7,17.7,18.9,19.8,19.3,20.2,17.7,18.2,18.6,18.7],"paint":[1.8,3.7,1.6,2.5,2,2.5,2.5,2.4,2.2,3.5,1.3,3.9,3.6,3.5,2.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3768415451049805]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9089555740356445]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.006411552429199]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.664393424987793]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.281550407409668]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[28,25.9,32.1,32.8,26.4,25.8,26,32.7,26.1,32,25.9,30.7,26,25.9,26.3],"script":[4.2,4.3,4.3,4.3,4.5,4.4,4.4,4.3,4.3,4.3,4.4,4.3,4.3,4.4,4.7],"paint":[20.8,21.4,21.6,21.1,21.7,21.3,21.2,21,21.5,21.2,21.3,21.3,21.5,21.4,21.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[34.3,32.4,32.7,33.1,33.7,33.2,29.4,34.7,34.1,33.6,33.7,32.8,34.1,33.5,33.8],"script":[8,7.6,7.5,7.5,7.4,7.4,7.5,7.2,7.6,7.5,7.5,7.5,7.4,7.3,7.7],"paint":[22.3,21.7,21.9,21.9,21.9,21.8,21.5,22,22,22.4,22.4,21.9,21.9,21.9,22.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.3,16.4,18,19.4,18.3,17.9,17.2,17.6,17.3,17.6,18.5,17.9,17.4,16.5],"script":[6.2,7,6.8,7.3,6.6,7.6,7,7.1,7.8,6.4,7,7.6,7.2,6.9,6.2],"paint":[9.6,10,8.8,8.9,11.6,10.4,10,8.8,8.4,7.7,9.3,10.1,8.5,8.6,9.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8.2,8.5,7.9,7.7,7.7,7.6,7.6,7.9,7.9,8,7.4,7.8,7.4,7.4,7.7,8.3,7.8,7.9,7.4,7.1,7.9,7.7,7.8,8.5,7.3],"script":[5.7,5.5,5.4,5.7,4.5,4.7,5.7,4.9,5.5,5.1,5.4,5.4,5.2,5.4,5.4,5.8,4.9,5.2,4.6,5.6,5.2,5.6,5,5.2,5.7],"paint":[2.3,1.6,1.5,1.6,2.2,1.5,1.1,1.8,2,2.2,1.9,2.1,2,1.5,1.4,2.3,2.3,1.3,0.8,1.4,2.6,1.9,2.6,2.1,1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[34.2,17.6,17.9,33.1,17.9,18.4,17.8,17.2,17.8,17.7,17.9,17.7,17.7,18,32.9],"script":[4.9,6.3,5,4.4,5.1,5.7,5.4,5.4,5.6,4.7,5.4,5.6,5.5,5.9,4.9],"paint":[13.3,11.2,11.4,12.7,12.3,11.6,12.2,10.3,11.4,12.6,12,12,11.3,11.8,11.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,13.5,14.1,14.4,14,14.1,14.2,14.1,14.3,13.9,13.9,14,14.6,13.7,13.4],"script":[4.8,4.7,4.6,4.8,4.9,4.9,4.8,4.9,4.7,4.7,4.8,4.7,5,4.5,4.7],"paint":[8.9,8.6,9.1,9.3,8.7,8.7,9.2,8.5,9.4,8.7,8.6,8.8,9.1,9,8.3]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[277,274.5,274.4,274,275.7,275.6,276.2,275.5,272.6,275.9,274.1,276.3,277,274.7,273.6],"script":[47.8,47.1,47.4,46.3,47.7,47.8,47,47.5,47.4,47.5,46.9,47.5,47.5,47.1,47],"paint":[225.6,223.8,223.6,224.2,224.7,224.4,225.8,224.7,221.9,224.9,223.8,225.4,226.1,224.2,223.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.5,33.9,33.4,38.6,34.6,33.5,38.7,38.7,39.3,33.3,33.6,33.8,33.7,33.7,33.1],"script":[7.3,7.5,7.6,7.4,7.6,7.5,7.4,7.4,7.8,7.6,7.4,7.6,7.1,7.5,7.4],"paint":[25.5,26,25.4,25.5,26.4,25.6,25.3,25.4,25.4,25.4,25.7,25.8,26.2,25.9,25.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.6,10.8,11.3,11.8,11.1,10.5,11.9,10.7,13.7,11.1,11.5,11.2,10.3,11],"script":[9.4,8.5,9.4,8.8,9.2,8.5,8.3,9,9.3,11.9,9.1,9.7,8.7,8.5,8.8],"paint":[1.7,2.1,0.7,1.2,1.7,1.6,2,2.6,0.3,0.6,1.1,1.6,1.3,0.4,1.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8808250427246094]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.412508964538574]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.379556655883789]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3287086486816406]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.82754898071289]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.4,26.9,26.6,26.1,26.4,26.2,26.3,26.4,26.4,26.2,26.6,26.5,26.6,26.5],"script":[4.5,4.6,4.6,4.6,4.4,4.2,4.2,4.3,4.5,4.6,4.6,4.6,4.5,4.4,4.3],"paint":[21.6,21.4,21.9,21.6,21.4,21.7,21.6,21.6,21.5,21.4,21.3,21.6,21.6,21.7,21.8]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,30.1,29.6,29.3,29.2,29.5,29,29.1,29.5,29.6,29.1,29.5,30,29.7,29.7],"script":[6.4,6.7,6.6,6.4,6.4,6.5,6.2,6.2,6.4,6.5,6.4,6.5,7,6.5,6.5],"paint":[22.9,22.8,22.5,22.4,22.2,22.4,22.2,22.4,22.5,22.5,22.1,22.4,22.4,22.6,22.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,12.2,12.3,11.9,12.6,12.3,12.2,11.8,12,11.5,14.2,11.8,13.4],"script":[1.2,0.6,0.2,1.1,1,0.9,0.2,0.2,1,0.2,0.8,0.5,1.3,0.2,1.1],"paint":[10.5,10.1,11.2,9.6,10.1,10,11,11,9.1,10.7,9.3,10,11.4,9.6,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,3.5,3.2,2.8,2.4,2.8,2.5,2.7,3.2,2.6,2.6,2.4,2.7,3.4,2.6,2.3,2.5,3,3.1,2.6,2,2.4,2.9,2.8],"script":[0.7,0.8,0.9,0.9,0.6,0.9,0.5,0.1,0.8,0.8,0.5,0.1,0.5,0.9,1.2,0.1,0.1,0.5,0.7,1.1,0.4,0.1,0.4,0.7,0.5],"paint":[1.6,1.1,2.4,1.8,1.8,1.4,2.2,2.3,1.8,1.5,2,2.3,1.1,1.7,1.6,0.5,2,1.1,1.8,1.9,2.1,0.9,1.8,2,1.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.2,13.8,13.5,13.7,13.4,14,13.9,13.7,14.9,13.2,13.4,14.2,13.9],"script":[1,0.6,0.2,0.8,0.9,1.1,0.8,0.9,1.5,0.9,1.4,0.9,1.4,0.6,1],"paint":[12.2,12.6,11.1,11.4,11.4,11.3,11.5,12.1,10.5,11.9,11.5,10.9,11,11.8,12]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.7,10.4,10.4,10.7,10.5,10.4,10.3,10,10.8,10.4,10.2,10.3,10.6,10.2],"script":[0.4,0.3,0.1,0.3,0.3,0.3,0.3,0.4,0.2,0.4,0.3,0.1,0.1,0.3,0.2],"paint":[9.6,9.7,9.8,9.2,9.7,9.7,9.7,9.2,9.4,9.7,9.6,9.5,9.3,9.5,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[276.5,276.2,278.1,278,276.4,279.7,278.1,278.7,276.9,277.2,280,281,278.6,278.7,276.4],"script":[47.2,46.8,47.1,47.7,46.5,47.4,47.4,47.5,46.9,47.2,47.1,46.7,46.4,46.5,47],"paint":[221.9,222.2,223.8,223,222.6,225.2,223.5,224.2,222.6,222.8,225.8,227.3,224.8,224.9,222.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.9,31.8,31.8,31.7,31.6,31.1,32.2,31.3,32,31.8,31.7,31.1,31.1,32],"script":[4.3,4.7,4.7,4.7,4.7,4.7,4.3,4.4,4.6,4.7,4.8,4.7,4.6,4.3,4.8],"paint":[26.1,26.4,26.3,26.3,26.3,26.2,26,27.1,25.9,26.6,26.3,26.3,25.7,26,26.4]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.2,10.4,10.4,11.1,10.3,10.2,10.8,10.1,10.2,11.4,10.1,11.2,11.2,11.3],"script":[9.2,8.8,8.6,8.5,8.7,8,8.5,8.6,8.3,8.4,9.4,8.6,8.9,8.8,9.1],"paint":[0.3,1.2,1.1,1.7,0.8,0.7,0.3,0.9,1,0.9,0.9,0.6,1.3,1.4,1.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6093864440917969]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1005859375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1675643920898438]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8215188980102539]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.911052703857422]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25,24.3,24.7,24.8,24.4,24.5,24.7,24.5,24.5,24.7,24.4,24.6,24.6,25,24.9],"script":[2.8,2.7,2.7,3.1,2.7,2.7,2.6,2.7,2.7,3,2.7,2.7,2.7,2.9,3],"paint":[21.8,21.3,21.6,21.3,21.3,21.5,21.7,21.5,21.5,21.4,21.4,21.5,21.5,21.6,21.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.6,28.9,28.6,28,29,28.2,28.1,28.6,28.4,28.9,28.1,28.4,28.1,28.2],"script":[5.9,5.8,6,5.7,5.6,6,5.6,5.6,5.8,5.8,6.1,5.7,5.8,5.7,5.6],"paint":[22.2,22.2,22.3,22.2,21.8,22.4,22,21.9,22.2,22.1,22.3,21.8,22,21.8,22]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.2,11.6,11.3,11.2,11.3,10.6,11.1,11.1,11.3,11.7,12.6,12.3,11.5],"script":[1,0.2,1.4,1.4,1.4,0.2,0.6,0.2,0.6,1.1,1,1.4,1.7,1.9,1],"paint":[8.8,9.9,8.7,8.8,8.6,9.8,9.7,9.3,9.3,9.4,9.3,9.3,9.5,9.2,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.1,2.1,2,1.4,2.3,1.5,2.8,2.5,2.8,3.4,1.7,2.1,2.7,1.8,2,2.4,2.4,2,2.3,2.4,2.1,1.9,2,2.7],"script":[0.6,0,0,0,0,0,0,0,0,0.7,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8],"paint":[1.9,1.9,1.3,1.8,0.7,1.5,0.8,2,2,2,2.3,0.7,1.3,2.3,1.7,1.1,1.3,2.3,1.8,2.1,1.9,1.3,1.3,1.3,1.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.4,13.7,13.7,12.6,13.4,13.2,13.1,13.9,13.1,13.3,13.6,13.2,13.7,13.7],"script":[0.7,0.9,0.9,0.6,0.8,0.6,1,1,1,1.2,0.5,0.2,0.9,1.1,0.8],"paint":[11.8,11.6,11.3,12.4,10.5,11.8,10.6,11.1,12,10.5,11.9,12.4,10.9,11.3,11.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.7,10.7,10.7,10.9,10.7,10.7,10.4,10.6,10.9,10.5,10.9,10.4,10.3],"script":[0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.5,0.5,0.6,0.6,0.5,0.4],"paint":[9.2,9.7,9.6,9.3,9.8,9.8,9.6,9.6,9.4,9.5,9.8,9.4,9.3,9.5,9.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[262.3,262.1,262.7,262.8,262.5,263.8,260.2,262.5,261.5,261.9,263.3,262.4,261.2,262,263.3],"script":[32.9,34,33.3,34.6,33.6,33.9,32.6,33.9,33.8,33.7,33.2,33.7,33.5,34.3,33.8],"paint":[222,220.9,222.2,221,221.9,222.5,220.6,221.3,220.7,221.1,222.7,221.4,220.4,220.3,222.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29.5,29.9,30,29.6,30.4,29.4,29.8,29.5,29.8,29.9,29.9,29.4,29.6,30],"script":[3,3,2.9,2.9,2.9,3,2.8,2.9,2.8,2.9,3,3,2.9,2.8,2.8],"paint":[25.8,25.7,26.2,26.2,26,26.7,25.8,26.1,25.9,26.2,26.1,26.1,25.8,25.9,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.7,9.7,10.7,9.3,10.5,10,11.1,12,10.7,12.1,9.1,10.5,10.8,11.3],"script":[8.5,7.9,7.6,8.8,8,8.2,7.7,9.4,9.3,9.1,9.6,7,8.6,8.3,9.3],"paint":[0.7,0.6,1.1,0.8,1.1,1.2,2,0.2,1.2,0.8,1.6,1.3,0.9,1.7,0.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6112041473388672]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.630006790161133]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6469058990478516]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8258380889892578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.059950828552246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.1,26.9,26.9,27.3,27,27.1,27.3,27.2,26.8,27.4,27.5,27.4,27.5,27.2],"script":[7.3,5.6,5.7,5.5,5.8,5.6,5.5,5.7,5.6,5.6,5.7,5.7,5.7,5.8,5.6],"paint":[21.3,20.9,20.7,20.8,21,20.9,21.1,21,21,20.7,21.1,21.2,21.1,21.1,21.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.5,33.2,33.1,33.3,33.1,32.7,32.8,32.9,33.3,33.1,32.8,32.6,33.1,33.4,33.1],"script":[10.1,10.3,10.3,10.1,10.1,10,10.1,10,10.3,10.4,10.1,10,10.3,10.4,10.2],"paint":[21.9,22.3,22.1,22.6,22.4,22.2,22.1,22.3,22.5,22.1,22.1,22.1,22.2,22.4,22.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.6,12.6,12.4,12.6,12.3,12.4,12.7,14.2,12.7,13.2,12.9,14.3,13.1,12.3],"script":[1.6,3,2.4,2.3,2.3,2.5,2.3,3.3,3,2.2,2.5,3.2,2.7,3,2.5],"paint":[10.7,9.4,9,8.4,9.4,8.2,9.1,8.5,9.8,9.1,9,8.4,10.9,9,8.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4,3.7,3.7,3.7,3.8,4.3,3.9,3.9,3.3,3.5,3.6,4.2,3.9,3.8,3.9,4.6,4.1,4.3,4.2,4.3,3.7,4.4,3.7,4,4.5],"script":[1,1.4,1.6,1.3,1.6,1.7,1.5,2,1.5,1.8,1.7,1.9,1.8,1.3,2,2.1,1.9,2,1.5,1.9,1.9,1.9,1.2,1.2,2],"paint":[2.7,1.3,1.5,2.3,2,2.4,1.8,1.8,1,1.6,1.3,2.1,2,1.4,1.1,2.3,2,2.2,1.5,2.2,1.3,2.4,2,1.5,2.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[15,16,14.7,15,14.3,17.5,17.2,16.8,16.6,14.9,14.6,14.9,14.9,14.6,14.4],"script":[1.6,1.1,1.4,2.4,1.6,2.2,1.4,1.6,1.8,2,1.8,1.6,1.5,1.2,1.8],"paint":[12,12.7,12.2,11.5,11.9,13.3,14.5,14,13.8,11.9,11,11.2,12,12.2,10.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,10.9,10.9,11,10.9,10.9,11,11,11.1,11.1,10.9,11,10.9,11,11],"script":[0.9,0.9,0.7,0.7,0.9,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7],"paint":[9.9,9.4,9.7,9.8,9.3,9.9,9.8,9.6,9.9,9.8,8.7,9.7,9.4,9.4,9.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[295.7,295.7,295.7,299.3,295.5,301,296.6,299.5,298.5,299.3,297.3,300.7,296.3,301,299],"script":[65.5,66.3,67.5,67.4,67.5,67.5,67.2,68.8,67.4,67.6,67.3,67.3,66.8,67.7,67.1],"paint":[222.9,221.9,220.9,224.5,220.6,225.8,221.7,223.5,223.7,224.6,222.6,225.7,222,226,224.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.2,34.5,34.6,33.5,33.7,33.6,33.9,33.8,33.5,34.2,34,34.5,34.4,34],"script":[6.9,6.7,7.5,6.6,6.7,6.9,6.6,7.2,6.8,6.8,7,7.3,7.6,7.9,7.3],"paint":[25.9,25.6,26,26.9,25.8,25.8,26.1,25.8,26.2,25.7,26.3,25.8,25.9,25.7,25.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.9,14.2,12.9,14.6,12.4,13.3,13.6,12.9,14.2,13.3,13.4,12.7,12.7,12.5],"script":[12.1,11.7,12.2,11.4,12.2,10.8,11.2,11.4,11.3,12.2,10.8,11.1,10.5,10.6,10.4],"paint":[0.7,1.3,1.7,0.7,2.1,0.3,1.5,0.8,1.3,1.8,1.6,1.6,1,1.2,1.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5529890060424805]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6205806732177734]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6707963943481445]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7532625198364258]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.285937309265137]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,28.6,29,28.4,28.9,28.3,28.7,28.7,28.6,28.2,28.9,28.9,29.3,28.7],"script":[6.4,6.5,6.4,7.1,6.5,6.9,6.4,6.4,6.6,6.4,6.4,6.9,7,7.1,6.8],"paint":[22,21.6,21.6,21.3,21.4,21.4,21.4,21.7,21.6,21.6,21.2,21.4,21.4,21.7,21.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.6,33.2,33.8,33.4,33,33.2,33.4,33.7,33.1,33.5,33.8,33,33.8,32.8],"script":[10.2,10.3,10.1,10.4,10.2,10.3,10.3,10.1,10.5,10.2,10.5,10.6,9.7,10.7,9.9],"paint":[22.4,22.7,22.5,22.8,22.6,22.2,22.3,22.7,22.6,22.4,22.4,22.6,22.8,22.6,22.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,23.6,23,22.4,21.6,21.3,21.4,21.7,21.6,20.6,21.4,21.4,21.5,23.1,22.2],"script":[9.2,9.9,10.3,10.1,9.8,9.8,9.8,9.5,9.1,8.9,9.3,9.9,9.3,10.8,10.5],"paint":[10.3,11.1,9.5,10,9.6,8.2,10.6,9.9,10.3,9.1,11,9.3,10.3,9.6,9.2]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,12.4,14.4,14.6,13.7,14.7,14.3,14.6,14.5,14.3,14.5,14.3,14.9,13.8,13.9,12.6,13.7,14.6,15.6,13.7,14,13.7,15.1,13.6,14.9],"script":[11.6,9.6,10.9,10.9,10.8,11.5,10.6,11,11.2,11.3,11,11.4,11.6,10.7,10.6,9.7,11.1,11.4,12.3,10.9,10.4,10.9,12.1,10.8,12.1],"paint":[1.4,1,2.4,3.4,0.8,1.7,1.2,2.5,2.1,1,2.3,0.8,2.1,2.2,2.8,1.1,1.2,1.3,1.9,2.1,2.1,1.3,1.1,1.4,0.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.6,26.1,25.6,25.1,26,27,25.6,25,25.8,24.9,26.5,25.5,26.4,24.9,25.1],"script":[11.5,11.2,11.4,10.2,11.4,12,11.9,10.7,11.2,10.9,11.8,10.7,11.9,11.2,10.4],"paint":[12,12.3,12.3,13.8,12.5,12.6,11.9,12.5,12.2,10.9,13.3,13.1,12.7,11.8,13.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.4,16.5,17.5,17.4,17,16.2,18,17,16.5,16.8,16.7,16.3,16.5,16.5,16.9],"script":[5.4,5.4,6.1,5.9,5.9,5.3,6.2,6,5.5,5.8,5.8,5.3,5.9,5.4,5.9],"paint":[10.5,10.2,10.3,10.5,10,9.7,10.7,10,10.1,9.7,9.7,10.1,9.4,9.9,9.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[299.8,296.9,300.5,297.4,299,296.2,299.3,296.4,299.1,297.8,297,299.2,300.1,302.8,300.5],"script":[71.8,70.3,70.7,70.7,69.8,70.2,70.5,69.8,70.7,70.6,70.7,68.9,71.7,69.7,70.6],"paint":[220.4,219.4,222.6,219.4,222,218.9,221.7,219.4,221.1,220,219.2,222.9,221.4,224.5,222.8]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,37.5,35.9,36.1,36.3,36.4,36.6,35.7,36,36.3,35.9,35.3,37.4,35.7],"script":[8.8,9.2,10.3,9,9.2,9.1,9.1,9.3,8.8,9.1,9.1,9.1,8.9,9.2,9.3],"paint":[25.5,25.7,26.1,25.9,26,26.2,26.3,26.4,25.9,25.8,26.3,25.8,25.5,27.2,25.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.8,12.4,11.6,12.4,12.2,12.2,12.8,11.4,12.1,12.7,12.3,11.5,12,14.7],"script":[9.7,10.1,9.9,9.7,10,9.5,9.8,10.4,9.1,9.8,10.6,10.2,10.1,9.6,11.4],"paint":[1.5,0.3,0.9,0.9,2.1,2.5,0.6,0.7,1.1,1.2,0.9,1.9,1.2,1.1,1.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6028232574462891]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3534278869628906]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3900232315063477]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7610569000244141]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.110946655273438]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[34.9,35,34.6,33.6,33.5,34,33.5,34.1,33.1,33.4,34.3,33.1,33.5,33.9,33.7],"script":[13.2,13.5,12.8,12,11.9,12.3,12.1,12.2,11.7,12.2,12.1,12.2,11.7,12,12],"paint":[21.1,21,21.2,21,21,21.1,20.9,21.3,20.8,20.7,21.5,20.3,21.3,21.3,21.2]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.8,39.3,39.4,39.6,39.9,38.8,40.3,40.8,39.7,39.3,40.6,40.1,39.9,39.3,39.4],"script":[17,16.4,16.4,16.5,16.3,16.1,16.8,17.4,16.4,16.3,16.9,16.8,16.9,16.1,16.4],"paint":[22.2,22.3,22.3,22.5,23,22.1,22.8,22.8,22.7,22.4,23,22.6,22.4,22.5,22.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.1,14.9,14.2,14.7,15.4,14.6,15.4,14.7,15.4,15.4,15.6,15.9,16.4],"script":[4.6,4.9,4.2,4.2,4,4.8,4.3,4.1,4.5,4.4,4.3,4.6,4.8,5.2,4.2],"paint":[8.9,9.7,9.6,9.8,9.1,9.3,10,8.9,9.4,9.1,10.1,9.8,9.5,8.1,10.9]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.3,3.5,3.2,3.3,3.1,3.4,2.8,3.2,3.7,2.5,3.4,2.6,3.3,3.6,3.1,3.5,2.8,2.9,3.2,3.1,3.4,3.1,3,3.1],"script":[0.7,1.5,0.9,1.3,1.1,1.6,1.1,0.7,0.9,1.1,0.2,1.1,0.2,1.6,1.2,0.9,1.3,1.1,0.9,1.4,1.2,1.2,0.9,0.9,1.1],"paint":[1.8,1.3,2.5,1.4,1.8,1.4,2.2,1.4,2.2,1.5,1.9,1.3,2.2,1.6,2.1,1.6,1.3,1.6,1.8,1.8,1.1,1.3,1.4,1,1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,15.4,15.4,15.6,14.9,15.8,15,15,16,15.1,15.2,15.6,14.9,15.1,15.7],"script":[2.8,2.1,2.6,2.8,2.4,3,2.4,2.6,3.1,1.7,2.2,2.4,1.9,2.3,2.4],"paint":[10.8,11.6,11.4,10.3,11.5,12,11.7,11.8,11.9,12.1,12,12.5,12.1,11.6,11.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.2,11.4,11.4,11.7,11.3,11.4,11.4,11.3,11.9,11.5,11.6,11.5,11.4],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2],"paint":[9.6,9.3,8.7,9.9,9.6,9.9,9.2,9.6,9.6,9.3,10.4,9.6,9.8,9.7,9.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[337.5,340,337,338.8,335.9,337.7,339.2,336,339,337.7,338.5,337.6,337.5,335.7,338.7],"script":[112.9,113.5,112,112.8,111.2,111.7,114.2,110.7,111.5,111.3,111.4,111.3,111.4,109.2,112.4],"paint":[217.2,219,217.6,218.4,217.4,217.8,217.4,217.7,220,218.1,219.4,218.6,218.6,218.2,218.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.3,41.8,41.5,41.7,40.3,40.8,40.9,41.2,41.1,41.2,42,40.6,41.1,41.3,41.5],"script":[14,13.8,14,14.2,12.8,13.4,13.7,13.8,13.9,13.6,13.9,13.4,13.8,13.7,13.9],"paint":[26.4,27,26.5,26.5,26.5,26.4,26.3,26.3,26.2,26.6,27.1,26.3,26.3,26.6,26.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.4,16.7,15.3,14.3,14.9,15.8,14.6,14.8,14.7,14.5,16.7,13.7,17.2,14,14.6],"script":[12.3,14,13,12,12.2,14,13.2,13,12.8,13.1,13.8,11.9,15.2,12.2,12.5],"paint":[1.2,1.8,2,1.1,1.7,0.3,0.2,0.3,0.3,0.3,1.8,0.4,1.7,0.7,1.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7053070068359375]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.741999626159668]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819445610046387]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0216350555419922]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14742183685303]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[61.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[34.9,33.8,35.2,36.8,35.3,35.9,34.3,36,36.8,35.9,35.7,36.3,37,34.9,36.2],"script":[12.6,11.1,12.7,14.1,12.6,13.4,12,13.4,13.9,14,12.7,13.6,14.6,12.5,13.6],"paint":[21.7,22.1,22,22.2,22.1,21.9,21.8,22.1,22.4,21.4,22.4,22.1,21.9,21.9,22.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36,36.4,36.7,36,36.4,35.9,36.2,36.1,35.1,36.8,36.2,36.8,36.2,37.3,36.6],"script":[13.4,13.3,13.7,12.7,12.9,12.8,13.2,13.2,12.8,13.6,13.1,13.5,13,13.6,13.3],"paint":[22.1,22.5,22.4,22.7,22.9,22.5,22.4,22.3,21.8,22.6,22.5,22.7,22.6,22.9,22.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,11.4,11.4,10.8,11.9,11.2,10.8,11.4,11.4,12,10.8,12.2,11.2,10.8],"script":[0.7,1.5,1.2,0.9,0.9,0.9,1,0.5,0.9,0.9,1.4,1,1.2,0.8,0.2],"paint":[8.6,8.9,9.2,8.4,8.2,9.9,8.9,9.6,9.1,10.2,9.7,8.5,9.9,9.5,9.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.3,3.4,2.9,3,2.9,3,3.5,2.8,3.6,3.6,3.5,3.1,3.3,3.2,3.3,3.8,3,3.3,3.3,3.1,3.1,3.1,2.9,3.8],"script":[1.2,0.8,1.3,0.9,0.6,1,0.6,1.2,1.1,1.2,1.6,1.2,1.2,1.4,1.1,1.2,1.7,1.1,0.9,0.6,1,1.1,1,0.2,0.9],"paint":[1.7,1.6,1.1,0.8,1.5,1.8,1.5,1.2,1.6,1.5,1.9,2.2,1.8,1,1.6,1.5,1.2,1.3,2,1.9,2,1.9,1.4,2.4,1.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16,16.7,16.9,17.6,17.4,17.3,16.7,16.8,17.3,15.6,15.9,16.5,16.9,16.9,17.6],"script":[2.7,3.4,3.5,3.9,2.8,3.7,3.6,3.4,3,3.1,3.4,3,3.1,3.3,3.5],"paint":[12,12.2,12.4,12.6,13.5,11.8,12.4,11.8,13.3,11.3,11.1,12.5,12,13.3,12.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,12,12.5,12,12.1,12.7,12.8,11.6,12,11.6,12.2,12.2,12,12],"script":[1.7,1.5,1.7,1.6,1.6,1.7,1.7,1.8,1.6,1.6,1.7,1.6,1.7,1.7,1.7],"paint":[9.9,9.8,9.7,10.3,9.9,9.5,10,10.2,9.5,9.5,8.7,9.8,9.8,9.6,9.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.2,325.4,326.1,323.6,323.2,323.8,322.4,321.1,324.1,322.6,322,327.3,325.2,323.6,327.4],"script":[101.5,100.9,100.5,100,99.1,99.4,99.1,98.6,100,100.5,98.7,102.6,100.2,100.4,103.1],"paint":[216.5,216.7,218.7,216.6,216.9,217.3,216.4,215.6,216.1,215.1,216.2,217.7,218,216.3,217.4]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,38.8,39,38.5,38.8,38.3,38.4,38.9,38.8,38.8,38.9,39.9,38.2,38.8,38.6],"script":[10.1,10.8,11,10.8,10.9,10.8,10.8,11.2,11.1,10.7,11,10.8,10.5,10.9,10.8],"paint":[26.4,27,27,26.8,27,26.5,26.6,26.8,26.8,27.1,26.9,28.1,26.7,26.9,26.8]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.6,14.9,15.7,14.4,15,14.9,14.4,15.4,14.5,13.8,16.4,14.8,14.3,14.9,14.6],"script":[12.1,13,13.1,12.7,13,12.8,12.8,13.4,12.3,12.3,14.3,12.9,12.2,12.6,11.9],"paint":[1.4,1.6,1.8,0.2,1.7,0.3,0.8,1.2,1.2,0.2,1.1,1,1.2,1.2,1.7]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6606159210205078]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.066756248474121]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.1287031173706055]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9392509460449219]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.17781448364258]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.6,28.3,29,27.7,28.9,28.9,28.5,27.3,28.9,28,27.3,27.5,27.4,27.4],"script":[5.6,5.4,5.6,6.1,5.5,6,5.9,6,5.5,6.1,5.4,5.4,5.6,5.6,5.5],"paint":[21.9,21.6,22.3,22.3,21.7,22.3,22.4,22.1,21.4,22.3,22.1,21.4,21.5,21.4,21.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32.3,32.7,32,31.9,32.6,32.9,32.1,31.7,31.8,32.8,32.8,32.2,31.7,32.4],"script":[9.1,9.1,9.2,9.2,9.2,9.4,9.7,8.9,8.8,8.7,9.2,9.6,9.4,9,9],"paint":[22.1,22.6,23,22.4,22.3,22.8,22.7,22.7,22.5,22.6,23.1,22.7,22.4,22.4,22.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.5,14.8,14.1,14,14.5,13,14.5,14.8,13.3,14.1,14,14.3,13.7,13.9],"script":[2.7,3.2,3.2,3,2.7,3.1,2.5,2.7,3,2.3,2.6,2.6,2.8,2.7,2.7],"paint":[10.9,10.6,9.8,9.5,9.6,9.5,9,9.7,10.7,9.3,9.8,9.9,10.5,9.6,10]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.1,3,3.6,3.1,3.1,3.1,3.3,3.1,3.4,3.5,2.9,2.9,2.6,2.2,3.4,3,2.8,3.2,3.3,2.7,2.8,3,2.8],"script":[0.6,1,0.8,1.1,0.9,0.2,0.2,0.2,1.2,1.3,0.8,0.9,0.3,0.2,0.9,0.7,0.8,0.6,0.2,1.1,0.9,0.6,0.3,1.1,0.6],"paint":[1.9,1.6,1.5,1.1,1.7,1.3,2.7,1.8,1.4,1.6,1.4,1.8,1.9,2.5,1,1,1.6,1.6,2.1,1.3,2.3,1.4,2.3,1.1,1.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.6,14,14.4,13.8,14,15.2,14.5,14.6,14.6,14.6,14.8,14.2,14.6,14.4],"script":[1.3,1.6,0.7,1.4,1.1,1.4,1.6,0.9,1.4,1.4,1.3,1.2,1.2,1.5,1.2],"paint":[11.8,12.3,11.9,11.9,11.4,11.5,12.1,12.9,12.2,11.8,12.1,12.1,11.3,11.6,11.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,13,13,12.9,12.8,13.1,13,12.8,13.5,12.9,13.2,13.2,12.8,12.9,13.3],"script":[2.5,2.4,2.5,2.6,2.4,2.4,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.4,2.5],"paint":[9.9,9.8,9.6,9.7,10.1,10.3,9.9,9.4,10.2,9.4,10.1,10.3,9.7,10,10.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[342,343,341.9,343.9,342.2,342.9,342.5,339.5,341.9,341.4,343.6,341.4,341.8,340.4,343],"script":[108.3,110.3,109.5,109.6,108.3,109.7,108,108.3,107.8,108.9,109.9,107.4,107.7,108.2,108.6],"paint":[225.7,224.7,224.4,226.2,225.7,225.5,226,223.5,226,224.3,225.9,226.1,225.9,224.3,226.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42.1,41.4,42.2,42.4,42,42,42,41.7,41.8,41.5,41.9,41.6,41.7],"script":[14.7,14.5,14.6,14.1,14.3,14.3,14.3,14.3,14.8,14.4,14.6,14.1,14.2,14.2,14.5],"paint":[26.2,26.6,26.4,26.2,26.9,27,26.6,26.4,26.1,26.2,26.3,26.5,26.6,26.3,26.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.3,16.2,15.4,16.6,16.9,16.3,15.5,15.9,16.6,16.2,17.8,15,16,16.3,15.5],"script":[13.8,15,14.3,14.3,14.5,14.7,13.6,13.4,13.9,13.8,15,13.5,13.6,14.3,14.2],"paint":[1.4,1.2,0.3,2.1,1.2,0.5,1,1.6,1.7,1.2,1.6,1.4,1.2,0.5,1.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0705327987670898]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.213217735290527]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.171822547912598]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.850666046142578]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.49588871002197]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[97]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.9,89.6,87.4,88.7,88.5,89,91.6,88.8,85.6,92.1,89.3,93.5,85.8,86.4,91.2],"script":[59.9,60.7,60.7,60,58.8,60.9,61.1,58.4,59.2,58.3,59.8,58.5,60.1,60.4,59.4],"paint":[22,22.4,22.3,22.7,22.2,22.3,22.3,22.7,22,22.2,22.1,22.2,22,22.2,22.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[94.3,89.1,94.5,86.1,85.8,92.5,94.3,95.2,85.5,92.3,90.8,94.4,86.4,94.4,89.2],"script":[65.1,58,63.4,57.4,61.9,57.6,62,63.2,61.7,63.5,57.3,62.4,57.1,63,58.1],"paint":[23,23.1,23.6,23.3,23.5,22.6,23.1,23.6,23.4,22.6,23.8,23.6,23.9,23.3,23.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[60,59.4,58.4,58.5,65.1,58,60,61.2,59.4,57.9,58.6,59,62.3,62.1,61.8],"script":[3.6,3.8,3.2,4.5,3.8,4,2.8,2.1,3.4,3.4,4,3.8,3.5,3.3,3.3],"paint":[13.1,12.8,12.3,11.9,11.8,11.9,14,12,12.8,12,12.5,11.7,13.1,13.3,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[7.4,5.9,9.5,13,7.8,6.9,8.1,13.2,7.7,14.3,12.2,11.3,8.9,10.3,10.5,7.9,6.7,6.9,4.9,13.2,6.1,14.9,14.3,13.1,5.6],"script":[1.3,1.5,2.3,1.7,1.6,1.5,1.6,1.2,2,1.5,2,1.6,0.5,2.4,1.1,1.7,2,1,1,2.2,1.1,2.1,2.7,2,1.3],"paint":[3,3,3.2,2.7,3.3,3.1,2.7,1.6,3,2.6,2.6,3,2,4.4,3.3,3.8,3.9,2.8,2.9,3.5,2.6,3.8,3,2,3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[69.7,67.6,24.7,26.4,25.6,25.8,67.2,25.7,26.4,68.5,26.1,25.1,69.2,67.9,69.2],"script":[9.4,8.4,8.4,8.9,8.4,8.5,7.7,8.7,7.3,8.3,8,8.7,8,8.6,8.7],"paint":[14.5,16.4,15.5,15.9,15.8,15,16.2,14.6,16.5,15.5,15.2,15.6,14.3,14.8,15.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23,16.7,17.7,16.8,17.1,17.4,17,19.4,18.8,17.2,17.1,18.8,17.5,16.8,18.5],"script":[4.8,4.9,4.9,4.8,5.1,4.5,4.5,4.8,4.9,4.5,4.6,4.6,5,4.8,5.2],"paint":[11.2,11,11.1,10.9,11.3,11.7,11.1,11.8,11.7,11.1,11.5,12.3,11.2,11,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[842.2,822.8,830.9,831.5,835.7,830.7,846.1,835.3,834.2,835.3,843.2,830.5,832.1,830,830.4],"script":[593.2,588.6,592.9,593.8,593.8,592.5,600.1,593.8,592.2,589.5,597.4,595,595.8,596.6,590.4],"paint":[233.7,228.4,226.4,227.9,230.8,226.6,230.8,232.1,229.3,232.7,232.6,228,229,227.7,228.3]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.1,87.2,87.5,87.4,87.7,87.1,88.8,87.9,87.5,87.9,86.9,86.7,87.7,89,87.2],"script":[48.4,49.2,47.6,49,49.3,48.4,50.2,49.5,48.9,48.5,48.3,48.6,49.1,49,48.7],"paint":[26.5,26.1,28.5,26.4,27.1,27.6,26.7,27.7,27.5,28.2,27.3,26.2,27.6,28.6,26.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.5,24,64.7,24.2,21,63.3,23.5,23.4,23.2,22.2,22.9,23.6,64,64.5],"script":[18,17.5,18.9,19.2,20.8,16.5,20.2,19.6,18.7,19.4,19.3,19.1,19.9,19.2,18.6],"paint":[2,2.6,3.1,3,2.8,3,2.7,1.8,2.8,3,2.7,2.7,2.6,3.8,3.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.493072509765625]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.979111671447754]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.988943099975586]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.267091751098633]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92032623291016]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[40.7,41.1,41.5,42,42.1,42.5,41.1,41.4,40.3,41.7,41.9,41.3,41.4,41.8,41.2],"script":[18.7,18.7,19.7,19.5,19.7,19.9,19.2,19.4,18.8,19.7,19.7,19.5,19.3,19.7,19.3],"paint":[21.4,21.8,21.2,22,21.7,22.1,21.4,21.6,20.9,21.4,21.6,21.3,21.6,21.6,21.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.7,46.1,46.1,45.8,46.4,46.1,46.4,45.8,45.8,46.1,46.1,46.2,46.1,45.9],"script":[21.8,21.8,22.8,22.9,22.6,22.8,22.7,22.7,22.5,22.5,22.8,22.7,22.9,22.7,22.9],"paint":[23.1,23.4,22.7,22.7,22.7,23,22.9,23.1,22.7,22.7,22.7,22.9,22.8,22.9,22.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,13.7,12.9,12.7,13.4,13.7,12.2,11.8,12.7,12.8,12.5,12.8,13.2,12.6,13.3],"script":[2,2.4,2.5,2,2.8,2.8,2.1,1.9,2.6,2.8,2.4,1.8,2.5,2.3,2.7],"paint":[10.6,9.3,9.2,9.8,9.5,9.7,9.1,9.2,9.5,9,8.8,9.3,9.6,8.8,9.2]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.5,7.6,6.8,8.6,8,8.3,7,9.1,7.1,6.2,6.5,8.2,6.8,6.5,8.4,7.5,6.5,7.1,5.9,6.7,7.2,6.7,8.6,7,7],"script":[5,5,4.8,5.2,5.1,5.1,4.4,6,4.3,4.3,3.8,5.5,4.8,4.7,5,4.5,4.3,4.9,4,4,4,4.6,5.1,4.3,4.4],"paint":[2.3,1.1,1.1,1.7,2.1,1.6,0.7,1.3,2,1.1,1.8,1.3,1.1,1.6,1.6,2,2,1.9,1.1,2.6,2.8,1.9,2.3,2.6,2.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[102.4,106.9,108.5,107.1,105.6,106.2,105.7,107.6,104.7,108.2,103.4,107.7,105.6,105.7,105.7],"script":[17.7,19.1,19.8,18.6,19.6,18.9,18.1,18.6,18.6,19.4,18.3,20.7,18.7,18.4,18.9],"paint":[82.6,84.8,85,85.7,84.2,85.7,85.4,86.5,84.2,86.3,83.1,84.8,84.4,84.5,84.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,15.2,15.7,15.8,15.3,14.9,15.1,16.3,15.2,15,15.2,16,15.9,15.1,15.7],"script":[4.3,3.7,4.3,4.5,3.9,4,3.8,5.3,3.9,4.3,4.4,4.8,4.3,3.9,4.2],"paint":[10.7,10.8,10.5,10.7,10.9,10.1,10.6,10.2,10.7,10.2,10.4,10.5,10.7,10.4,10.9]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[381,380.6,380.9,380.9,381.1,380.7,379.4,383,379.8,380.6,379.6,380,379.6,382.1,381.1],"script":[154.8,154.4,154.9,154.2,155.6,154.9,154.4,156.4,153.7,155.1,154.3,154.6,153.2,155.6,156.7],"paint":[219,218.9,218.9,219.6,218.6,218.7,218.3,219.6,219.3,218.7,218.2,218.7,219.6,219.1,217.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,44.5,46.1,44.8,44.8,45.1,44.7,45.1,45.1,44.9,45.3,45,44.6,44.7,44.4],"script":[16.6,16.6,17.7,17.3,17.3,17.8,17.7,17.6,17.8,17.9,17.9,17.7,17.4,17.5,17.4],"paint":[26.4,26.9,27.3,26.4,26.4,26.6,26.1,26.5,26.3,26,26.4,26.3,26.2,26.2,26]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29,29.7,29,28,29.5,28.3,28.5,28.1,28.1,30.3,29.2,29.4,28.3,29.2],"script":[24.8,26.9,27.2,26.5,25.6,27.7,25.6,25.9,25.6,26.6,27.6,27.3,27.5,26.9,27],"paint":[1.6,0.8,2,1.5,1.2,1.2,1.4,0.9,2.2,0.7,1.2,0.3,1.3,0.3,0.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2026329040527344]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.71860122680664]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.780943870544434]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1373291015625]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.16176223754883]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[236.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[61.4,54.8,54.6,54.5,53.3,49.8,57,53.6,52.7,50.6,57.5,53.7,52.7,50.6,53.6],"script":[24.1,23.8,23.7,23.9,23.6,23.2,23.7,24.1,23.5,23.4,23.8,23.9,24,23,23.6],"paint":[21.2,21.4,21.4,21,21.2,21.1,21.2,21.4,20.9,21.3,21.7,21.6,21.2,21,21.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[66.8,59.1,63.6,63.8,63.2,64.1,57.9,59.6,57.2,59.8,59.6,63.5,59.3,63.3,59.5],"script":[28.8,28.7,28.2,28.9,28.1,28.6,28.7,28.5,28.5,28.6,28.1,28.7,28.6,28.6,28.7],"paint":[23.2,23.4,23.6,23.5,23.4,23.1,23.6,23.3,23.3,23.2,23.8,23.2,23.4,23,23.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.7,42.6,41.7,27,42.9,42.6,43,41.4,42.9,43.2,42.2,41.3,43,43.4,39.4],"script":[13.4,12.3,12.5,12.9,12.8,13.1,13.5,11.3,11.8,11.3,12.8,12.5,11.4,12.8,12.2],"paint":[13.6,13.3,12.4,12.3,12.9,12.3,12.5,12.9,13.7,13,13.2,13.4,13.7,13.2,12.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[20.9,15.3,20.8,23.6,20.2,12.8,18.4,24.1,14.8,18.8,19.8,23,18.5,14.3,17.8,19.3,19.7,15.7,19.3,25.3,15.8,17.6,13.2,20.9,19.8],"script":[4.8,6.2,5.3,6.2,6.6,5.8,5.8,5.7,6.3,5.8,5.4,5.8,5.6,7.9,4.9,6.5,5.5,5.6,5.5,6.6,4.8,5.5,5.6,6.1,6.7],"paint":[2.2,3.2,3.8,3,4.4,3,2.9,2.9,4.5,3.4,4.5,3.8,2.4,4,2.2,4,3.9,3.1,2.7,3.1,2.8,3.1,2.9,4.3,3.4]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[133.8,135.8,129.4,129.2,133.7,131.7,135,132,131.7,135.6,135.7,134.2,133.3,131.9,131.7],"script":[27.7,27.7,26.3,25,27,26.4,26.8,27.3,26.7,26.8,27.8,27.4,27.2,27.2,27],"paint":[86.7,84.2,85.8,86,88.5,88.2,88.7,88.6,84.4,86.5,85.7,86.2,85.1,86.7,84.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,30.2,30.8,24.3,28.5,23.5,24.5,30.8,33,26.8,24.2,27.9,26.4,28.4,28],"script":[6,6.3,5.9,5.9,6.3,6.5,6.4,6,6.5,7,6.1,6.4,6.2,6,6.1],"paint":[12.4,12.5,11.8,12.1,11.6,12.1,12.2,12.3,12.4,14.5,11.6,11.8,11.4,11.9,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[518.8,502.6,507.2,498.6,512.3,513.6,513.9,503.4,511.9,514.1,512,514.1,513.1,516.5,515.4],"script":[273.6,275.8,273.4,275.5,275.3,273.1,274.9,275.4,275.7,276.5,275.7,276.4,279.1,277.8,274.1],"paint":[230.9,222.3,230.2,219.3,231.7,230.5,231.4,222.3,229.3,229.5,230.1,231.5,229.5,233.3,235]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.4,59.1,61.8,59.9,54.3,62.3,61.6,60.6,61.4,66.2,59,58.6,60.1,60.7,66.4],"script":[22.9,22.8,22.5,23.1,23.2,23.2,22.6,22.6,22.5,23.4,23,23.1,22.6,22.5,22.7],"paint":[26,26,26.3,26,26.1,26.1,26.1,26.8,26.1,26,26.2,26.2,26.2,26.4,26.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[56.3,58.7,55,54.5,55,54.8,54.7,55.6,60.4,54.5,56.8,61.6,54.7,61.9,58.4],"script":[31.7,31.6,32.6,31.8,32.6,31.4,31.7,32,32.2,32,31.8,32.2,32.8,32.8,30.8],"paint":[3.7,2.1,2.7,1.9,2.7,3.4,2.2,3.3,2.2,2.4,2.7,3.6,3.5,2.8,2.7]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8456459045410156]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.642852783203125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.352056503295898]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.254793167114258]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14303493499756]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[366.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.1,29.2,27.8,27.8,27.6,27.4,27.7,28.2,27.8,27.4,28,28,27.8,27.6],"script":[7.2,7.1,7.7,7.1,6.6,7,6.8,6.8,7,7,6.6,7.1,7,7.4,6.7],"paint":[21.1,20.5,21,20.2,20.6,20,20.1,20.3,20.6,20.3,20.3,20.4,20.4,19.9,20.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.7,34.6,34.1,34,34.5,34.1,34.3,33.5,33.6,34.4,34.3,33.9,34,34],"script":[10.9,11.3,11.2,10.7,11,10.8,11,10.7,10.6,10.6,11,10.7,10.6,10.7,10.6],"paint":[22.7,22.8,22.8,22.8,22.4,23.2,22.5,23,22.4,22.4,22.8,23.1,22.7,22.8,22.8]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.8,14.3,14.5,14.4,14.8,13.9,14.4,15.2,14.7,13.8,14.6,14.4,13.9,14.4],"script":[3.1,3.4,3.5,3.4,3.5,3.3,3.1,4.5,4,3.7,3.6,4,3.4,3.5,4.1],"paint":[9.9,9,9.5,9.6,9.9,10.4,9.7,8,10.2,8.9,9.5,9.6,9.7,8.9,8.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.2,4.9,4,4.8,4.3,4,4.4,4.6,3.9,4.4,4.3,4.6,4.1,3.9,4.9,4.4,4.4,4.5,3.8,4,4.3,4.3,4.6,3.9,3.7],"script":[2.2,2.2,2.2,2.7,1.1,2.4,2,1.9,1.9,2.2,1.9,2.3,1.1,2,2.4,1.8,2.2,2.2,1.7,1.9,1.5,2.3,2.3,2.2,2],"paint":[2.9,2.5,1.3,1.5,3,1,0.5,1.4,1.8,1.6,2.3,2.2,2.5,1,2.4,2.4,0.9,1.5,2,1.4,2.7,1.3,1.7,1.5,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.7,107.3,105.4,103.5,102.6,105.7,107.7,103.2,105.5,104.4,104.5,108.6,105.7,105,107.2],"script":[17.5,18,18.4,17.7,17.6,18.7,20.2,17.2,19.4,18.4,17.6,17.7,18.5,18.7,18.2],"paint":[84.7,86.6,84.7,82.7,82.1,83.8,84.7,83.3,83.7,83.2,84.2,88.4,84.4,83.1,87.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,11.9,12.6,11.5,12.1,11.9,11.6,12.2,11.9,12.2,12.8,12.1,12.2,11.8,11.9],"script":[1.7,1.3,1.4,1.2,1.4,1.5,1.3,1.7,1.3,1.3,1.4,1.7,1.3,1.3,1.5],"paint":[10.1,10,10.6,9.4,9.9,9.9,9.7,10,9.7,9.8,10.5,9.8,10.2,9.7,9.7]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.1,394.2,393.3,403.9,391.1,396.2,394.9,397.1,397,393.8,396.9,398.9,396.8,395.9,394.1],"script":[170.4,169.7,168.4,172,167.9,171.9,170.7,170.2,171.3,168.6,169.9,171.1,171.1,170.1,169.2],"paint":[218.5,217.2,217.4,224.3,216,217.2,216.8,219.8,217.5,217.8,219.6,220.3,218.4,218.5,217.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.5,33.9,34,33.4,33.8,33.3,33.5,34.1,34.6,34.8,33.7,34.5,33.8,33.4],"script":[7.7,7.5,7.3,7.6,7.1,7.3,7.4,7.1,7.7,7.7,7.6,7.1,7.9,7,7.1],"paint":[25.3,25.1,25.7,25.5,25.4,25.6,25,25.4,25.5,26,26.3,25.7,25.7,25.9,25.4]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,19.4,18.5,17.6,18,17.3,19.4,19,18.6,17.7,19.6,18.7,18,16.7,18.4],"script":[16.1,17.5,15.9,15.4,15.8,15.4,17.3,16.7,16.5,16,17.1,16.1,16.1,15,16.4],"paint":[0.8,1.7,1.7,1.2,0.7,1,0.6,0.3,1.1,1,2.2,1.1,0.5,0.3,0.3]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1720056533813477]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5933122634887695]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.076066017150879]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9302043914794922]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.46361541748047]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29,28.6,26.9,26.6,28.7,26.7,27.1,28.7,27.2,28.6,28.8,27.4,28.6,29,26.4],"script":[6.9,6.7,6.2,5.8,6.7,6,6.2,6.7,6.4,6.8,6.9,6.2,6.5,7,5.8],"paint":[21.5,21.3,20.2,20.3,21.4,20.1,20.4,21.4,20.2,21.2,21.4,20.6,21.5,21.5,20]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.8,33.8,33.8,33.8,33.8,33.4,33.5,33.2,33.4,33.6,33.6,33.1,33.5,33.4],"script":[10.7,11,10.9,11,11.1,11,10.5,11,10.8,11,10.9,10.8,10.7,10.8,10.5],"paint":[21.8,22.2,22.3,22.2,22.2,22.2,22.3,21.9,21.8,21.8,22.1,22.2,21.9,22.2,22.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.3,13.9,14.3,13.8,14.5,13.7,13.8,15.3,14.3,13.9,14.3,14.8,14,14.7],"script":[4.1,3.8,3.5,3.9,3.5,3.9,3.9,3.1,4.5,3.9,3.8,3.9,4.2,3.7,3.9],"paint":[9.4,9,9.3,9.3,9.5,8.4,9.2,9.5,9.5,9.8,8.6,8.9,9.5,8.9,9.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.8,4.2,4.8,4.3,4.5,4,4.9,4.5,4.4,4.5,4.5,4.4,4.3,4.2,3.8,4.1,3.8,4.8,3.8,4.3,4,5.5,4.3,4.9,4.4],"script":[1.4,1.5,2.4,1.5,2.2,2,2.4,1.6,1.8,2.1,2.3,1.8,2.4,1.9,2.1,2.2,1.5,2.7,1.9,1.9,1.8,2.1,1.9,2.1,1.6],"paint":[2.3,2.5,0.8,2.2,2,1.1,0.8,1.5,1.2,1.7,1.4,2.5,1.3,1.2,0.7,1.1,1.8,1.4,1.1,2.3,1.5,1.4,2.2,2.7,2.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,104.3,107.1,106.1,104.9,106,105.2,103.5,106.6,105.7,102.6,106,104,104,105.5],"script":[18.1,18.9,18.8,19.1,18.6,19.3,18.1,17.7,18.8,18.3,17.4,18.2,18.2,18.3,17.8],"paint":[85.5,82.9,86.1,84.2,84.3,84.6,84.3,83.8,85.3,84.6,82.3,84.6,83.9,82.6,85.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.6,11.8,11.8,11.5,12.5,12,12.1,12,11.6,12.5,11.6,12,12.1,12.3],"script":[1.6,1.2,1.4,1,1.2,1.3,1.6,1.6,1.4,1.3,1.6,1.3,1.6,1.2,1.5],"paint":[9.9,9.5,9.7,10.1,9.3,10.6,9.8,9.5,10.1,9.1,10.1,9.1,9.5,10.1,10.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[391.4,390.6,387.8,390,389.5,388.9,390.1,392,389.9,392.1,410.2,386.2,432.4,392,388.4],"script":[166.3,165.1,164.2,167.8,165.5,164.7,166.8,166.4,165.9,166,186.1,162.6,206.3,166.2,165.9],"paint":[218,218,216.2,214.9,216.8,216.6,216,218.1,216.5,217.7,217,216.5,218.7,217.5,215.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,35.3,34.6,33.8,34.3,34,34.4,34.5,34.4,34.4,34.6,34.5,35,34],"script":[7.6,7.2,7.4,7.6,7.3,7.5,7.2,6.9,7.4,7.7,7.7,7.3,7.4,7.5,7],"paint":[25.9,25.8,26.9,26.1,25.5,25.9,25.9,26.4,26.2,25.7,25.8,26.3,26.1,26.5,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.9,17.8,17.9,17.3,18.7,19,17.3,17.4,18.4,17.2,19,19.1,17.9,18.5,17.7],"script":[16.6,15.9,15.8,15.2,16.1,16.6,15.4,15.2,16.8,15.3,17.4,16.5,16,16.4,16.2],"paint":[2.1,1,0.9,1.7,1.6,1.5,0.3,1.5,0.3,1,1,1.3,0.9,1,0.7]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1551103591918945]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.696261405944824]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.056138038635254]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9550657272338867]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.36069107055664]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[206.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,27.2,27.1,26.8,26.9,28.9,29.5,27.1,27.3,28.9,28.9,26.8,28.7,28.6,26.7],"script":[6.7,6.2,6.3,6.1,6.2,6.7,7.4,6.1,5.8,6.8,6.8,6.2,6.8,6.7,6.2],"paint":[21.4,20.5,20.3,20.2,20.2,21.6,21.6,20.5,20.9,21.6,21.6,20.1,21.4,21.3,20]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,32.4,33.1,33,33.6,32.6,33.2,33.2,32.8,33.1,33.1,32.5,32.9,32.9,33.9],"script":[10.6,10.3,10.7,10,10.8,10.4,10.8,10.8,10.4,10.3,10.8,10.3,10.6,10.3,10.7],"paint":[22.3,21.5,21.8,22.4,22.2,21.6,21.9,21.9,21.9,22.2,21.7,21.6,21.7,22,22.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.2,15,14.3,15.1,14.8,14.9,14.4,15,16.4,14.9,14.5,15.7,14.7,15.1],"script":[3.9,4.9,4.1,3.8,4.2,4.7,4,3.8,4.5,4.8,4.9,3.9,4.8,4.3,3.7],"paint":[9.6,9.1,9.9,9.9,9.9,8.6,9.8,9.2,9,10.5,9.4,9.1,9.4,9.2,10.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.7,4.2,4,4.5,5,4.9,4.6,4.1,4.7,4.2,3.7,4.4,4.7,4.7,4,4.4,4.5,4.7,4.2,4.9,4.3,4.3,4.2,4.9],"script":[2.5,2.4,1.7,2.3,1.8,2.4,2,2.5,1.8,2.2,2,1.6,1.1,2.3,2.4,2.3,2,2.1,1.8,1.5,1.6,1.3,2.3,1.5,2.4],"paint":[2.1,1.8,2.3,1.6,2.1,1.7,2.7,1.3,2.1,2.4,1.2,1.4,3.1,1.3,1.6,0.7,1.4,2.1,2.7,2.1,1.8,2.8,1.1,2.6,1.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.7,106.6,103.4,103.9,104.8,107.3,105.7,110.9,104.5,106.2,103.5,105.8,106.2,104.3,105.8],"script":[18.4,18.7,17.9,17.1,18.1,17.5,18.9,18.8,18.4,17.9,19.1,17.4,18.2,17.9,17.3],"paint":[85.4,86.1,84,84.2,84.2,86.9,83.8,89.2,84.4,84.9,81.5,85.3,85.5,84.3,85.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12.1,12.8,12.3,11.6,12.5,11.8,12.2,11.5,11.6,11.5,11.4,11.9,12.1,12],"script":[1.3,1.3,2.1,1.7,1.2,1.5,1.3,1.9,1.3,0.9,1.2,1.2,1.3,1.6,1.6],"paint":[9.4,10.1,10.3,9.8,9.9,10.4,9.7,9.7,9.4,10,9.4,9.6,9.8,10.2,10]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[385,389.4,384.6,388.4,390.3,466.9,387.3,386.8,387,388.7,387.5,385.9,384.3,412.1,391.3],"script":[163.9,163.5,160.9,163.2,165.2,241.5,164.6,163.8,163.1,164.3,162.5,163,161.6,187.4,166.8],"paint":[213.7,218.3,216.5,217.7,218,218.1,215.6,215.9,216.6,217.2,216.9,215.9,215.6,217.6,217.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.7,34.5,33.7,33.9,34.3,34,33.6,34.2,34.5,33.6,33.8,34.8,34.5,34],"script":[6.9,7.7,7.4,6.9,7.1,7.4,7.1,6.9,7.2,7.5,6.8,6.8,7.5,7.4,6.9],"paint":[26.3,26,26.1,25.9,25.9,25.9,26,25.7,26.1,26.2,25.9,26.1,26.4,26.2,26.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.7,17.6,16.7,18.5,18.7,19.3,18.2,18.3,18.2,18.8,19.7,18.7,17.9,16.7,17.9],"script":[17.5,15.9,15.2,16.1,16.6,16.9,15.7,15.9,16,16.4,17.9,16.4,15.8,15.3,15.6],"paint":[0.9,0.3,0.3,1.3,1.5,1.3,2.1,0.8,0.7,0.9,1,1.3,1,1.2,1.4]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1485328674316406]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.454543113708496]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.905866622924805]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8971290588378906]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.618470191955566]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[36,35.5,37.6,35.2,40.9,35.3,36.2,39.1,31.4,33.7,36.4,38.1,31.7,31.5,32.6],"script":[7.1,7.3,7.6,7.8,7.4,8.1,7.8,7.6,7.3,7.5,7.6,7.5,7.8,7.8,7.5],"paint":[21.3,21.4,21.5,21.4,21,22.1,21.6,21.4,21.7,22,21.5,21.3,21.8,22,21.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[38.6,41.2,39,36.6,36.5,36.8,37,34.3,35.3,39.5,39.2,37,37.1,34.1,35.4],"script":[11.4,11.5,11.6,11.3,11.5,11.6,11.8,11.5,11.5,11.2,11.6,11.8,11.5,11.5,11.7],"paint":[22.4,22.3,21.8,22,22.3,22.7,22.4,22.2,22.7,22.7,22.6,22.4,22.1,22.1,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.5,33.7,17.9,33.5,34.9,35.5,34.3,33.1,34,17.9,32.9,18.8,34.8,34.5,33.9],"script":[5.6,5.5,5.5,5.7,6.4,5.3,5.2,4.9,5.3,5.8,6,6.1,6.1,6.3,6],"paint":[12.6,12.3,11.6,12.3,12,11.4,13,13.1,14.2,11.9,12.9,12.4,11.2,11.5,12.9]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[10.5,8.6,13,10,11.6,10.2,10,7.2,12.7,10.3,13.4,9.6,7.3,13.4,9.5,8.7,10.5,11.1,13.2,6.8,8.1,12.9,12.1,7.6,13.1],"script":[2.7,2.6,2.4,3.3,3.8,3.3,3.6,3,2.9,3.5,2.6,3.6,2.9,3.8,3.5,3.9,3.8,3,3.3,3.1,3,2.9,3.2,3.1,3],"paint":[1.5,3.2,2.3,3.3,3.2,3.2,2.8,2.5,3.3,2.4,2,2.6,3.1,3.7,2.5,3.2,2.4,4.4,2.6,2.3,2.5,2.2,2.1,2.8,2.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[108.1,108.3,123.6,106.2,124.5,123.7,107.7,123.8,123,122.2,108,106.8,124.7,106.8,124.5],"script":[18.9,20.1,19.9,20.4,21.4,19.9,19.5,21.1,20.1,19.1,19.5,19.4,20.4,19,19.7],"paint":[87.3,86.6,84.3,83.5,86.4,87.9,85.7,86.6,85.5,86.2,86.7,85.2,86.7,84.9,87]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.3,14.5,16.8,13.9,14.4,14.1,15.2,14.2,14.3,14.4,14.7,14.3,14.8,17.9,14],"script":[1.6,1.4,1.6,1.6,2,1.7,2.1,1.4,1.7,1.9,1.6,1.5,1.4,1.5,1.9],"paint":[11.2,10.8,11.1,10.7,11.8,11.1,11.4,11.2,11.3,11.4,11.9,11.2,11.2,11.4,10.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[396.4,389.4,394,390.3,387.9,385.5,387.1,392.1,394.7,386.3,388.2,394.1,390.9,387.8,398.8],"script":[166.9,168.4,166.6,167.9,166.9,164,164.5,164.8,164.7,166.3,162.2,167.3,166.7,163.7,167.7],"paint":[219.8,216.3,218.6,217.5,216.6,217.4,217.1,216.6,217.5,215.4,216.6,217,217.8,216.8,218.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.5,39.6,39.1,40.8,38.9,40.4,40.3,34.5,42.5,40.4,40.2,41.5,42,39.4],"script":[7.4,6.8,7.5,7.1,7.4,7.4,7.5,7.3,7.1,7.6,7.5,7.5,7.4,7.5,7.5],"paint":[26.4,26.5,26.7,26.8,27.2,26.5,26.5,28.2,26.9,27.3,26.2,26,26.6,26.2,26.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,35.9,17,16.7,16.4,17,17.4,16.9,16.7,19,34.5,35,16.3,16.1,17.2],"script":[12.7,13.7,13.4,13.3,12.6,13.1,12.9,12.4,12.3,14,12.9,12.3,13.3,13.5,13.4],"paint":[3.6,2.2,2.6,2.3,2.3,2.7,2.2,3,2.5,3.2,2.4,2.9,1.2,1.2,1.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149296760559082]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.548349380493164]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.022992134094238]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9739532470703125]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.693784713745117]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.1,31.6,29.6,29.6,30,31.4,31.9,31.1,30.2,30.7,30.1,31.2,30.3,29.9,29.7],"script":[8.7,9.2,7.9,8.4,8.4,8.7,8.9,8.9,8.4,8.4,8.3,8.6,8.6,8.4,8],"paint":[21.8,21.8,21.2,20.6,21,22.1,22.4,21.6,21.1,21.7,21.1,22,21.1,20.9,21.2]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35,34.8,35.8,35.1,35,34.4,35,34.9,34.9,34.8,34.9,34.5,34.7,35.1,34.6],"script":[11.7,11.8,12.4,12.1,11.9,11.6,11.8,12,11.9,11.7,11.9,11.6,12.2,12,12],"paint":[22.7,22.4,22.8,22.3,22.5,22.1,22.4,22.2,22.4,22.4,22.3,22.3,21.9,22.5,21.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.5,15.6,14.9,15.5,15.4,15.3,15.4,16.3,17.4,17.9,18.6,17,17.4,17.6],"script":[4.5,4.8,5.1,4.6,4.4,4.9,4.7,4.9,4.4,5.5,5.2,5.7,5.2,5.9,5.7],"paint":[9.4,9.4,8.2,8.7,9.3,9.1,9.1,9.4,10.3,9.7,10,9.9,9.6,9.4,9.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.2,4,4.5,4.4,4.2,3.8,4.6,4.3,6.1,4.4,4.6,4.3,4.3,3.4,4.6,3.8,4.2,4.2,3.5,4,4.6,3.7,4.8,4.9],"script":[1.2,2.2,1.9,1.9,1.6,1.9,1.3,2.2,1.4,2.4,2,2.1,1.5,1.9,1.5,2.3,1.9,1.7,2.1,1,1.9,2.5,1.7,2,2.2],"paint":[1.8,1.8,1.6,2.4,2.2,2.2,1.9,1.5,2,0.5,1.5,1.8,2.7,1.6,1,2.2,1.3,1.7,1.4,2.3,1.5,1.5,1.9,1.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[106.8,102,106.2,106.6,104.9,106.7,104.6,104.2,105.3,104.8,105,101.9,108.2,105.8,106.6],"script":[18.5,17.6,18,17.8,18,17.5,18,18.9,19,17.2,17.8,17.6,18.1,17.9,19.2],"paint":[86.2,80.9,85.8,84.9,83.1,86.7,84.1,83.5,83.1,85.6,85.5,82.1,86.6,84.9,84.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.7,12.7,11.7,12.2,11.9,12.7,12.1,12.1,11.9,12.1,12.6,12.6,11.6,11.6],"script":[1.3,1.3,1.3,1.4,1.5,1.4,1.5,1.6,1.7,1.4,1.7,1.4,1.3,1.5,1.6],"paint":[9.7,9.4,10.4,9.7,10.2,9.6,10.5,9.9,9.8,9.9,9.9,10.5,10.4,9.7,9.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[402.9,403,403.1,402.2,399.3,402.8,404.5,401,400.2,402.9,402.7,403.4,405.1,403.9,404.3],"script":[176.6,176.7,178.5,176.5,176,176.8,176.8,176.6,175.9,178.5,178,177.2,179.2,178,178.6],"paint":[218.5,218.6,217,217.3,215.7,218.3,219.8,216.6,216.6,216.6,216.8,218.6,217.7,217.9,217.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.7,37,37,36.8,36.1,37,37,37.5,37.3,37.3,36.8,37,37,37],"script":[9.4,9.4,8.9,9.4,8.8,8.7,9.2,9.1,9.4,9.1,9.3,8.8,9.1,9.6,9.2],"paint":[27,26.4,27.1,26.6,27,26.5,26.9,26.9,27,27.1,26.9,27,26.8,26.4,26.9]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,18,19.1,18.8,19.1,19,18.5,18.8,18.1,19,20,19.5,18.7,18.3,20.5],"script":[17.3,16.2,17.3,17,16.9,16.7,16.7,16.4,16.3,17.2,17.9,17.3,16.5,16.4,18],"paint":[1.9,1,0.6,0.3,1.9,0.3,0.8,1.5,0.3,1.2,1,1,0.4,0.9,0.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1119604110717773]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.776449203491211]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.215978622436523]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8903913497924805]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.485578536987305]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.3,30.3,30.6,30.4,29.8,30.5,31,30,31.3,30.3,30.4,30.9,29.8,30],"script":[9.2,9,8.9,9.2,9.1,8.7,9.3,9.3,8.8,9.4,8.8,8.8,8.9,8.5,8.9],"paint":[20.9,20.9,21.1,21.1,20.9,20.6,20.9,21.2,20.8,21.5,21.2,21.2,21.6,20.9,20.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,35.7,35.2,35.9,35.7,35.6,35.8,36.1,35.7,35.2,35.2,35.2,36.5,36.2],"script":[13.3,12.7,13.2,12.1,13.3,12.2,12.7,13.2,13.3,13.2,13,12.5,12.8,13.3,12.7],"paint":[22.2,22.8,22.1,22.6,22.2,23.1,22.5,22.2,22.3,22.2,21.8,22.3,21.9,22.8,23.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,14.8,14.5,14.8,14.4,14.5,15.8,15.7,16.1,16.1,15.2,16,15.2,15.2,15.4],"script":[3.8,3.4,4.5,3.7,3.7,4.1,3.8,4.7,4.7,4.2,4,4,4.3,4.2,4.5],"paint":[9.1,9.9,9.1,9.6,8.7,9.3,11,9.7,10.4,10.9,8.2,10.8,9.2,9.6,8.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[6.5,6,6,5.8,5.4,5.9,6.5,5.7,6.1,6,5.1,5.6,6.2,5.6,6.8,5.3,5.3,5.7,6.1,4.5,5.5,6.3,5.9,5,5.3],"script":[3.9,3.6,3.4,3.2,3.3,3,3.8,3.3,3.4,3.3,2.2,3.2,3.7,2.8,3.2,2.3,2.3,3.2,3.6,2.6,3.4,3.8,3,2.8,2.5],"paint":[2.5,1.9,1.6,2.4,1.6,1.7,2.4,1.5,2.5,1.8,2.3,2.2,2.4,2.2,1.9,2,2.7,1.7,2.1,1,1.4,2.4,2,1.1,1.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[105.5,100.7,107.2,108,103.1,103.1,105.4,105.1,102.6,104.8,105.1,104.5,106.2,107.4,104.7],"script":[17.9,17.8,19.1,21.6,18.2,18.3,18.1,20.1,19.2,19.4,19.4,19.4,19.7,19,18.1],"paint":[86.5,81.6,85.5,84.8,83.8,82.5,85.4,83.5,81,83.7,83.7,83.7,84.9,87.3,85.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.2,11.7,12.7,12.2,12.3,12.1,12.4,12.1,12.2,12.1,12,11.4,12.5,11.7],"script":[1.2,1.5,1.2,1.2,1.3,1.2,1.2,1.4,1.2,1.6,1.2,1.2,1.2,1.2,0.9],"paint":[9.7,10.1,9.9,10.8,10.1,10.2,10.3,10.4,10,10.2,10,10.2,9.5,10.6,9.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[414.7,417.7,408.1,416.1,413.6,416.3,420.9,418.5,413.8,413.5,412.5,416.3,413.7,416.9,417.1],"script":[191.5,192.3,185,187.7,186.4,189.5,190.7,189,187.4,188.3,187.3,188.2,190,190.9,190.8],"paint":[216.1,218.5,216.1,221.2,219.6,219.7,222.3,222.2,219,218.2,218.1,220.9,216.6,218.7,219.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.8,37.5,36.2,36.6,36.8,36,35.7,37.2,36.3,35.7,36.8,36.3,35.7,36.7],"script":[9.7,10.2,10.5,10.1,10.1,10.1,9.8,9.8,10.2,9.8,9.8,10.2,9.9,9.6,10.3],"paint":[25.7,25.8,26.1,25.3,25.7,25.9,25.4,25.2,26.1,25.8,25.1,25.7,25.6,25.3,25.7]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.1,12.6,13.1,12.9,12.3,11.5,12.6,12.1,12.3,12.2,12.2,11.6,12.2,11.5],"script":[12.2,11.6,11,11.7,11.4,11.1,10.3,11.2,11.1,11.3,10.7,11.1,10.3,10.9,10.5],"paint":[1.1,1.3,1.3,1,1.4,1.1,1.2,1.4,0.9,0.3,1.2,1,1.2,1.2,0.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3924837112426758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.217677116394043]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.776643753051758]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.790724754333496]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.65873908996582]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.8,29.6,28.9,30.1,28.9,29.3,29,29.1,29.4,30.1,29.3,29.1,29.2,29.1,29.6],"script":[8.7,8.2,8,8.4,7.9,8.2,7.9,8.2,8,8.4,8.1,7.9,8.2,7.9,8.2],"paint":[21.5,20.9,20.4,21.1,20.5,20.6,20.5,20.3,20.9,21.1,20.7,20.7,20.4,20.7,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.5,35.5,36.4,36.8,36.3,37.2,35.4,36.9,37,35.1,35.2,36.4,36.6,34.9],"script":[13.1,12.9,12.9,12.6,13.3,12.8,13.3,13,13.2,13,12.6,12.3,12.9,12.9,12.3],"paint":[22.9,23,22.1,23.2,22.9,23,23.3,21.8,23.1,23.3,21.9,22.4,22.8,23.1,22]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.3,17,15.7,15.4,16.2,16.5,15,15.3,16.7,15.8,15.5,15.9,16.9,15.1,16.2],"script":[5.2,5.3,4.4,4.7,5.1,5.4,4.9,4.6,5.4,4.8,4.7,4.9,5.2,4.5,5],"paint":[9,10.6,10.4,9.3,8.9,9.1,8.9,9.6,10,9.6,9.5,9.7,9.6,9.7,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.8,5.1,4.9,4.9,4.8,5.1,4.7,5.3,5.5,5,4.6,5,4,4.4,5.7,4.8,4.5,4.6,4.6,5.6,5.4,4.5,4.9,4.9],"script":[3,2.7,2.7,2.6,2.1,2.4,2.2,2.2,2.9,2.9,2.7,2.4,3,2.5,2,2.9,2.2,2.1,2.1,2.3,3.2,3.1,2.5,2.8,2.7],"paint":[1.1,2,1.6,2.2,2.5,2.3,1.7,1.7,1.8,1.6,2.1,0.9,1.8,1.3,1.6,2.6,1.9,1.8,1.9,1.5,2.3,2,1.1,2,1.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[107.7,108.5,114.6,105.2,104.1,108.6,106.9,108.8,108.8,108.1,109.3,107.2,109.8,109.7,110.3],"script":[23.5,23.3,26,22.6,21.2,24.4,22.8,24.3,24,22.1,24.2,22.5,22.8,25,24.3],"paint":[82.3,82.8,86.1,80.2,80,80.3,82.1,81.7,82.5,84,82.5,81.7,84.9,81.8,84.6]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,11.7,12.2,11.8,11.6,12.4,12.5,11.8,12.2,12,12.5,11.6,12,11.8,12.1],"script":[1.7,1.3,1.4,1.4,1.4,1.7,1.6,1.4,1.7,1.3,1.3,1.4,1.6,1.4,1.7],"paint":[9.7,9.5,10.1,9.9,9.6,10.3,10.1,9.8,10,9.7,10.5,9.2,9.7,9.6,9.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[423,412.1,411.3,422.4,409.7,408.9,415.5,415.4,409.4,410.8,416.6,409.4,408.8,409.8,426.1],"script":[199,186.6,186.6,200.7,184.7,184.3,193.7,186,186.2,185.3,191.9,184.5,185.5,186.5,203.8],"paint":[216.8,218.3,217.2,214.7,217.6,217.4,214.7,220.5,215.8,218.4,217.2,217.6,216.2,215.9,215]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,35.6,35.5,35.8,36,36.1,35.5,36,36.2,35.3,35.6,35.9,36,35.4,36],"script":[9.5,9.4,9.5,9.6,10,9.7,9.5,9.7,9.7,9.5,9.3,9.6,9.6,9.4,9.6],"paint":[25.7,25.3,25,25.1,25,25.5,25.1,25.3,25.5,24.9,25.3,25.4,25.4,25,25.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,18.3,17.7,18,18.3,17.4,18.6,19.2,17.7,18.1,19,18.1,19.3,18.6,17.7],"script":[16.3,15.5,15.6,16.6,16.8,15.8,16.2,17.2,15.8,16.2,17.2,15.7,17.2,16.6,15.6],"paint":[1.5,1.9,1.2,0.3,0.3,0.6,0.9,0.7,0.3,1,1.1,1.6,0.5,0.9,1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5546188354492188]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.266175270080566]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.719915390014648]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.327932357788086]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60484313964844]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.2,29.8,29.5,28.2,28,29.3,28,28.1,29.9,29.9,29.7,29.3,27.8,27.8,28.1],"script":[8.1,8.2,8.1,7.3,7.3,7.7,7.4,7.3,8.1,8,8.1,7.7,7,7,7.4],"paint":[20.6,21.1,20.9,20.3,20.2,21.1,20,20.2,21.2,21.4,21.1,21,20.2,20.3,20.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[210.4,222.9,224,212,226,224.3,209.6,212.1,223.6,213.1,212.5,231.9,223.7,225,223.5],"script":[190,203.3,203.8,191.9,206,204.4,189.5,192,204,192.9,192.2,211,203.5,204.8,203.5],"paint":[19.9,19.1,19.8,19.7,19.6,19.5,19.6,19.7,19.2,19.8,19.8,20.5,19.7,19.8,19.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.9,31.6,30.9,31.7,31.9,32.4,31.3,31.3,31.4,32,32.7,30,32.3,31.9,32.5],"script":[19.7,20.1,18.9,20.2,19.5,20,19.2,19.2,19.7,20.1,20.5,19.4,20.4,19.8,19.7],"paint":[10.4,9.6,9.5,9.4,10.3,11,8.9,9.4,9.6,10.3,10.6,8.8,10,9.9,10.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[19.7,21.2,20.1,20.3,20.7,20.1,20.2,20.4,20.3,21.9,21.9,19.7,20.1,21.2,20.2,19,20.7,20.6,20.5,20.4,20.7,20,20.2,20.6,20],"script":[16.8,17.5,16.8,16.9,17,17.1,16.5,17.4,16.7,18.3,18.6,17.1,17.6,17.8,17.3,16.8,17,17,17.5,17.2,18,17.2,16.4,17.3,16.9],"paint":[1.4,2.4,2,2.3,1.4,1.8,1.6,1.9,2.5,1.7,2,1.6,1.3,1.5,1.4,1.4,2,2.2,1.2,1,1.9,1.9,1.8,1.5,1.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[124,124.9,122.6,125,124.4,121.7,122.5,120.6,125.5,118.7,120.5,124,123.8,127.1,124.4],"script":[36.6,37.2,37.5,37.4,36.8,36.4,33.3,34.5,38.3,33.5,34.7,35.9,37.2,38.5,37],"paint":[84.5,85.9,81.3,84.3,84.6,83.1,85.5,82.8,85,82.3,82.1,85.1,84.4,86.8,84.4]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.7,18.7,18.7,18.9,19.2,20,19.2,18.9,19,18.3,19.1,18.6,19.2,18.9],"script":[7.5,7.3,7.8,7.4,7.9,7.8,8.6,7.5,7.6,7.6,7.1,7.8,7.5,8.2,7.8],"paint":[10.3,10.3,9.5,10.1,9.9,10.1,10.5,10.6,10.2,10.3,10.1,9.9,9.9,9.7,10.2]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[404.5,401.4,398.2,405.1,397.8,400,406.7,400.6,415.3,405,401,401.1,401.3,398.2,399.2],"script":[179.1,178.5,174.3,180.3,176.1,175.8,180.8,177.7,190.2,181,176.7,176,177.9,174.2,175.2],"paint":[217.9,215.9,216.2,217.7,214.5,217,218.5,215.7,217.9,216.8,217.2,217.6,216,216.5,216.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,39.1,38.9,39.7,39.1,39,38.6,38.9,39.9,38.7,38.9,39.2,38.9,39.5,38.8],"script":[11.9,12.1,12.2,12.1,12.2,12.1,12,12,12.3,12.1,12,12.1,12.1,12.2,12.1],"paint":[25.8,26,25.7,26.7,26,26,25.6,26,26.7,25.8,26,26.1,25.9,26.3,25.8]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,19.5,21.2,19.7,23,20.1,18.9,22.3,19.8,21.2,21.2,20.2,19.8,19.5,19.5],"script":[17.7,17.6,19.3,17.3,20.5,18.2,17.5,19.9,17.4,18.9,18.9,17.9,17.2,17.6,17.1],"paint":[1.9,1,0.4,2.1,0.8,0.9,0.3,1.3,0.6,1.6,1,1.9,1.6,0.7,1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.706192970275879]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.142668724060059]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.690890312194824]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5411376953125]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.52224922180176]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[339.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.9,33,32.5,33,32.4,32.8,32.9,32.4,32.6,32.6,31.9,32.2,32.8,32.1,33.1],"script":[10.6,10.9,11,10.7,10.9,10.5,11.2,10.6,10.6,10.7,9.8,9.9,10.6,10.8,11],"paint":[21.7,21.5,20.9,21.7,21,21.6,21.2,21.4,21.5,21.4,21.5,21.6,21.5,20.8,21.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.7,39.4,40.1,40.3,39.6,39.4,40.5,39.2,39.8,39.9,39.8,39.5,40.1,39.6],"script":[15.9,15.9,15.5,16.2,16,16,15.8,16.5,15.7,15.9,16.1,16.3,15.7,16.3,15.9],"paint":[23.4,23.2,23.2,23.3,23.7,23,23,23.4,23,23.3,23.2,23,23.2,23.2,23.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.7,18.9,18.4,19.5,19.9,19,18.8,19.4,19.3,18.9,18.7,18.5,19.9,19.2,19.8],"script":[7.1,7.8,6.8,7.4,7.5,7.5,8,6.8,7.3,7.7,7.6,7,7.5,7.2,7.9],"paint":[9.5,10.1,9.9,9.7,10.8,10.3,9.7,11.4,10.4,8.3,9,9.3,11.4,10.1,7.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,6.6,5.4,6,5.2,5.5,5.7,6,6.1,6.4,5.8,5.2,5.7,4.9,6.2,5.7,5.9,5.8,5.5,6.3,5.6,6.4,6.3,5.3,6],"script":[2.8,3.9,2.7,3.3,2.3,3.6,3.5,3.5,3.7,3.4,3.4,3.5,2.9,2.8,3.9,3.3,3.4,2.9,3.2,3.6,2.8,3.9,3.6,3.4,3.1],"paint":[3,2.5,2.5,2.3,2.8,1.1,1.2,1.7,2.2,2.4,1.7,0.7,1.9,1.9,1.8,2.2,1.4,2.7,1.4,1.7,2.6,1.8,1.4,1.8,2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107.4,109,107.2,109.4,112,105.4,110.4,108.6,108.9,110.3,109.9,109.8,109.5,107.8,113.1],"script":[21.3,21.1,20.4,22.2,23.7,20.5,23.2,22.4,21.8,20.7,21.6,21.9,20.9,19.9,24.5],"paint":[82.4,86.1,82.7,84.6,85.2,82.8,85.6,84.1,83.9,86.8,86.3,85.9,86.7,85.3,85.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,23.8,24.5,24.2,24.6,24.6,24.1,24.8,24.7,23.7,23.6,24.4,24.7,24.3,24.3],"script":[12.2,12.3,12.1,12.1,12.6,12.5,12.1,12.6,12.4,11.7,11.4,12.3,13.1,12,12.6],"paint":[10.9,10.5,11.2,10.9,11.1,10.9,10.9,10.9,11.3,11.1,10.9,11.3,10.5,11,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[450.9,450,454.6,453.7,452.4,451.4,455.1,459.8,453.6,452.2,452.9,451.5,460,456.2,451.9],"script":[225.2,224.4,224.8,224.5,224,225.7,227.7,230.8,225.6,223.6,225.9,223.9,226.5,226.8,223.7],"paint":[218.1,218.5,222.7,221.8,221.1,218.6,220,221.4,220.8,221.5,219.8,220.4,226.3,222.3,220.8]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.6,39.1,38.1,37.8,38.8,38.6,37.8,38.6,37.9,37.6,38.3,37.1,37.8,38.4],"script":[11.1,10.8,12,11,10.9,11,11.9,10.9,11.8,10.8,11.1,11.9,10.8,11,11.1],"paint":[26,25.8,26.2,26.2,25.9,26.9,25.8,26,25.7,26.1,25.5,25.4,25.3,25.8,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,21.2,22.4,20.5,22,21.6,19.2,20.1,23.3,20.8,21.9,21.1,21,20.7,20.7],"script":[20,18.3,20,18.4,20,18.7,17.7,18.1,20.6,18.4,19.7,19.6,18.8,17.9,18.6],"paint":[1.5,2.4,2.1,1.2,0.5,1.1,0.3,1.1,2.1,1.1,0.3,0.7,1.9,2.3,1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3005762100219727]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.664432525634766]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.321878433227539]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.131575584411621]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.59714126586914]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[30.4,30,28.7,29,29.7,28.8,28.9,29.3,28.9,28.8,29.1,28.6,28.5,29.1,29.7],"script":[8.5,8.6,7.4,7.8,8.1,7.8,8,8.1,7.3,7.5,8.1,7.5,7.4,7.9,7.7],"paint":[21.3,20.9,20.7,20.6,21.1,20.5,20.3,20.6,21,20.7,20.4,20.6,20.5,20.7,21.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.6,35.9,35.8,35.7,36.2,35.9,36,35.8,36,35.6,35.8,36,35.6,35.2,35.3],"script":[12.8,13,13,12.9,13.1,13,13,12.8,13,12.8,12.8,12.9,12.7,12.6,12.7],"paint":[22.2,22.3,22.2,22.2,22.5,22.3,22.4,22.5,22.4,22.2,22.4,22.4,22.3,22,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.4,17.7,18.5,17.5,17.9,17.9,16.9,17.5,18.7,17.7,18.8,18.1,18.7,18.3,17.4],"script":[6.7,5.6,6.5,6.5,6.4,6.4,5.9,6.2,7.1,6.6,6.8,6.6,6.8,6.7,6],"paint":[9.8,11,9.6,9.4,8.9,9.7,9.6,8.9,10,9.2,9.6,9.1,9.5,9.6,9.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,5.5,5.5,4.7,5,5.1,4.4,5.1,5.3,5.3,4.9,6.2,4.6,5.4,4.9,5.2,5.8,5,5.3,4.9,5.3,4.8,4.4,5.1,4.5],"script":[2.2,2.7,2.9,2.8,3,2.1,2.5,2.9,2.8,3.1,2.6,2.7,2.6,3.5,2.7,2.6,2.7,2.4,3,2.6,2.9,2.5,2.4,2.2,2.5],"paint":[2.6,1.9,2.5,1.8,1.1,2.8,1.7,1.2,1.6,1.3,2.2,1.8,0.8,1.1,1.4,1.6,2.9,1.8,1.4,1.3,1.6,1.3,1.2,2.8,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106,105.3,109.3,104.1,109.5,107.1,107.1,105.8,107.4,106.9,105.1,104.2,108.6,106.4,109.9],"script":[20.9,19.9,21.7,19.7,20.3,20.4,19.6,20,21.1,20.7,20.7,19.3,19.9,20.6,21.9],"paint":[83.3,82.7,86.1,82,87.3,84.2,84.8,82.7,83.1,83,82.3,83.2,86.4,82,84.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.6,13,12.4,12.8,12.7,13.6,12.7,12.7,12.8,12.8,12.7,12.6,13],"script":[1.9,1.9,1.9,1.9,1.9,1.7,1.8,1.9,1.8,1.8,2,1.7,1.8,2,1.9],"paint":[10.2,10.6,10.6,10.1,9.9,10.1,10.4,10.4,10.4,10.3,10.1,9.8,10.3,9.9,10.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[402.4,400.5,402.1,400.1,406.3,405.1,399.1,402.5,399.7,400,402.1,398.1,402.7,395.5,402.2],"script":[178.6,178.8,176.9,176.2,180,178.4,178,179.5,177.8,176.5,180.7,176.1,178.6,173.2,180.2],"paint":[216.4,214.5,217.5,215.9,219.1,219.4,214,215.8,214.8,216.4,214.3,214.8,216.5,215,214.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,35.5,34.4,34.9,34.9,34.8,34.5,34.8,35.1,34.6,34.9,35.1,35.1,34.5,35.2],"script":[8.7,8.8,9.1,8.7,8.7,8.9,9,8.8,8.8,9,8.7,9.1,9,8.7,8.8],"paint":[25.3,25.7,24.4,25.3,25.2,25,24.6,25.1,25.4,24.7,25.3,25.1,25.1,24.9,25.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,18.4,18.7,19.3,18.4,18.8,18.6,18.1,18.5,18.4,19.7,17.4,18.3,18.3,19],"script":[16.5,16.6,16.4,17.1,17,16.7,16.3,15.8,16.8,16.2,17.4,15.6,16.7,16.1,16.5],"paint":[0.8,1.2,0.9,1.9,0.3,1.3,1.7,1.1,0.3,1.1,1.3,0.9,0.7,0.3,1.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2187995910644531]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9862823486328125]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.48721981048584]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9865007400512695]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.38824653625488]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.7,30.5,30.1,29.7,29.9,29.8,30.4,30.3,30.2,30.1,30.1,30.5,29.8,30.2,29.5],"script":[9.6,9.1,9,8.7,8.9,8.7,9.1,9.1,9,9,9.1,9,8.7,9.1,8.5],"paint":[21.5,20.9,20.6,20.5,20.4,20.6,20.7,20.6,20.7,20.6,20.5,20.9,20.6,20.6,20.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35,35.8,35.9,35.8,35.8,35.7,35.7,35.6,35.7,35.4,35.9,35.4,35.4,35.4,35.6],"script":[12.4,12.9,12.9,12.8,12.9,12.8,12.7,12.7,12.7,12.8,12.7,12.8,12.9,12.9,12.8],"paint":[21.9,22.3,22.4,22.4,22.4,22.2,22.4,22.3,22.4,22.1,22.5,22,21.8,21.9,22.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19,20.5,20.4,19.1,20.3,20,19.8,19.5,21.1,21.3,19,20.4,20.8,22,20.5],"script":[8,8.9,8.3,7.5,9.6,8.2,8.4,7.9,9.7,9.6,7.7,8.7,8.1,10.5,8.4],"paint":[8.8,9.3,9.7,9.4,9.5,9.8,9.4,9.1,8.7,10.3,9.2,9.9,11.9,9.7,9.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6,5.6,5.7,5.9,5,5.8,6.1,5.9,6.3,5.3,4.9,5.3,5.7,5.1,5.2,5.3,4.5,5.5,5.4,5.9,5.3,5,6.3,5.9,5.4],"script":[3.7,2.7,3.4,3.3,3.2,3,3.2,3.6,3.5,2.8,2.6,2.9,2.7,3.2,3.3,2.8,2.6,3.4,2.6,3.5,3.3,2.7,3.9,3.6,3],"paint":[2,1.3,2.1,1.6,1.7,1.8,1.9,1.2,2.7,1.7,2.1,1.5,2.3,1.1,1.7,1.6,1,1.3,1.8,1.3,1.8,1.3,1.5,1.8,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[107,105.4,112,107.3,110,110.2,108.1,109.2,107.4,110.3,107.2,111.4,109.4,106.8,109.6],"script":[21,21.9,23,22.6,23,22.9,21.7,23.4,23,22.5,23,23.5,22.2,20.9,23],"paint":[83.3,81.2,86.6,82.1,85.5,85.7,84.5,83.5,82.4,85.1,82.4,86.2,85.9,83.9,84.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,14.1,14.4,14.2,13.7,14.5,13.8,13.2,13.9,13.6,14,13.9,13.3,14.2,13.8],"script":[2.8,3.1,2.7,2.7,2.8,2.8,2.8,2.8,2.9,2.6,3.4,2.9,2.6,3,2.5],"paint":[10.6,10.6,10.8,10.5,10.2,10.9,10.3,9.8,10,10.4,10.3,10.1,9.8,10.5,10.5]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[406.9,409.3,410.9,409.7,410.9,409.7,410.1,407.7,412,407.2,408.2,414.9,414.8,409.4,413.6],"script":[184.6,185.8,188.1,185.6,187.2,186.1,187.2,183.7,188.2,184.4,184.6,188.4,188.6,186.1,188],"paint":[215,216,215.4,216.9,216.3,216.4,215.6,216.7,216.6,215.5,216.3,219.3,218.8,215.9,218.2]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,37.1,37.1,37.1,37.5,36.6,36.9,36.6,37.1,37.1,36.6,37.9,37.1,37.3,37.3],"script":[10.5,10,10,9.9,10,9.8,9.7,10,9.9,10.1,9.9,10.4,9.8,10,10.1],"paint":[26.6,26.2,26.1,26.2,26.5,25.8,26.2,25.6,26.2,26,25.7,26.5,26.3,26.3,26.3]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22,18.8,20.2,18.7,19.5,19.1,21.1,19.7,19.6,20.7,20.6,19.4,20.4,19.3,20.5],"script":[18.5,16.6,17.9,16.5,17.1,16.7,18.6,17.7,18.1,18.6,18.4,17.1,18.6,17.5,18.1],"paint":[1.5,2,1.2,0.8,1,1,2.2,0.9,0.9,1,1.2,1,1.2,1,2.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4026451110839844]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433895111083984]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.923381805419922]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4295148849487305]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.440735816955566]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.3,32.3,33.4,32,32.5,33.5,32.4,32.3,32.4,31.8,33.1,31.9,32.6,31.6,32.2],"script":[11,10.9,11.4,10,10.9,10.6,10.7,10.8,10.7,10.2,10.6,10.1,10.7,9.9,10.8],"paint":[21.7,20.8,21.4,21.2,21,22.3,21.2,21,21.1,21.1,21.8,21.5,21.3,21.2,20.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.6,39.6,39.2,39.4,39.3,39.5,39.7,39.4,40.2,39.3,39.9,39.9,39.6,40,40.2],"script":[15.9,15.8,15.6,15.9,15.8,16,15.9,15.9,16.1,15.8,16.2,16,16,16.1,16.1],"paint":[23.1,23.2,23,22.9,22.9,22.9,23.3,22.9,23.5,23,23.1,23.2,23.1,23.3,23.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,20.1,19.8,20.3,20,18.3,18.4,22.3,20.2,19.2,18.3,18,19.5,19.7,19.5],"script":[7.4,7.5,8.1,8.1,7.2,7.2,7.5,8.4,8.1,8.3,7.5,6.8,7.1,7.3,7.1],"paint":[10.4,10,9.9,10.6,11.2,9.3,9.6,11.6,10.6,8.9,9.2,8.3,10.4,10.1,9.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,5.3,6.2,6,6.1,5.4,5.7,5.7,5.7,6.4,5.6,6.7,5.7,6,5.7,5.7,5.5,5.7,5.7,6.2,6,5.3,5.1,5.5,5.2],"script":[3.7,3.3,3.8,3.4,3.6,3.1,3.5,3,2.9,3.8,3.3,3.4,3.2,2.9,2.6,3.2,3.3,3.6,3.3,3.5,3.4,3,2.7,3.3,3.2],"paint":[2.6,1.1,2.2,1.8,1.6,2.2,1.7,2.6,2.7,2.1,2.2,1.7,2.3,2.9,3,1.7,1.6,1.6,1.8,1.9,1.6,2.1,1.5,1.3,1.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[108.8,111.4,110.5,108.3,107.2,108.9,105.7,109.8,109.8,111.6,109.9,114.3,106.8,111.4,110.4],"script":[22.2,22.1,22.8,21.8,20.9,21.7,20.3,21.7,21.9,21.9,21.3,23.1,21.4,22.8,22.3],"paint":[84.4,87.1,85.8,83.8,84.3,85.4,83.9,85.8,85,87,86.4,88.5,82.6,86.4,84.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.3,25.5,24.5,23.9,24.1,24.7,25.1,23.8,24.5,24.6,23.9,24.7,24.4,24.4,24.8],"script":[13.5,12.8,12.3,11.8,11.9,12.7,12.3,11.7,12.4,12.2,11.8,12.5,12.3,12.2,12.6],"paint":[11.3,11.5,10.8,10.9,10.9,10.8,11.7,10.9,10.8,11.3,10.9,10.8,11,11.2,10.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[452.2,456.6,454.3,457,455.9,449.6,452.9,458.1,452.7,455,452.4,450.6,456.4,453.1,451.3],"script":[224.2,225.5,225.9,224.9,225.5,223.8,222.6,230.3,225,225.9,223.5,223.8,227.1,223.8,223.8],"paint":[220.8,223.9,221.2,224.2,222.9,218.7,223,220.6,220.3,221.7,221.7,219.7,222,221.8,220.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,37.9,37.8,39,39.9,37.9,37.5,37.7,38.3,38.5,38.5,38.8,38,37.9],"script":[11.2,11.1,10.9,11.1,11.8,11.9,11.1,11.1,10.9,11.1,11.8,11.1,11.9,11,11.1],"paint":[25.7,26.1,26,25.7,26.3,27,25.9,25.4,25.9,26.2,25.7,26.4,25.9,26.1,25.9]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,22.3,21.4,21.6,24.7,20.5,22.5,21.4,20.2,19.3,21.6,21.9,21,22.5,22.2],"script":[18.2,19.9,19.3,19.9,22.6,18.3,19.9,19.3,18.7,17.2,19.5,19.5,18.5,19.6,20.4],"paint":[0.8,2.1,0.6,0.3,0.9,0.7,1.7,0.9,0.7,1.1,1.8,1.8,1.4,2,0.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3411483764648438]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.627699851989746]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.318523406982422]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1759376525878906]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.23661422729492]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.1,26.8,27.4,27.3,26.9,28,29.1,27.5,27.4,27.2,27,27.3,27.7,27.5],"script":[7.6,6.3,6.3,6.6,6.8,6.2,6.7,7.3,6.8,6.7,6.6,6.2,6.6,7,6.7],"paint":[21.4,20.2,20.1,20.3,19.9,20.1,20.7,21.2,20.2,20.1,20.1,20.2,20.1,20.1,20.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[34.8,33.8,33.6,33.5,33,32.9,33.7,32.9,32.7,33,33.6,34,33.3,33.1,33.6],"script":[11.2,10.8,10.7,10.7,10.3,10.2,10.9,10.3,10.3,10.3,10.7,10.5,10.4,10.3,10.5],"paint":[22.9,22.4,22.3,22.2,22.1,22.1,22.2,22.1,21.9,22.1,22.3,22.8,22.3,22.2,22.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.3,16.6,16.1,14.3,15.2,15.5,16,15.2,15.6,15.8,15,15.5,16.8,15.2,15.7],"script":[5,5.6,5,4.5,5,5,5.1,4.8,4.9,4.9,4,4.7,4.9,4.5,4.7],"paint":[9.1,9.5,9.3,8.9,8.9,8.9,9.3,9.1,9,9.1,9.8,9.8,10.9,10,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.1,4.8,5.2,4.4,5.4,4.2,4.6,4.5,4.9,4.9,4.3,4.5,4.9,4.3,5,4.6,4.6,6.1,4.9,4.7,3.9,4.1,4.3,3.8],"script":[1.9,2,1.8,2.6,2.2,2.5,1.5,2.2,1.9,2.2,1.5,2.8,2.3,2.6,2,2.8,2.2,2.4,2,2.9,2.1,2.1,1.7,2.4,2],"paint":[1.1,1,2.1,1.2,2,1.8,2.6,1.5,2.3,1.8,1.9,1.3,0.9,1.2,2.2,1.4,2.3,1.5,1.6,1.8,1.4,1.7,2.1,1.1,1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[106.5,104.3,105.1,103.7,103.1,105.2,103.3,104.8,104.9,106.4,108.2,104.8,103.6,103.9,104.2],"script":[18,17.9,18.4,18,17.9,18.1,18,18.3,17.8,17.9,20.2,17.9,17.8,17.7,17.3],"paint":[86,85.1,84.6,83.8,82.1,84.1,83.1,84.5,84.9,86.2,85.7,85.6,83.7,83.9,84]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,11.9,12.3,11.8,11.6,12,11.9,12.1,12.2,11.8,11.6,11.6,11.8,11.6],"script":[1.4,1.3,1.5,1.2,1.6,1.3,1.3,1.7,1.5,1.5,1.4,1.3,1.6,1.5,1.2],"paint":[9.9,9.9,10,10.1,9.6,9.3,10.1,9.6,9.8,9.9,9.7,9.8,9.7,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.7,431.2,393.5,392.9,390.4,389.4,393.9,393.7,391,389.4,391.9,391.9,392.3,391.5,390.6],"script":[166.5,208,170.1,163.2,165.7,162.9,165.5,166.6,166.7,163.2,166.9,167.9,164.9,166,164.3],"paint":[219.9,216,216.3,222,217.5,219,220.8,219.5,217.1,218.9,217.6,216.3,219.8,218,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.1,33.4,34.1,33.2,33.4,33.2,33.9,32.9,33.2,34.2,33.7,32.5,33.3,33.1,33.3],"script":[7.5,7.7,7.6,7.5,7.6,7.2,7.3,7,7.5,7.9,7.7,7.1,7.7,7.1,7.5],"paint":[24.7,24.8,25.5,24.7,24.8,25.1,25.7,25,24.8,25.3,25.1,24.4,24.7,25.1,24.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.3,17.8,17,17.2,19.4,18.2,16.1,16.7,18.1,17.1,18.6,19.1,17,16.9,16.7],"script":[15.7,16,15.2,14.7,17.4,16,14.5,14.6,16.1,14.5,16.3,16.7,15.3,15.1,14.6],"paint":[2.4,1.2,0.4,1.8,0.4,0.7,1.1,1.2,0.6,1.3,2.1,1,1.1,0.3,1.5]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2366905212402344]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.465743064880371]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.834593772888184]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9212417602539062]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.453356742858887]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,29.3,27.2,27.5,27.2,29.2,29,27.2,27.5,29,28.9,29.3,27.2,30.3,29.3],"script":[7.3,7.2,6.5,6.5,6.2,7,6.8,6.1,6.3,7,7.1,6.9,6.2,7.1,7.3],"paint":[21.7,21.5,20.2,20.5,20.5,21.5,21.6,20.6,20.8,21.5,21.3,21.8,20.5,22.5,21.4]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.2,34.8,33.6,35.1,33.7,34.3,34.8,33.8,34.4,34.8,33.1,34.4,33.9,33.8],"script":[11.4,11.3,11.5,11.6,11.7,11.3,11.5,11.4,10.9,11,11.5,10.8,11.2,11.4,11.1],"paint":[23.1,22.4,22.8,21.4,22.9,21.8,22.2,22.8,22.2,22.8,22.8,21.8,22.6,21.9,22.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,15.6,15.8,15.8,15.1,14.8,14.4,15,15.1,15.1,14.7,14.5,15.4,16.2,15],"script":[4.3,4.3,4.8,4.5,5,4.5,4.7,4.5,4.6,4.4,4.3,4,4.1,5,4.6],"paint":[9.8,9.9,9.1,9.9,9.3,9.4,8.8,9.1,9.4,8.9,8.9,9,9.9,9.3,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,4,4.4,4.2,4,4.2,4.3,4.6,3.8,4.4,4.2,4.2,3.9,3.9,4.4,3.7,4.7,4.2,4.3,4.5,3.8,3.6,3.8,4.6,3.9],"script":[1.4,2.2,2.2,1.6,1.8,2.1,1.8,2,1.5,1.4,1.9,1.9,2.4,2.1,2.1,1.5,2.4,2.1,2.2,2.3,2,1.6,1.3,1.8,1.7],"paint":[1.5,1.7,2,1.6,1.1,2,1.6,2,1.2,2.9,1.8,2,1,1.6,1.6,1.5,1.7,1.2,2,1.3,1,1.7,2.4,1.9,1.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[104,102.8,103,103.8,104.7,104.8,104.2,102.4,106.7,101.4,106.9,104.1,106,103.3,102],"script":[16.9,17.3,17.4,17,16.4,18.2,17.2,17.3,18,16.5,17,17.3,16.9,17.4,16.5],"paint":[84.8,84.2,82.9,84.7,84.8,85.4,84.2,82.4,86.4,82.4,87.7,83.9,86.7,82.3,84.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.9,11.5,11.5,11.6,11.5,11.6,11.6,12.1,12.1,12.1,11.6,11.5,11.6,11.6],"script":[1.2,1.2,1.5,1.2,1.4,1.2,1.2,1.3,1.4,1.4,1.2,1,1.3,1.3,1.5],"paint":[10,9.9,9.7,9.6,9.8,9.7,9.8,9.7,10,9.9,10,9.9,9.4,9.9,9.3]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[395.6,391.5,392.2,391.3,391.2,391.6,394.2,390,390.8,389.3,392.2,392.7,394.1,389.7,387.9],"script":[171.9,168.8,168.4,169.3,168,168,170.3,167.5,166.6,167.2,168.2,166.9,169.2,166.7,165.7],"paint":[215.8,215.4,216.7,214.8,215.8,216.5,216.7,215.4,217,214.7,216.9,218.2,217.4,215.7,215.1]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36,36,35.5,34.6,34.6,35.6,36.1,35.8,35.5,35.6,34.8,35,35.4,36.2],"script":[8.5,8.4,8.5,8.5,7.3,7.8,8.1,8.4,8.2,8.1,8,7.9,7.9,8,8.2],"paint":[26.4,26.7,26.6,26.1,26.4,25.9,26.6,26.7,26.6,26.5,26.7,26,26.2,26.4,27]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.2,17.6,17.2,19.1,17.8,19,17.7,19,18,17.9,20.4,16.7,17.8,18,18.5],"script":[16.7,15.5,15.5,16.6,15.7,17.1,15.5,16.5,15.6,15.8,17.3,15.1,16.2,16.4,16.2],"paint":[1.2,1.1,0.3,1.4,0.6,0.3,1.6,0.7,1.9,1.5,2,0.7,0.4,0.6,1.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1553611755371094]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.069391250610352]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5186967849731445]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8899574279785156]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.145355224609375]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[201.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,29.9,29.6,31,29.7,31.3,31.3,30,29.7,31.2,30,29.9,30,29.8,29.6],"script":[8.9,8.7,8.4,8.9,8.3,9.2,9.1,8.5,8.3,9,8.6,8.5,8.6,8.5,8.3],"paint":[21.7,20.7,20.7,21.6,20.9,21.6,21.6,20.9,20.9,21.7,20.9,20.9,21,20.8,20.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.8,35.8,35.8,36.9,36.4,36.1,36.1,36.1,36.1,36.5,35.8,36.7,36.2,36.3],"script":[12.5,12.4,12.6,12.6,12.6,13.1,12.7,12.6,12.7,12.8,12.9,12.4,12.9,12.3,12.4],"paint":[23.2,22.9,22.6,22.6,23.7,22.8,22.8,22.9,22.9,22.8,23,22.8,23.2,23.3,23.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,22,20.7,20.9,21.2,20.8,20.6,21.9,21.9,20.7,21.5,20.8,22.9,20.9,19.8],"script":[8.9,9.1,9.1,8.7,9.5,9.6,8.6,9.6,10.1,9.6,9.3,9.4,9.2,9.3,8.5],"paint":[8.8,10.8,9.1,10.5,9.8,8.7,9.9,10.3,10.1,9,9.7,9.7,11.5,10.1,9.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[8.3,9.1,8.1,7.5,8,6.9,8,8.8,7.6,8.4,7.1,7.9,8.2,8.9,8.1,7.2,7.9,7.4,6.6,8,9.3,6.4,8.2,7,7],"script":[5.4,6.3,5.4,4.6,4.7,4.4,5.1,5.9,4.6,5.1,4.9,5.4,5.5,5.6,5.2,4.8,5.2,5,4.1,5.3,5.7,4.7,5.4,4.9,4.4],"paint":[1.1,1.7,1.1,2.3,2.3,1.4,1.9,1.2,1.4,1.8,1.4,1.5,2.1,3,1.6,1.9,1.3,1.8,1.4,1.3,2.2,0.7,2,1.9,2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[109.4,104.5,106.7,108.4,107.1,109.2,106.8,108,109.5,110.8,106.4,105.3,106.5,107.1,108.8],"script":[23.1,22.4,22.3,23.2,22.1,23,22.4,21.6,22.8,23.6,21.9,22.4,21.8,21.5,22.7],"paint":[83.1,79.1,82.5,82.9,81.9,83.5,81.8,83.4,83.2,84,82.3,80.8,82.6,83.9,83.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.5,13.9,13.3,13.8,14.3,13.7,13.2,12.8,13.4,13.4,13.8,13.4,13.1,13.2],"script":[3.1,2.9,3.3,2.6,2.8,2.8,2.8,2.9,2.8,2.6,2.6,3,2.8,3,2.8],"paint":[9.8,10,9.8,10.1,10.3,10.6,10.1,9.6,9.6,9.7,10.1,10.1,9.6,9.6,10]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[407.8,429.3,407.6,404.5,411.1,426.4,398,400.2,401.8,403.9,402.2,398,403,407.4,404],"script":[181.1,201,184.8,180.2,186.2,199.7,173.5,175.4,177.4,180,176.5,174.6,175.3,182.7,178.6],"paint":[219.5,220.7,215.7,216.9,217.7,218.3,217.3,217.5,217.3,216.8,217.5,216.2,220.3,217.7,218.2]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,36.9,37.3,37,37.4,36.7,37.3,37.4,37.2,37.3,36.9,36.8,37.3,36.6,37.4],"script":[9.5,9.7,9.7,9.6,9.7,9.7,9.9,9.8,9.7,9.9,9.9,10,9.7,9.8,9.7],"paint":[25.6,26.2,26.7,26.4,26.8,26.1,26.5,26.6,26.5,26.5,26.1,25.9,26.7,25.8,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.3,19.9,18.8,17.9,19.2,18,19.2,17.8,18.6,18.6,19.3,19,17.8,18,18.9],"script":[17.3,17.5,16.5,16.1,16.8,16.2,17,15.9,16.4,16.3,17.5,17.2,15.8,15.9,17],"paint":[2.4,0.8,1.4,0.9,1.5,0.6,0.7,1,1.3,1.5,0.3,0.3,1.6,0.7,0.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2711639404296875]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.945793151855469]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.462956428527832]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.493075370788574]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38289165496826]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.3,30,30.1,30.9,29,28.5,30.4,30.2,28.8,30.3,29.5,30,28.3,30.2,28],"script":[8,7.8,8,8.1,7.5,7.4,8.1,8.2,7.4,8,7.7,7.9,7.3,8,7],"paint":[21.7,21.6,21.5,22.2,21,20.6,21.8,21.5,20.9,21.7,21.3,21.5,20.5,21.7,20.4]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[34.5,34.3,34.2,34.4,34.7,34.8,34.4,34.7,33.6,34,33.9,34.4,34.4,34.2,34.4],"script":[11.5,11.5,11.3,11.5,11.6,11.7,11.5,11.4,11.3,11.3,11.2,11.6,11.4,11.3,11.7],"paint":[22.4,22.3,22.3,22.3,22.6,22.6,22.3,22.7,21.7,22.1,22.1,22.3,22.4,22.2,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17,17.2,16.2,16.8,18.5,17.5,16.9,16.3,16.5,16.7,17.9,15.5,17.7,16.3,16.9],"script":[5.2,5.3,5.2,5.1,6.7,5.6,5.1,5.5,5.3,4.7,6.4,4.7,5.8,5.4,5.6],"paint":[9.1,10.2,8.9,9.7,9.2,10.3,10.1,8.5,9.2,10.4,10,9.8,10,9,9.3]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.9,4.8,4.6,5.2,5.3,4.6,5.2,4.8,4.1,5.7,5.2,4.8,6,4.8,4.4,5.8,4.3,6,4.8,4.3,5.1,6,4.5,4.6],"script":[3.2,3.2,2.6,2.3,2.8,3.4,2.6,3,2.4,2.1,2.8,2.7,2.5,3.3,1.9,2.2,3.1,2.5,3.3,2.9,2,2.7,3.2,2.1,2],"paint":[1.7,1.8,1.2,1.1,2.3,1.1,1.5,1.3,1.7,1.1,2.4,2.3,1.4,1.7,2.3,1.3,2.1,1,2.1,1.1,1.1,1.4,1.6,1.4,1.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[102.8,106.1,106.7,106.4,110.4,105.6,108.3,104.4,105.7,104.1,106.2,103.2,103.7,108.1,106.3],"script":[18.7,20.1,20.1,18.4,19.2,18.5,18.8,17.8,19.3,19.6,19.8,17.6,17.7,18,19.5],"paint":[82.3,83.7,83.5,84.5,89,84.5,88.4,84.1,82.6,82.2,83.8,83,84.5,88,84.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.3,12.8,13.3,12.8,12.4,12.4,12.1,13,13.1,12.2,12.1,12.7,12.3,12.6,12.2],"script":[1.8,1.7,1.9,1.7,1.7,1.8,1.7,2.5,1.8,1.6,1.7,2,1.6,2,1.6],"paint":[9.9,10.1,10.4,9.8,10.2,10,9.8,9.9,10.6,10,9.7,9.9,9.7,10.1,9.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[405.3,403,402.8,404.9,402.1,401.2,401.5,405.5,404,403.2,404.7,399.7,400.3,403,407.8],"script":[179,181.1,180.1,176.1,179.1,179.2,179.8,180.7,179.5,179.7,182.3,178,179.3,179.3,182.2],"paint":[218.5,214.8,215.6,221.4,215.8,214.9,214.3,217.6,217.3,215.8,215.2,214.6,214,216.6,218.2]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.2,36,36.1,36.8,35.9,36.3,36.4,35.7,35.7,35.8,36.7,36.1,36.2,36],"script":[8.4,8.5,8.5,8.4,8.5,8.1,8.5,8.5,8.4,8.4,8.5,8.5,8.6,8.6,8.4],"paint":[27,26.8,26.6,26.7,27.2,26.7,26.8,27,26.3,26.4,26.3,27.2,26.6,26.7,26.6]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,20.4,20,19.7,19.6,19.6,19.9,20.9,20.2,20,20.6,21,19,21.4,21.2],"script":[18.4,18.1,17.6,17.8,17.4,17.2,17.3,18.8,17.5,18,18.8,18.3,16.8,19.2,18.9],"paint":[1.3,1.4,1.5,0.9,0.8,2.1,2.1,0.6,1.9,1.2,1,2.4,1.9,1.3,0.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1685962677001953]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.165302276611328]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.766231536865234]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9219512939453125]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.0153112411499]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[46.9,39.4,44.4,46.7,38.9,44.4,43.3,38.8,45.9,40.8,38.8,38.9,40.3,38.7,38.8],"script":[19,17.9,18.5,18,18.2,17.4,18,18.3,17.6,18.2,17.9,18.3,19.1,17.9,17.8],"paint":[20.5,20.5,20.6,20.8,20.3,20.5,20.8,20.3,20.2,20.4,20.5,20.4,21.1,20.6,20.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[51.5,49.7,47.9,51.1,50.3,47.1,50,49.1,48.9,50.3,44.7,44,50.7,44,44.3],"script":[21.9,21.4,21.9,21.8,21.7,21.6,21.9,21.7,21.7,21.7,21.7,21.7,22.2,21.9,21.9],"paint":[21.7,22.7,22.2,22.2,21.9,21.6,22.3,22.5,21.8,22.2,22.6,21.9,21.9,21.9,22.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.9,39.2,23,39.2,38.7,23.6,22.7,37.9,23.7,36.6,38,22.6,23,38.8,38.5],"script":[12.4,13.7,12.1,13.7,12.4,11.6,11.5,12.2,11.6,11.5,12.6,10.9,12.6,12.8,11.8],"paint":[10.8,11.4,10.7,11.2,9.9,10,10.7,10.6,10,10.3,9.7,11.6,10.3,11.3,11]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.4,9.6,7.6,12.5,12.7,5,13.4,9.3,11.8,12,5.6,9.3,8.5,14.3,12.6,9.7,7.3,13,7.7,12,11.4,7.6,9.9,10.2],"script":[1.9,2.5,3.4,1.6,3,2.5,2.5,2.8,3,3.5,2.8,2.7,3.2,3.5,3.1,2.5,3.1,2.1,2.9,2.5,3.8,1.8,2.4,2,2.5],"paint":[2.5,2.1,2.1,2.5,1.9,1.3,1.2,1.9,1.1,1.7,1.8,2.7,2.1,1.9,2.4,1.5,2.3,1.7,1.1,2.3,1.3,2.6,0.8,0.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[109.7,124.2,123.1,127.5,125.8,108.1,122.7,122.8,124.5,108.1,127.1,124.2,123.2,127.2,121.8],"script":[24.2,24,21.9,26,24,24.3,23.1,24,25,22.7,24.6,22.8,24.4,24.9,22.6],"paint":[84.4,84.1,85.2,86,85.1,82.8,84.7,83.4,84.8,84.1,86.5,85.2,83.7,86.8,83.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.4,18.7,24.3,20.2,22.1,16.9,16.4,19.1,23.1,17.2,17.1,21.3,15.6,18.8,22.9],"script":[4.3,4.8,4.7,4.3,4.9,4.3,4.7,4.8,4.6,4.8,4.8,4.7,4.3,4.7,4.5],"paint":[11.1,10.8,11.1,11.1,12.1,10.5,10.9,11.1,11.3,11,10.8,10.9,10.3,10.4,10.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[467.6,466.1,464.7,469.5,466.1,464.1,464.6,466.9,466,464.6,462.6,465,470.3,470,464.4],"script":[243.9,243.3,241.5,246.6,242.4,241.4,242.9,241.2,243.9,241.7,241.9,241.4,246,247.7,243.3],"paint":[219.7,219.5,219.9,219.7,220.1,219.6,218.5,222.4,218.8,219.7,217.5,220.4,221,219.1,218]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.2,44.4,48.8,44,49.4,43.8,48.4,43.8,44.1,49,43.9,44.1,43.7,48.9,47.7],"script":[18.5,18.3,18.1,18.1,17.7,18,18,18.2,17.7,18,18,18.2,18,18.1,17.5],"paint":[25.6,25.8,25.1,25.5,25,25.4,25.2,25.2,25.7,25.3,25.5,25.5,25.4,25.9,25.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,21.9,23,23.1,23.4,38.2,38.7,39.8,21.2,22.4,20.9,37.7,23.2,39.7,38.2],"script":[20.7,19.9,21.5,21.5,22.1,21.2,21.3,22.4,18.9,19.5,19.7,20.3,22,22.2,21.2],"paint":[1.8,1,1.4,1,0.4,1,1.4,1.3,2.3,2,0.6,1.4,1.1,1.5,0.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4591541290283203]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.295771598815918]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.019558906555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9407882690429688]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.012826919555664]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[288.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.9,29.4,29.1,29.9,29.1,29.1,28.9,29.3,29.2,29.6,29.3,29.4,29.2,29.2],"script":[6.7,6.9,7.3,7,7,7.1,7.1,7,7,7,7.1,6.9,7.2,6.9,7],"paint":[21.5,21.4,21.6,21.5,22.3,21.5,21.5,21.3,21.8,21.6,21.9,21.8,21.7,21.7,21.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.9,31.9,32.9,32.4,33.2,32.4,31.8,32.5,32.3,32.4,31.9,32.5,32.5,31.9,32.4],"script":[9.6,9.1,9.7,9.7,9.7,9.6,9.3,9.7,9.3,9.4,9.5,9.5,9.6,9.4,9.3],"paint":[22.8,22.2,22.6,22.1,23,22.3,21.9,22.3,22.3,22.4,21.9,22.4,22.3,22,22.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,12.1,14.4,14.1,12.2,12.1,12,12.4,12.3,12.2,11.4,12.2,12.7,13.3,12.3],"script":[1.9,1.7,2.3,1.6,1.5,1.4,1.6,1.6,1.7,1.6,1.4,1.7,1.9,1.7,1.6],"paint":[8.2,9.4,10.7,11.5,9.5,9,8.5,9.6,8.2,9.3,9,9,9.9,10.6,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.1,3,3.3,3.2,4,2.8,2.8,3.2,2.9,2.6,2.9,3.4,2.9,2.7,2.8,2.9,3.6,2.6,2.8,2.9,3.1,3.3,3.4,2.7,3.4],"script":[0.9,0.9,1,1.3,1.3,1,0.9,1.3,0.6,1.2,1.3,1.4,1,0.8,0.6,0.7,1.2,1,0.9,0.2,1,0.7,0.9,1.1,1.2],"paint":[2,2,1.6,1.7,1.4,1.3,0.7,1.8,0.8,1.3,1.5,1.9,1.8,1,2.1,1.4,1.7,1.1,1.8,2.1,1.1,2.5,1.1,1,2.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.9,13.9,14.3,14.1,13.9,13.6,13.2,14.2,13.7,13.3,13.2,13.5,14.1,13.7,13.3],"script":[1.1,0.7,1,1.7,1.2,1.1,1.4,1,0.9,0.7,0.6,1.2,1.3,1.4,0.6],"paint":[10.3,12.2,12.2,10.3,11.6,11.6,11.2,12.2,10.8,11.4,11.6,11.1,12,11.1,11.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,10.8,11.1,11,11.1,10.7,10.5,10.7,11,10.9,11,10.8,10.9,10.4,10.8],"script":[0.6,0.6,0.7,0.7,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.4,0.6,0.5,0.5],"paint":[9.8,9.8,9.3,9,9.7,9.6,9.2,9.6,9.9,9.4,9.6,9.9,9.4,9.4,9.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[295.5,295.7,298.2,298.2,295.9,296.5,296,295.8,296,297.2,295.1,297.5,298.3,295.3,296.6],"script":[69.4,68.3,70.2,70.3,70.8,69.8,70.2,70.1,69.3,69.6,69.2,70.6,69.5,68.7,70.1],"paint":[219,220.2,220.7,220.5,217.9,219.6,218.7,218.4,219.3,220.3,218.8,219.8,220.7,219.4,219.1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,35.7,35.2,35.8,35.9,35.3,35.3,35.2,35.7,35,35.1,35.6,34.6,35.9,34.9],"script":[7.7,7.9,7.4,7.8,7.5,8,7.8,7.4,7.7,7.8,7.7,8,7.5,8,7.7],"paint":[26.7,26.9,26.8,27.1,27.4,26.5,26.5,26.8,27,26.2,26.4,26.6,26.2,26.9,26.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.4,12,11.3,12.5,12.7,11.4,11.9,12.2,11.9,13.5,13.1,12.6,11.9,11.9],"script":[9.7,9.8,10.2,9.4,9.9,10.5,9.9,9.9,10.2,9.7,11.2,10,10.4,9.8,9.9],"paint":[0.5,1,0.2,1,2.3,1.9,0.3,0.7,0.4,1,1.9,1.1,0.3,1.2,1.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5745954513549805]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524754524230957]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.56618595123291]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.457036018371582]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.163437843322754]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.9,28,27.7,27.3,28.1,27.8,27.9,28.2,27.8,29.1,27.7,27.8,27.3,27.6],"script":[5.8,5.9,6.2,6.1,5.7,6.3,5.9,6.2,6.3,6.1,6.3,5.9,6,5.8,5.9],"paint":[21.3,21.5,21.3,21.2,21,21.3,21.4,21.2,21.4,21.2,22,21.3,21.2,21,21.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.1,39.4,38.6,39.3,39.5,39.3,39.4,38.8,39.6,40.2,38.9,39.2,39.4,39.6],"script":[17.1,17,17.2,16.9,16.9,17.2,17.1,17.1,16.8,16.9,18.2,17.2,16.9,17.1,17.4],"paint":[22.2,21.5,21.7,21.1,21.8,21.7,21.6,21.7,21.4,22.1,21.4,21.2,21.7,21.7,21.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.5,13.2,13.1,13.4,13.5,14,13.7,15.9,14.2,14.2,13.1,13.2,14.1,14.1,13.8],"script":[3.3,3.3,3,2.9,3.9,2.8,4.1,3.9,3.5,3.6,3.1,3.4,3.1,3,2.6],"paint":[9.5,8.4,9,9.4,8.4,8.9,8.6,10,9.5,8.6,9.3,7.9,9.1,9.8,9.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.3,4.7,4.7,4.8,4.1,4.7,4.3,4,4.1,4.3,3.7,4.6,4.2,3.7,4,4,4.1,4,4.5,4.3,4.3,4.7,4.1,4],"script":[2.1,1.8,2.4,2.5,1.9,2.5,2.1,1.9,1.4,1.7,2.1,2.1,2.6,1.9,1.6,2,2.1,1.8,2,2,1.7,2,2.1,1.5,2.1],"paint":[1.4,1.6,1.7,2,2.8,1.5,2.5,1.7,2.5,2.2,2,0.7,1.1,1.4,1.2,1.9,1.7,2.2,1.9,2.4,2.5,2.2,2.4,2.5,1.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[17.3,15.2,15.3,14.7,15.9,15.6,17,15.6,15.4,15.4,16,15.6,14.8,15.7,16.4],"script":[2.9,2.6,2.5,2.7,2.2,2.3,2.4,2.6,2.6,2.6,3.2,3,2.4,2.5,2.9],"paint":[13.7,11.4,11.5,11,12.7,12.3,12,12.3,11.5,11.8,11.8,11.7,11.5,11.8,12.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.6,11.8,11.6,11.5,11.4,11.6,11.8,12.2,11.8,11.7,11.3,11.5,11.4,11.2],"script":[0.9,1,1.3,1,1.2,1,1.2,1.1,1.6,1.2,1,1.1,0.9,1.1,1],"paint":[9.3,10.2,9.8,10,9.5,9.7,9.6,10.2,10.2,10,10.2,9.6,10.3,9.7,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[287.8,287.4,288.7,287.7,286,289.2,287.7,287.9,286.3,291.3,288.4,288.1,291,288.8,292.3],"script":[57.9,62.4,59.9,62.7,62.2,59.8,58.5,62.4,58.8,59.3,58.9,59.1,59.7,63.4,59.2],"paint":[222.7,217.9,221.6,218,216.5,222.2,222.1,217.5,220.4,223.9,222.2,222,224.2,218.2,224.7]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.3,45.5,44.6,45,45.6,44.5,45.2,44,46.6,45.1,44.6,45,45.3,44.6,45.3],"script":[19,19.3,18.7,19.1,18.8,18.3,19.2,18.4,20.3,19.3,18.9,19.4,19.4,18.8,18.8],"paint":[25.3,25.3,24.9,25,25.9,25.2,25.1,24.7,25.3,24.8,24.7,24.7,25,24.9,25.6]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,11.2,11,10.4,10.7,10.3,10.4,11.3,10.8,11.8,11.9,10.4,11.2,10.4,10.4],"script":[8.5,9.1,9.3,8.5,8.3,8.7,8.6,9.2,8.5,9.8,9.4,8.4,8.7,9,8.5],"paint":[2.1,0.9,0.9,1.1,1.7,0.3,0.7,0.3,0.8,1,0.9,0.9,0.9,0.3,0.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5900392532348633]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5230064392089844]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6323060989379883]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6587820053100586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.013845443725586]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.1,25.8,26,26.2,26.5,26.2,26.4,26,26.4,26.4,26.5,26.3,26,26.4,26.7],"script":[5.2,5.2,5.2,5.2,5.2,5.3,5.7,5.3,5.3,5.4,5.2,5.3,5.2,5.3,5.3],"paint":[20.3,20.1,20.3,20.4,20.7,20.3,20.2,20.3,20.7,20.5,20.7,20.5,20.2,20.6,20.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,30,30.6,30.6,30.7,31.4,31.6,31.5,31,31.7,31.4,30.2,31,31.2],"script":[8,8.3,7.7,7.7,8,7.8,8.2,8.1,8.3,8.1,7.7,8.1,7.5,8.1,7.7],"paint":[23.1,22.6,21.9,22.5,22.2,22.4,22.8,23,22.6,22.5,23.6,22.9,22.1,22.5,22.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.9,11.5,11.3,11.3,11,10.9,11.3,11.5,11.6,11.7,11.2,12.9,11.3,11.3],"script":[1.9,1.8,1.5,1.5,0.6,1.4,1.5,1,1.7,1.2,0.9,1.2,1.5,1.4,1.5],"paint":[8.3,9.2,8.6,8.7,9.4,7.9,8.4,8.9,8.9,8.8,9.7,8.9,10.3,9,8.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3.2,2.5,2.8,3.2,3.2,3.2,3,3.4,3.1,2.8,2.9,2.8,2.7,2.9,3.5,3.3,3.7,2.9,3,3.3,3.3,2.8,3.5,3],"script":[0.8,1,0.9,0.8,1.2,0.9,1.1,0.6,1.6,0.2,0.7,0.8,0.9,1,0.2,1.3,1.4,1.1,1.4,0.8,1.2,1.5,1,1.2,0.9],"paint":[1.5,2.1,1.5,1.9,1.2,1.4,1.5,1.5,1.6,2.8,1.1,1.5,1.8,1.6,1.6,2,1.8,1.6,0.7,1.2,1.3,1.2,1.3,1.5,1.4]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.9,15.9,16.1,15.5,16.3,16.7,15.8,15.5,15.3,15.3,14.5,16.8,18.8,15.4,15.8],"script":[1.5,1.8,2.5,2,3.1,2.3,2.3,2.1,2.4,2.6,2,1.6,3.3,2.7,2.2],"paint":[14.2,13.1,12.5,12,11.9,13.1,12.3,11.1,11.7,11.5,11.4,14,14.4,11.3,11.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.9,11.6,11.5,11.8,12.1,11.9,11.6,11.7,11.7,11.5,11.7,11.9,11.5],"script":[1.2,1.2,1.2,1.2,1.1,1.1,1.1,1.2,1.2,1.2,1.2,1.1,1.2,1.1,0.8],"paint":[9.4,9.5,10.2,10,9.7,10.1,10.3,10.4,9.9,9.7,9.9,9.8,9.9,10.2,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294,292.8,303.4,304.9,294.9,294.7,302.9,304.9,293,301.2,302.1,292.4,301,304,294.8],"script":[68,67.6,68.4,67.4,68.8,68.6,67.5,67.7,68.3,67.9,68.8,67.4,66.9,67,67.8],"paint":[218.7,218,227.6,230.5,219,218.9,228,228.9,217.3,226.2,226.2,217.8,226.7,229.9,219.8]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.1,32.9,31.7,31.7,31.5,30.9,32.8,31.3,31.2,32.2,31.7,30.8,33,31.8],"script":[5.7,5.6,6.7,6.1,6.7,6.4,5.8,6.7,5.5,6,6.6,6.3,5.5,6.8,5.9],"paint":[24.8,25.5,25.3,24.6,24.2,24.2,24.2,25.1,24.8,24.3,24.6,24.5,24.4,25.3,24.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,9.8,11.3,12,10.8,11.4,10.5,10.2,10.9,11.3,9.9,10.2,11.3,10.3],"script":[7.7,8.4,7.5,8.7,8.5,9.1,9.2,8.7,8.6,9.3,8.6,8,7.7,9.1,8.2],"paint":[1.7,0.3,1.7,1.7,1.7,0.3,0.3,1.6,0.9,0.5,2,0.8,1.2,1.5,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5166263580322266]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.848897933959961]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7722158432006836]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8737955093383789]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.89602756500244]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.4,29.9,30.5,29.6,29.5,29.5,29.7,30.3,30.2,29.4,30.1,29.8,30,29.7],"script":[7.8,7.8,8.2,8.4,7.8,7.8,7.8,7.8,8.3,8.4,7.7,7.8,7.8,7.9,8.1],"paint":[21.2,21.2,21.2,21.5,21.3,21.2,21.2,21.4,21.4,21.3,21.2,21.7,21.5,21.6,21]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.1,35.6,35.2,35.7,35.1,34.9,35.6,35.5,35.3,35.7,35.5,34.7,35,35.1,36.2],"script":[12.3,12.5,12.2,12.5,12.2,11.7,11.9,12.4,11.9,12.5,12.1,11.9,12.1,11.8,12.3],"paint":[22.2,22.6,22.4,22.6,22.3,22.7,23.1,22.5,22.8,22.5,22.7,22.3,22.3,22.7,23.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.8,16.4,16.5,18,16.7,16,17.2,15.2,17.5,16.9,16.2,16.5,18.1,16.4,17.2],"script":[5.4,5.3,5,5.9,5.5,5.1,5.2,4.5,5.9,5.4,5.2,5.5,5,5.6,5.4],"paint":[9.7,8.1,8.9,10.4,9.5,8.8,10.1,9.5,9.3,9.8,8.9,9,11,9.3,8.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.3,7,6.6,6.7,7,7.1,6.3,6.8,6.8,8.4,6.1,7.6,6.9,6.9,7.3,6.8,6.8,6.7,7.7,7.3,6.8,7.8,6.7,6.6],"script":[4.9,4.8,4.4,4,3.8,4.5,4.5,4,4.3,4.6,5.1,4,5,4.2,4.7,4.9,4.4,4.2,4.8,4.9,4.9,4.2,5,4.2,3.9],"paint":[1.6,1.6,1.6,1.9,2.8,1.6,2,1.7,1.7,2.1,1.2,1.3,1.2,1.7,1.5,1.3,1.4,1.7,1.7,1.5,1.7,1.4,1.9,1.7,1.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.2,18.2,18.3,18.4,18.9,17.9,18.8,18.5,18.7,17.2,17.8,18.3,17.6,18.5,17.8],"script":[4.5,4.2,4.3,4.8,4.2,4.5,4.9,4.5,4.8,4.1,4.3,3.9,4.7,5,4.3],"paint":[12.9,12.5,12.8,12.2,13.5,12,12.6,12.1,12.6,12.1,11.7,13.1,11.9,12.6,11.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,12.8,12.8,13.3,12.6,13.3,12.8,12.7,12.8,13,12.9,13.2,13.3,12.8],"script":[2.2,2.4,2.1,2.3,2.7,2.4,2.3,2.3,2.4,2.4,2.4,2.1,2.5,2.2,2.3],"paint":[10,9.8,10.1,9.6,9.7,9.6,10.5,9.9,9.7,9.2,9.9,10.3,10.1,10.5,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[315.7,315.6,313.9,313.9,316.5,317.9,315.2,315.2,314.5,315.6,314.7,315,315.8,315.1,315.6],"script":[85.3,86.1,85,85.6,87,85.4,85.5,85.8,86,85.3,86.8,85.6,86.5,85.7,87],"paint":[221.7,221.7,221.2,220.5,221.7,224.4,221.9,221.6,220.7,222.3,220,221.6,221.6,221.7,220.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,36.2,36.1,35.6,36.3,35.9,36,36.2,36.5,35.8,35.5,35.4,35.5,36,35.7],"script":[9.7,9.7,9.4,9.5,9.9,9.4,9.5,9.8,9.7,9.7,9.3,9.4,9.4,9.7,9.7],"paint":[26.5,25.5,25.7,25.1,25.4,25.5,25.5,25.4,25.8,25.1,25.2,25,25.1,25.4,25]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.3,16.4,17,17.7,16.5,17.2,16.9,16.4,16.6,18.2,16.2,17.2,16.7,16.9],"script":[15.5,15.5,14,14.6,15.4,14.9,15.1,15,14.6,14.3,16.4,14.4,15.9,14.6,14.9],"paint":[0.3,0.2,2,0.9,0.9,1,1.1,0.3,0.7,1.3,0.5,1,0.3,1.4,1.8]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6189994812011719]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.743117332458496]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7696313858032227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9182825088500977]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.807257652282715]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.4,24.3,25.2,24.5,24.3,25.2,26,24.1,24.2,24.6,24.3,24.2,24.3,24],"script":[2.4,2.4,2.4,2.5,2.4,2.4,2.9,2.9,2.4,2.4,2.5,2.5,2.5,2.5,2.4],"paint":[21.9,21.6,21.5,22.3,21.7,21.4,21.9,22.6,21.3,21.5,21.8,21.5,21.3,21.4,21.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.1,27.4,26.9,27.2,27.1,28.3,27.3,27.3,26.9,27.1,27.4,27.1,26.6,27.1],"script":[4.5,4.4,4.7,4.4,4.4,4.5,4.8,4.7,4.5,4.6,4.4,4.4,4.5,4.4,4.3],"paint":[22.6,22.3,22.2,22.1,22.4,22.2,23.1,22.3,22.3,22,22.3,22.5,22.2,21.8,22.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.3,10.7,11.4,10.9,10.9,10,11.1,10.1,10.5,11.1,10.3,11,12.4,10.7],"script":[1,0.8,0.4,1.2,0.7,0.7,0.1,0.8,0.6,0.2,0.7,0.6,1.1,0.5,0.2],"paint":[9.6,9,9.4,8.9,9.3,9.1,8.8,9,7.9,9.4,9,9,8.6,10.4,9.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,3,2.3,2.8,2.4,2.9,2.9,3.1,3.1,2.9,3,2.5,2.2,2.7,2.2,3.1,3.5,3,3.1,3.1,3.3,3.2,2.4,2.5],"script":[1,1,0.8,0.2,0.9,0.6,0.8,0.8,0.5,0.9,0.2,0.8,0.9,0.6,0.8,0.9,0.9,0.9,0.8,0.9,0.9,1.3,0.8,0.1,0.1],"paint":[2.1,1.6,2.1,1.9,1,1.2,1.3,1.3,1.6,1.5,1.7,2.1,0.9,0.9,1.1,1.2,1.1,2.1,1.3,1.4,1.6,1.8,2.3,1.5,2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.6,13.8,13.9,13.6,15,14,14.4,14.6,13.1,14.5,14,13.9,14],"script":[1.1,0.8,0.6,0.2,0.8,1,0.9,0.8,1.2,1.1,0.9,1,1.2,0.6,0.8],"paint":[11.4,11.5,11.7,12.1,11.8,11.5,13.4,11.9,12,12.4,11,11.9,12.3,12.4,12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.5,10.8,10.6,11.5,10.3,10.3,10,10.7,10.5,10.4,10.9,10.4,10.8,11],"script":[0.3,0.3,0.5,0.4,0.5,0.2,0.3,0.2,0.5,0.3,0.4,0.4,0.2,0.5,0.5],"paint":[9.9,9,9.8,9.4,10.1,9.3,9.3,9.5,9.7,9.7,9.3,9.7,9.6,9.7,9.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[259.9,260.1,259,258,260,258.6,259.7,258.8,258.7,261.6,260.4,261.3,260.3,258.7,259.4],"script":[25.9,25.9,27.1,26.4,26.6,26.2,26.2,26.5,26.2,26.9,26.9,26,26.6,25.8,26.3],"paint":[226.6,226.2,224.6,224.2,225.9,225.3,226,224.8,225,227.4,226.3,227,226.4,225.4,225.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,28.8,27.7,27.6,27.7,27.7,27.6,28.3,27.9,27.5,28,29,27.7,27.9,27.7],"script":[2.4,2.5,2.3,2.3,2.4,2.5,2.3,2.3,2.3,2.3,2.4,2.5,2.4,2.4,2.5],"paint":[24.6,25.5,24.6,24.5,24.5,24.5,24.5,25.2,24.8,24.5,24.8,25.7,24.5,24.8,24.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,9.6,9.2,9.4,9.9,9.7,10.1,10.3,9.2,10,9.2,9.1],"script":[8,7.9,7.6,7.9,7.2,7.7,7.8,7.9,7.2,7.4,7.8,7.6,7.9,7.8,7.7],"paint":[1.1,0.9,1.8,0.7,1.4,0.9,0.7,0.7,1.8,1.1,1.1,0.3,1,1.2,0.3]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5930547714233398]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56527042388916]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.614274024963379]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7581081390380859]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.025753021240234]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27.2,27.3,27.3,27,26.8,27.1,27.1,26.9,26.9,27.2,27.2,27.3,27.4,27.8,27.4],"script":[5.2,5.5,5.6,5.1,5.1,5.3,5.2,5.1,5.2,5.4,5.1,5.2,5.7,5.8,5.1],"paint":[21.4,21.3,21.2,21.3,21.2,21.3,21.4,21.2,21.2,21.2,21.6,21.6,21.2,21.4,21.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.5,32.4,31.6,31,30.3,30,32.3,30.8,32.2,30.9,32.2,30.6,32.4,32.1],"script":[8.4,8.3,8.9,8.2,8.2,7.6,7.5,8.6,8.2,8.6,7.9,8.6,8,8.8,8.6],"paint":[22.6,22.6,23,22.8,22.2,22.1,21.9,23.1,22,23,22.4,23.1,22,23,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.8,12.7,11.5,10.7,11.4,11.4,11.3,11.6,12.2,11.7,11.3,12.5,12.2,11.4],"script":[1.3,2.1,2.4,1.5,1.2,0.9,1.7,1.9,1.8,1.7,1.5,1.7,1.9,1.9,1.4],"paint":[9.6,8.5,9.1,8.9,8.3,9.3,8.1,7.9,8.6,9.2,9.1,8.9,9.6,9.7,9.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.6,2.7,2.8,2.8,2.6,2.9,2.5,2.5,2.8,2.6,2.8,2.8,2.6,1.9,2,2.9,3.1,2.8,2.6,2.4,2,3,3.4],"script":[1,1,0.1,0.8,1.2,0.9,0.1,0.6,0.1,0.7,0.6,0.1,0.1,0.5,0.1,0.1,0.3,0.9,0.8,0.1,0.1,0.1,0.1,1.2,0.9],"paint":[1.2,2.1,1.9,1.8,1.1,1.6,2.4,2.2,1.9,1.3,1.5,1.6,2.5,2.2,1.6,1,1,1.8,1.6,1.5,2.1,1.4,1.1,1.3,1.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[15,15.4,14.4,14.7,15.7,14.2,15.7,13.8,14.8,14.4,16.7,14.1,14.1,14.1,14.2],"script":[1.3,1.5,1.6,1.7,1.2,1.6,2,1.5,1.5,1.1,1.7,1.3,1.4,1.4,1.5],"paint":[11.9,12.9,11.1,11.6,13,12,12.6,11.4,12.5,12.1,13.9,11.8,11.8,11.4,11.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.8,11.2,11.2,10.9,11.3,10.9,11,11.1,10.8,10.9,11,10.9,11.4],"script":[1,0.8,0.9,0.9,0.7,1,0.9,0.7,0.8,1,0.7,0.7,0.7,0.7,0.9],"paint":[9.3,9.8,10.3,9.4,10,9.3,9.7,9.5,9.6,9.6,9.2,9.5,10,9.6,9.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[378.1,392.1,374.1,384.1,379.7,380.8,386.8,379.2,378.8,378.2,383.6,386.6,388.3,378.9,382.9],"script":[152.6,161.7,152,158.8,154.7,156.4,161.3,154.2,153.6,152,160.8,160.9,161.6,151.1,158.2],"paint":[218.3,223.2,215,217.4,217.8,217.3,217.8,217.8,217.9,219.1,215.7,218.2,218.9,220.6,217.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,32.6,32.6,31.9,31.6,32.2,31.5,31.6,32.6,31.7,31.4,31.3,31.3,32.1,31.9],"script":[5.7,6,5.9,6.1,5.7,5.8,5.6,5.7,6,5.8,5.6,5.6,5.7,5.7,5.8],"paint":[24.8,25.7,25.7,25,25,25.4,25,25,25.6,25,24.9,24.8,24.6,25.5,25.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,12,13.8,13.8,11.6,11.5,11.6,11.8,11.7,12.1,12.5,12,11.1,11.2,11.7],"script":[9.5,10,11.5,11.4,10.1,9.9,9.7,9.5,9.5,10.1,10.7,10,9.3,9.7,9.8],"paint":[0.5,0.9,1.6,1,0.6,0.2,0.9,0.6,1.7,1.2,0.9,0.7,1,0.6,0.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5986251831054688]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7760190963745117]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7920351028442383]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8317422866821289]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.40744113922119]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.1,27.2,26.8,26.7,27,26.7,27.1,27.3,26.8,26.7,26.4,26.9,27.2,27,27.1],"script":[6.7,6.1,6.1,6,6,6,6.2,6.1,6.1,6,5.7,6.1,6,6.1,6],"paint":[21.8,20.6,20.3,20.2,20.5,20.2,20.4,20.6,20.2,20.1,20.1,20.2,20.7,20.4,20.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[35.4,34.5,34.6,34.5,35,34.1,34.5,34.5,34,34.6,34,34.9,35,34.1,34],"script":[10.4,10.2,10.5,10.3,10.4,10,10.4,10.2,10.1,10.3,10,10.6,10.3,10.1,10],"paint":[24.3,23.7,23.5,23.7,24,23.4,23.6,23.7,23.2,23.7,23.5,23.8,24,23.4,23.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.8,11.5,12,12.7,10.8,11.8,11.8,12.2,11.3,12.4,12.1,11.6,12.4],"script":[0.9,0.9,1.5,1.1,1,1,1.1,0.6,1,1.5,1.1,1.1,0.8,0.9,1.3],"paint":[9.2,10.3,8.9,9.4,10,10.4,8.7,10.2,9.5,9.7,8.9,10.3,9.8,9.5,10]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.2,2.5,2.1,3.1,2.6,2.4,2,1.9,2.6,2.7,2.1,3,2.4,2.7,2.1,2.4,2.8,2.3,2.4,3.2,2.7,2.7,1.9,2.7],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0.6,0,0,1,0,0,0,0],"paint":[2.5,1.1,1.4,1.4,2,2.5,2.3,1.8,1.7,1.9,2.1,1.5,2.3,2,1.3,1.5,2.3,1.6,2.2,1.8,2.1,1.6,2.5,0.9,2.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,13.3,13.1,12.5,13.1,13.7,13.9,14.2,13,13.6,13.4,13.3,13.2,13.3],"script":[1,0.1,0.1,0.6,0.3,0.4,0.9,0.5,0.8,0.1,0.5,0.1,0.7,0.5,0.5],"paint":[11.9,12.5,12,10.8,11.1,11.8,11.7,11.2,11.7,11.9,12.2,12.1,11.9,12,11.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.6,11,10.7,10.4,10.7,10.6,10.6,10.5,10.4,10.6,10.9,10.4,10.5],"script":[0.3,0.1,0.2,0.4,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.6,9.7,10,10.3,10,9.6,9.8,9.7,9.9,9.9,9.8,9.8,10,9.6,9.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[309.4,308.6,309.7,312.8,309.4,308.5,310.6,311.6,309.4,309.4,311.4,310.9,310.2,308.6,309],"script":[78.2,76.9,77.5,79.1,77.7,76.9,78.3,78.9,78.2,78.1,77.4,77.8,78.2,77.5,77],"paint":[223.3,224.1,224.1,225.4,223.9,223.7,224.5,224.9,223.8,223.5,226,225.7,224.2,223.3,224.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.7,34.1,34.2,33.9,33.8,34.7,33.6,34.4,33.7,34.3,33.6,33.4,33.9,33.8,34.5],"script":[7.2,7.5,7.5,7.3,7.2,7.5,7.3,7.4,7.3,7.7,7.3,7.2,7.4,7.2,7.6],"paint":[25.5,25.6,25.7,25.7,25.6,26.2,25.3,26,25.4,25.7,25.4,25.3,25.6,25.7,26]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.1,14.6,14,15.3,14.3,14.4,13.5,14.1,15.4,15.1,17.5,14.6,13.7,13.6,15.3],"script":[12.7,13.2,11.8,13,12.3,12.5,11.6,11.9,13.4,12.3,15.2,11.9,11.6,11.7,13.1],"paint":[0.3,0.2,1,1,1,0.9,0.5,1.1,1.3,2.1,1.3,1.2,1.5,0.9,1.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6555957794189453]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3754215240478516]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3842382431030273]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0908498764038086]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.84324836730957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.5,28.1,28.1,28.3,28.3,28.3,27.9,27.9,28.3,28.3,28.4,28.9,28.1,28.8],"script":[7.6,7.1,7.1,7.1,7,7.2,7.3,6.8,6.8,7.1,6.8,7.1,7.1,7.2,7.2],"paint":[21.7,20.8,20.3,20.4,20.7,20.6,20.5,20.5,20.6,20.6,20.9,20.8,21.2,20.4,21]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.5,35.8,34.7,34.6,35.8,34.2,34.3,35,34.9,33.8,34.8,35.1,35.4,35.6,33.8],"script":[11.4,11.4,11,10.9,11.6,10.8,10.8,11.8,11.7,10.7,11,11.8,11.1,11.3,10.5],"paint":[22.5,23.7,23.1,23.1,23.6,22.8,22.9,22.5,22.6,22.5,23.1,22.7,23.7,23.7,22.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,13.7,12.5,12.6,14.3,13.8,12.8,14.5,16.4,14.2,13.7,13.1,15.1,13.7,12.8],"script":[2.2,2.9,2.4,2,2.7,2.9,2.4,2.7,3.9,2.5,2.8,2.2,2.5,2.5,2.5],"paint":[9.6,9.4,9.2,8.9,10.9,9.1,8.8,10.8,10.9,10.4,9.1,9.9,11.1,10.1,9.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.5,3.9,3.9,3.6,4.9,3.3,3.5,3.7,3,3,3.9,7.6,3.8,3.8,3.3,3.5,3.4,3.7,3.1,3.4,3.3,4.4,4.1,3.1],"script":[1.2,1,1,1.6,1.3,1.3,0.9,1.1,2,1.6,0.9,0.9,1.5,1.7,1.6,1.4,1.5,1,1.3,1,1.3,0.8,2.2,0.3,1.1],"paint":[2.1,1.9,2.8,1.5,2.1,2.3,1.9,1.4,1.1,0.9,1.6,1.8,1.1,1.3,1.6,1.3,1.1,1.9,2.3,1.4,1.3,1.4,2,2.1,1.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.5,15.6,14.2,15.6,14.3,15.6,15.4,15.4,14.8,15.1,14.2,15.1,15,14.3,15],"script":[1.7,2.1,1.1,1,1.5,1.5,2.2,1.8,1.2,1.4,1.4,1,1.7,1.5,1.5],"paint":[12.7,12.4,11.9,13.7,11.4,12.5,12,12.4,12.7,12.6,11.9,12.5,11.6,11.6,12.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11,11.4,10.7,11.3,10.9,11.7,10.5,11.1,11.2,11.2,10.9,10.6,10.6,11],"script":[0.3,0.3,0.5,0.3,0.4,0.5,0.6,0.2,0.5,0.5,0.5,0.3,0.3,0.4,0.3],"paint":[9.9,10.2,10.6,9.9,10,9.8,10.6,9.6,9.7,10,9.9,9.8,9.3,9.5,10.3]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.1,306.4,305.6,306.5,308.2,307,308.6,306.6,305.9,307.7,305.3,306.5,306.2,304.7,306.8],"script":[76.3,76.4,75.9,76.1,76.4,76.7,76.4,76.4,76.4,75.3,75.6,75.9,75.5,75.1,76],"paint":[223.4,222.6,222,222.9,223.6,222.9,224.2,222.8,222.2,224.8,222.3,223,223.3,222.3,223.2]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.6,34.2,34.5,33.8,34.1,34.2,33.8,34.5,34,33.3,34.1,34.4,34.5,34.2],"script":[7.6,7.7,8,8,7.7,7.8,7.8,7.9,7.8,7.8,7.7,7.7,8.1,7.7,7.8],"paint":[24.9,25,25.3,25.5,25.2,25.3,25.4,25,25.7,25.2,24.6,25.4,25.3,25.7,25.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,15.7,14.4,15.5,15.3,14.9,15.6,15.3,15.8,15.1,15.8,15.4,15.4,15.3,15.6],"script":[13.8,13.7,12.4,12.8,12.8,13.1,13.4,13.7,13.7,13.1,13.5,12.8,13.4,13,13.2],"paint":[0.3,0.6,1.2,1.7,1,1,0.9,0.4,1,1.2,1.2,0.9,1.8,0.9,1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9399089813232422]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.937980651855469]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048296928405762]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.135258674621582]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.631184577941895]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.4,31.3,39.2,30.7,29.9,30.5,31.7,32.4,39.9,39.7,29,29.8,38.1,30.1,32.7],"script":[5.2,5.4,5.4,5.2,5.3,5.4,5.3,5.6,5.2,5.4,5.2,5.5,5.5,5.6,5.6],"paint":[21.1,21.5,21.1,21.3,21.7,21.2,21.6,21.4,22.2,21.1,21.5,21.4,20.6,21.4,21.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.8,31.8,35.4,31.1,37.9,37.7,37.9,38.6,32.2,34.1,36.7,35.5,36.1,31.2],"script":[8.1,8.3,8,8,8.3,8.3,8.3,8.9,8.8,8.6,8.4,9,8.6,8.1,8.3],"paint":[21.9,22,21.9,21.8,22.3,21.9,22.1,21.9,21.9,22.2,22.5,22,21.7,22.2,22.4]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.3,31.1,32.2,31.6,33.1,34,33.3,32.5,33,29.8,32.9,31.2,35,32.6,31.4],"script":[3,3.4,3.3,2.7,3.3,3.2,2.2,3.9,4.2,2.7,2.9,1.8,2.8,3.3,2.5],"paint":[13.5,11,12.6,12.3,12.1,12.8,13.2,10.5,11.9,11.7,11.5,12.8,12.9,11.2,13]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[15.5,11,9.8,7.1,10,13.4,11.5,10.1,8.3,10.1,6.7,11.5,11.4,8.9,9.5,8.8,8.9,11.7,11.1,10.7,10.2,9.6,12.7,14,13.4],"script":[2.7,2.6,2.9,2.1,1.5,3.4,1.9,2.4,2.2,2.1,1.8,2.4,2.1,4.2,2.1,1.3,3,1.3,2,1.7,3,1.1,1.6,1.2,2.3],"paint":[3.2,3.7,2.9,3.2,3,2.6,3.7,3.8,3.6,2.8,2.8,4.3,4.1,3.1,3.4,3.3,3,2.3,2.4,2.5,3.3,3.7,2.6,3.5,2.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[34.8,34.8,31.9,32.9,33,34.4,34.4,32.1,33.3,33.3,37.5,31.7,32.3,35.2,35.4],"script":[1.7,2.1,1.2,2.5,1.5,1.8,2.4,1.7,2.9,2.1,2.3,1.4,1.4,1.9,1.6],"paint":[16.6,13.5,14.4,14.2,13.6,15,13.6,13,15.4,15.6,17.6,14.1,13.5,15.9,16]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,13.8,12.8,13.6,13.9,13.8,13.7,13.8,13.4,16.9,13.8,17.5,15.4,16.2,13.2],"script":[1.4,1.8,1.1,1.3,1.5,1.4,1.8,1.9,1.5,0.8,0.9,0.9,0.9,1.5,1.1],"paint":[11.3,10.7,10.6,11,11.2,11.2,11,10.7,10.8,11.6,10.8,11.6,10.9,10.7,11]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[277.7,273.3,279.2,272.7,278.3,272.9,276.1,276.9,271.3,271.7,275.8,271.7,274,279.4,269],"script":[49.9,50.2,50.4,51,49.1,49.8,49.3,49.8,49.8,50.7,49.6,49.1,50.9,50.4,48.3],"paint":[219,219,217.8,217.3,218.6,219.2,216.8,218.7,217.6,217.1,217.6,218.8,219.2,219,216.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.1,39.5,35.6,37.8,36.3,39.1,40.4,37.7,38.6,38.2,38,37.4,38.6,37.1,37.4],"script":[5.5,5.1,4.9,5.2,5,5.2,4.8,5.4,5.2,5.3,5.1,5.1,5.2,5.2,5],"paint":[25.7,24.9,24.9,26.3,25.6,25.9,25.2,26,25,25.6,25.1,24.7,25,25.8,24.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[16,13.4,16.9,36.1,35.9,36.8,36,36.1,17.2,36.2,16.2,36.5,15,39,36.6],"script":[12,10.5,12.4,10.6,11.7,10,9.9,9.7,12.8,11,12.6,11.8,11.5,13.7,11.5],"paint":[1.9,1.2,2.7,3.8,1.5,3.1,2.3,2.2,1.4,2.1,2.8,2.4,2.8,2.6,2.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9799919128417969]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.601199150085449]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6909961700439453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.193359375]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.856722831726074]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[98.2]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.6,54.8,54.8,54.3,54.8,54.9,54,54.3,54,54.1,54.1,54.2,54.8,54.7,54.7],"script":[30.7,30.4,30.3,30.1,30.3,30.6,30.1,30.2,29.8,30.2,29.9,30.2,30.7,30.5,30.7],"paint":[23.5,23.9,24,23.6,23.9,23.8,23.4,23.7,23.6,23.3,23.8,23.5,23.6,23.7,23.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.3,68.2,67.7,68.2,67.8,67.7,68.3,67.5,67.6,67.9,68.6,68.9,68,68,67.5],"script":[44.8,44.3,44.2,44.6,44,44.1,44.7,44.1,44.3,44.2,45.2,45.3,44.2,44.5,44.3],"paint":[23,23.4,23,23.1,23.3,23.1,23.1,22.9,22.8,23.2,22.9,23.1,23.3,23.1,22.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[42.2,41.5,41.1,40.6,41.6,42.1,41,42.1,40.6,41.5,43.2,40.9,41.5,42,41.6],"script":[28.6,28.6,29,28.7,29,29,28.6,29.2,28.1,28.3,30,29,28.8,29.2,28.2],"paint":[12.2,11.4,11,10.3,11,11.7,11,12.2,10.9,11.6,11.7,10.1,11.2,11.4,12.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[29.2,29,28.3,29.1,28.4,29.3,29.3,28.4,28.6,28.6,28.5,28.9,29,29.6,28.6,28.4,29.3,28.5,29.1,29.1,28.8,29.1,29,29.2,28.6],"script":[26.2,25.9,25.5,26.6,26,26.7,26.5,26,26.2,25.8,25.9,26.2,26,27.1,26.2,26,26.3,26.1,26.1,26.6,26,26.4,26.4,26.4,26.3],"paint":[1.9,2.3,2.1,2,2.2,1.6,1,1.5,1.7,1.9,1.2,1.9,2,1.5,2.2,2.3,1.7,2.2,1.8,1.8,2.6,1.5,1.6,1.6,1.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[67.9,68.8,69,66.1,69,67.9,67.3,65.2,67.9,68,67.4,67.9,68.1,70.3,66.7],"script":[51,51.4,51.2,51.2,51.9,51.1,51.8,50.4,51.9,50.9,52.1,52.3,52.2,51.8,51],"paint":[15.1,15.3,16.6,14.2,15.2,15.2,13.6,13.3,15.3,15.5,14,14.2,14.8,16.7,13.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,24.1,23.8,23.7,23.7,23.5,23.7,23.5,23.3,23.8,23.1,23.1,23.5,23.2,23.8],"script":[12.3,12.8,12.4,12.7,12.5,12.3,12.5,12.5,12.4,12.8,12.3,12.2,12.6,12.3,12.7],"paint":[10.7,10.7,10.8,10.1,10.6,10.8,10.7,10.5,10.4,10.3,10.2,10.3,10.4,10.3,10.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1248.8,907.3,1109.2,1174.6,1281,920.4,1120.3,1327.2,1278.7,974.1,1077.3,1313.3,1275.2,1078.5,861.1],"script":[993,650.6,851.7,920.7,1022.8,662.1,866.6,1070,1022.6,715.4,819.7,1056.7,1018.3,821.2,603],"paint":[247.3,248.6,249.5,245.7,250,250.1,245.3,248.9,248,250.5,249.3,248.6,248.3,249.2,249.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.5,68.9,68.9,68.5,68.4,68.4,68.3,68.1,68.3,68.6,69.1,68.4,69,69,68.6],"script":[38.1,38.1,37.9,37.9,37.7,38.1,37.8,38,37.9,38.2,38.3,38.1,38.2,38.2,38],"paint":[29.4,29.8,30,29.6,29.7,29.4,29.4,29.1,29.4,29.5,29.7,29.3,29.7,29.7,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,26.2,25,25.2,24.8,25.3,25.2,26.8,25.9,27.2,27.2,25.9,25,26.9,25.9],"script":[23.6,24.3,24.3,23.6,23.6,23.8,23.3,25.3,24.2,25.3,25.1,24.5,23.4,25.8,24.4],"paint":[0.3,1.6,0.6,0.7,1.1,1.4,1.8,1.1,1.6,1.8,1.3,1.2,1.1,0.3,1.4]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7831344604492188]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.507598876953125]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.20376205444336]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.345932006835938]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.56476402282715]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[383]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.4,26.9,26.6,26.2,26.4,26.9,26.4,26.8,26.8,26.1,26.4,26.5],"script":[4.3,4.4,4.4,4.5,4.8,4.5,4.4,4.4,4.7,4.4,4.5,4.6,4.4,4.5,4.4],"paint":[21.3,21.4,21.6,21.6,21.7,21.7,21.4,21.6,21.8,21.6,22,21.8,21.3,21.5,21.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30,30.2,30.2,30.3,29.9,30.8,31,31.1,29.8,30.4,30,29.9,30.1,30.4,30.6],"script":[6.9,7.1,7,7,6.9,7,7.2,7.4,7,7.2,7,7,7.1,7,7.1],"paint":[22.5,22.5,22.6,22.6,22.4,23,23.2,23.1,22.3,22.6,22.4,22.4,22.5,22.7,23]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,11.5,12.2,11.6,11.3,12.7,12.3,11.8,11.9,11.6,11.8,11.6,11.5,11.6],"script":[1.6,1.8,1,1.9,1.5,1.3,2.1,1.8,2.1,1.4,1.6,2.6,1.8,1.6,2.1],"paint":[9.7,9.6,9,9.6,8.6,8.4,9.4,9.5,8.8,9.5,9,8.5,7.8,8,8.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,3.7,4.5,3.3,3.4,3.3,4.1,3.7,3.7,3.8,3.9,3.7,3.5,4.1,3.6,3.7,3.6,4,3.6,3.4,3.8,3.4,3.2,3.4,3.6],"script":[1.5,1.4,2.4,1.2,1.8,1.6,2,1.5,1.9,1.8,1.2,1.9,1.6,2.1,1.7,1.2,1.4,1.9,1.3,1,1.2,1.2,1.2,1.6,1.3],"paint":[1.6,2.2,1.6,1,1.4,1.6,1.5,2.1,1.7,1.5,2.5,1.3,1.8,1.2,1.3,0.5,1.6,1.4,1.8,1.2,2.5,2,1.3,1.1,2.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.7,15.2,14.3,15.3,14.4,14.4,15.3,15.2,16.2,15.9,14.1,14.3,14.5,15.7],"script":[1.8,1.8,1.8,1.4,1.9,2,1.6,1.8,2.5,2,1.6,1.6,1.6,1.6,1.6],"paint":[11.3,11.9,11.5,10.9,12,11.1,12.3,12.8,11.5,12.8,13.2,11.9,10.2,11.7,12.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.3,11.5,11,11.5,11.4,11.5,11.1,12.2,11.1,11.2,11.4,11.3,11],"script":[1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.2],"paint":[9.6,9.4,9.8,9.7,9.5,9.5,9.6,9.6,9.2,9.9,9.4,9.2,9.7,9.5,9.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[282,280.5,281,281.3,281,282.2,279.2,281.2,278.6,279.4,277.9,279.7,278.9,278.8,278.5],"script":[45.5,44.6,44.3,45.9,45.2,46,44.8,46,44.8,44.7,45.5,44.8,44.9,44,45.2],"paint":[228.5,228.6,229.1,228.3,227.7,228.8,227.3,228.1,226.7,227.5,225.1,227.7,226.8,227.6,226.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.7,32.3,32.3,33,31.3,31.7,31.7,32,31.7,32.5,31,31.9,31.4,31.7],"script":[4.8,4.6,5.1,5,5,4.6,5,4.5,5,5,5.1,4.5,5,4.8,4.6],"paint":[26.2,26.3,26.3,26.3,27.1,26,26,26.4,26.2,25.9,26.5,25.8,25.9,25.8,26.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,11.5,12,11.8,11.9,12.5,13.1,12.3,12,12.1,13,11.6,12.7,12,11.9],"script":[10.7,10,9.8,10.1,10.4,10.4,11.2,10.1,9.9,9.9,10.6,9.3,10.1,10.5,10.1],"paint":[0.7,0.3,1,1,0.7,1,0.9,1.4,0.5,1.9,1.5,0.3,1,0.6,1.1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7422494888305664]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8279829025268555]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8233327865600586]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.529299736022949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.334200859069824]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.1,26.4,26,25.7,25.8,26.2,26.3,26,26.2,25.9,25.9,26.5,25.9],"script":[3.9,3.9,3.8,4.2,4.1,3.9,3.9,4.1,4.3,3.8,4.2,3.9,3.9,4.3,3.9],"paint":[21.7,21.8,21.9,21.8,21.5,21.5,21.5,21.6,21.6,21.7,21.6,21.6,21.7,21.8,21.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[30.7,29,29.9,31.1,30.3,29.1,28.8,29.7,28.9,28.6,29.2,28.7,29.6,29.4,29],"script":[6.3,6,6.4,6.6,6.2,5.9,5.9,6,6,5.8,6.2,5.8,6,6.1,6],"paint":[23.8,22.5,23,23.9,23.5,22.6,22.3,23.1,22.3,22.2,22.4,22.4,23,22.8,22.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.5,10.8,11.3,10.3,10.4,10.5,10.2,10.6,10.3,10.7,10.7,11.5,11.3,9.9],"script":[1.3,0.8,0.8,0.2,0.2,0.2,1.1,0.2,0.7,0.5,1.1,0.9,0.5,1.3,0.2],"paint":[9.8,9,8.4,9.8,8.5,8.9,8.3,8.5,8.7,8.6,8.7,8.2,9.8,8.9,8.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[5.7,2.2,2.1,2.1,2.1,2.2,1.9,2.1,2.1,2.7,2.5,2.2,2.1,2.2,2.3,3.1,2.7,2.2,1.7,2.4,2.4,2.7,2.2,2.3,2.8],"script":[0,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0.2,0,0,0,0.9],"paint":[1.3,2,1.1,1,1.9,2,1,1.5,1.6,1.4,1.5,2.1,2,2.1,2.2,1.9,1.7,1.5,0.7,2.2,1.6,2.6,0.7,2.1,1.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.7,14.2,14.4,14.7,14.6,14.8,14.4,14.5,14.3,14.2,13.8,14.1,13.8,13.5],"script":[2.1,1.5,1.1,1.5,1.7,2,1.3,1.5,1.5,0.7,1.6,1,1.1,1.6,1.3],"paint":[11.5,11.6,11.9,11.8,12,11.3,12.2,11.9,12,12.2,11.6,11.2,11.8,10.2,11.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.3,10.9,10.6,11.1,10.4,11.2,10.7,10.5,10.4,10.6,10.7,10.4,10.7,10.9],"script":[0.3,0.3,0.3,0.4,0.5,0.4,0.3,0.3,0.3,0.3,0.2,0.3,0.4,0.3,0.5],"paint":[9.4,9.2,10.1,9.9,9.6,9.5,10.5,9.8,9.4,9.4,9.3,9.9,9.6,9.6,10]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[282.7,280.7,281.4,282.3,282.3,283.7,281.1,278.8,282.3,279.9,283.8,281.2,280.7,282.9,281.6],"script":[48.5,48.7,48.6,49.3,49.4,48.9,48.8,48.2,49.2,48.4,49.5,48.7,48.8,49,48.9],"paint":[226.7,224.4,225.1,225.3,225.4,227.2,224.6,223,225.6,224,226.4,224.7,224.3,226.3,225.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.3,30.8,31.6,30.9,30.6,31,31.1,31.1,31.2,31.5,31.6,32.3,31.4,31.2],"script":[4.2,4.2,4.2,4.2,4,4.2,4.1,4.1,4.1,4.2,4.3,4.3,4.3,4.3,4.2],"paint":[26.5,26.3,25.8,26.5,26.1,25.6,26,26.1,26.2,26.2,26.3,26.5,27.2,26.3,26.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.7,9.9,10.2,9.5,9.7,9.9,9.1,9.9,9.8,10.7,9.8,9.9,9.8,10.5],"script":[8,7.9,8.5,7.7,8.2,8.1,7.5,6.7,8.2,7.9,8.8,7.9,7.9,7.9,8.1],"paint":[0.2,0.9,0.2,1.2,0.2,0.2,1.8,1.3,0.7,1.7,1,0.5,1.2,0.8,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5636606216430664]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7526893615722656]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760098457336426]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7322492599487305]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.45913600921631]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.5,36.7,37.9,36.7,36.8,37.3,37,36.8,36.9,37.4,36.9,37.1,37.6,36.9,37.2],"script":[14.6,14.1,15.4,14.4,14.3,14.4,14.6,14.3,14.3,14.6,14.3,14.6,14.8,14.3,14.5],"paint":[22.3,22,21.9,21.8,22,22.3,21.9,21.9,22,22.3,22.1,21.9,22.2,22.1,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.7,42.9,41.9,41.6,41.9,42.1,41.2,40.9,41,41.4,41.3,41.4,41.9,41.6],"script":[18.9,18.5,19,18.6,18.5,18.6,19,18.6,18.5,18.5,18.8,18.5,18.7,18.7,18.9],"paint":[22.4,22.7,23.3,22.7,22.4,22.7,22.5,22,21.9,21.9,22,22.2,22.1,22.6,22.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20,17.9,19.6,18.1,19.2,19.8,18.2,18,19.1,17.5,18.1,18.7,20,19.2,19.1],"script":[7.2,6.6,7.5,5.8,6.2,7.9,7,6.6,7.6,6,6.6,6.6,7.5,6.2,6.9],"paint":[10.7,8.5,9.3,9.9,10.5,8.4,8.2,9.2,9.3,10,9.9,10.7,10.1,10.9,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[5.9,4.9,4.4,4.8,5.1,4.6,5,4.6,4.5,4.3,5,5.3,4.3,4.3,5.2,4.9,4.8,4.9,4.2,4.6,4.4,4.3,4.1,4,4.7],"script":[2.4,1.9,2,2.2,2,2.1,2.6,2.2,2,2.3,1.9,2.4,2,2.1,2.7,2.3,2.1,2.4,2.1,2.2,1.9,2.1,2.1,1.6,2.3],"paint":[2,2.1,1.2,2.2,2.9,1.5,1.1,1.6,1.6,1.1,1.5,2.1,1.4,1.2,1.6,1.9,2.1,1.4,1.6,1.5,1.3,1.4,1,1.2,1.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.5,15.8,16.3,17.7,16,16.8,17.3,16.5,16.7,16.8,15.1,15.1,16.2,15.8],"script":[2,2.3,1.9,2.9,1.9,1.9,2.3,2.7,2.9,2.2,2.3,2,1.9,1.9,2.3],"paint":[12.7,12.1,11.9,11.9,14.3,12.9,13.2,13.2,11.9,11.5,13.8,12.2,12.1,12.6,11.8]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,12,11.9,12,12.6,11.9,12.1,13.4,12,13.1,11.9,11.6,11.4,11.9,11.8],"script":[1.1,1.1,1.1,1.1,1.3,1,1.1,1.9,1.1,1.7,1.2,1.1,1.1,1.1,1.1],"paint":[9.8,10.6,10.5,10.2,10.7,10,10.3,10.8,10.5,10.7,10.1,9.5,9.6,10.1,10.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[381.3,380.9,384.9,382.3,380.4,379.2,382.1,385.1,387.2,380.8,380.1,381.7,385.6,382.6,383.7],"script":[143.5,143,147.2,143.5,143,143.2,141.6,142.4,144.2,142.8,144.4,144.3,142.8,145,145.1],"paint":[229.5,230,229.6,230.7,229.5,228,232.3,233.3,234.9,229.7,227.6,229.3,234.8,229.4,230.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.8,42.7,43.1,42.7,42.6,42.4,42.3,42.9,42.9,42.7,41.7,42.8,43.7,42.1,43],"script":[14.8,15,15.1,15,15.2,14.9,15.1,15.2,15.5,15.1,14.9,15.1,15.1,14.7,15.7],"paint":[26.9,26.6,26.9,26.7,26.4,26.4,26.2,26.7,26.4,26.5,25.8,26.7,27.4,26.4,26.3]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10,10.9,10.5,10.4,11.6,13.5,10.4,10.8,9.7,11.2,11,10.1,10.6,10.1],"script":[8.1,8.2,8.6,7.8,8.3,9.1,10.7,8.6,8.6,7.6,9,8.9,8.7,8.5,8.2],"paint":[1,0.6,1.2,1.3,0.3,1.5,2.5,0.5,1.3,1.2,1.8,1.2,0.3,1,0.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44667720794677734]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5003862380981445]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.515448570251465]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3591156005859375]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.981186866760254]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.7,24.1,24.1,23.5,23.8,24,23.6,23.8,24,24,23.8,23.6,23.5],"script":[2.4,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.4,2.5,2.4,2.4,2.4,2.4],"paint":[20.9,21,21,21.3,21.3,20.7,21,21.2,20.9,21,21.1,21.2,21,20.9,20.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.2,27.6,28.8,28.2,27,28,28.5,27.5,28,27.8,27.4,27.7],"script":[5.2,5.1,5.1,5,5.1,5.3,5,5,5.1,5.1,5,5.2,5,5,5.2],"paint":[21.9,22,22.1,21.8,21.9,23,22.5,21.5,22.3,22.9,21.9,22.2,22.3,22,21.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.2,11,10.8,11.3,10.5,10.9,10.7,10.5,10.5,10.6,11,11.8,11.2,10.8],"script":[0.9,1.2,1.2,0.6,1.3,0.9,0.9,1.5,1.1,0.9,0.8,0.9,1.2,1.1,1.2],"paint":[9,8.7,8.1,9.2,8.7,8.8,8.4,7.9,8.3,8.3,8.8,8.8,9.3,8.8,8.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.7,2.4,2.2,2.6,2.2,2.7,2.5,2,2.5,2.6,2.6,2.9,4.4,2.2,3,2.1,2.7,1.9,2.7,2.8,2,2.2,2.8,3],"script":[0.7,0.5,0.3,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.9,0.9,0.1,1.1,0.1,0.6,0.1,0.5,0.5,0.1,0.1,0.8,1.1],"paint":[1.6,1.5,1.5,1.3,1.6,1.4,1.8,1.3,0.9,1.5,1.2,1.7,1.5,1.8,1.4,1.8,1.9,0.7,1.6,1.6,1.3,1.1,0.9,1.9,1.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[13.5,14.2,14,14.8,13.6,13.7,14.6,14.2,14.6,14,14.8,14.4,14.1,13.5,14.4],"script":[0.7,1.2,0.9,1.3,1,0.9,1.2,1.3,1.5,0.7,1.6,1.2,1.8,1.1,1.6],"paint":[11.6,11.8,12,12.1,11.7,11.2,11.2,11.7,12.1,12.4,12.8,12.1,11.5,11.2,11.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.8,10.5,10.7,10.9,10.6,10.6,10.8,10.9,10.4,10.8,10.7,10.6,10.8],"script":[0.6,0.5,0.6,0.6,0.5,0.6,0.4,0.5,0.5,0.6,0.4,0.6,0.3,0.4,0.5],"paint":[9.4,9.9,9.6,9,9.5,9.4,9.5,9.6,9.6,9.6,9.3,9.6,9.8,9.4,9.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[257.3,257.4,257.9,257.3,257.5,257.6,259.1,257.9,257.7,258.2,257.3,256.9,257.5,258.1,257.2],"script":[28.8,28.8,28.6,28.6,28.7,29.1,28.9,28.8,28.5,29.2,28.1,28.6,28.4,28.7,28.6],"paint":[221.5,221.4,222.1,221,221.5,221.3,223,221.9,221.6,221.8,222,221.3,222,221.7,221.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,28,29.2,28.7,28.3,28.3,28.6,28.5,27.9,28.7,28.7,29.1,28.1,28.5,28.8],"script":[2.9,2.8,2.9,2.9,2.8,2.8,2.9,2.9,2.8,3,2.8,2.9,2.8,2.8,2.8],"paint":[24.9,24.5,25.5,25,24.7,24.7,24.9,24.9,24.3,24.9,25.1,25.4,24.5,24.9,25.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,10.6,12.9,10.9,10.9,12.2,11.8,10.4,10.5,11,13.7,12.8,12.8,12.6,13.7],"script":[10.8,8.9,10.8,9.5,8.5,9.5,9.5,9.1,9,8.9,11.1,10.4,10.7,10.2,11.7],"paint":[1,0.7,0.6,0.2,1.5,2.4,0.7,0.7,0.2,0.9,1,1.3,0.6,1.4,1.4]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49529266357421875]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.724177360534668]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.772085189819336]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7226696014404297]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.072800636291504]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[25.1,24.9,25.1,25.2,25,25.1,25.4,26.1,24.8,25.1,25.1,25.2,26.7,26.3,26.4],"script":[3.5,3.5,3.5,3.9,3.5,3.5,3.5,4.2,3.5,3.5,3.5,3.6,5,4.1,4.2],"paint":[21.2,21.1,21.1,20.9,21.1,21.3,21.5,21.6,21,21.3,21.3,21.2,21.4,21.7,21.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.6,29.1,29,28.9,28.8,29,28.9,28.9,28.5,29.2,30.2,29.6,29,29.3],"script":[6.7,6.7,6.4,6.4,6.3,6.4,6.4,6.3,6.3,6.3,6.9,7.1,6.5,6.5,6.7],"paint":[22.1,22.3,22.1,22.1,22,21.8,22,22,22,21.6,21.8,22.5,22.5,22,22.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.8,11.4,11.1,10.7,11,11.5,10.7,10.4,11.3,10.6,11.3,12.7,10.7,10.1],"script":[0.9,0.8,0.9,0.9,1,1.6,1.5,1,1,1.2,1.3,1,0.6,0.9,1.3],"paint":[9.2,8.5,9.6,8.8,8.8,8.4,9.1,9.1,8.5,8.9,8.1,9.6,8.9,8.3,7.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.4,2.8,2.5,2.5,2.2,1.8,2.7,2.4,2.4,2.6,2.4,2.4,2.8,2.4,2.2,2.4,2.7,3.2,2.4,2.8,3,2.4,2.4,3.1],"script":[0.6,0.4,0.1,0.4,0.8,0.1,0.1,0.1,0.5,0.6,0.4,0.8,0.6,0.1,0.5,0.5,0.5,0.8,0.8,0.9,1.1,0.8,0.9,0.1,1.1],"paint":[1.5,1.4,1.6,1.9,1.6,1.6,0.7,2.1,1,1.5,2,1.6,1.7,1.5,1.8,1.6,1.8,1.2,1.6,1.3,1.6,1.9,1,0.8,1.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14.9,15.4,15.6,15,14.4,16.2,15,15.9,16.5,15,15.1,15.3,14.9,15.8],"script":[2.4,1.6,1.9,1.8,2.2,1.8,2.1,2.2,2.4,2.2,2.1,2.1,2.2,2.6,2.4],"paint":[11.4,12.4,12.5,12.4,11.8,11.1,13,11.7,12.5,12.8,12.1,11.8,11.9,11.3,12.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12.2,11.9,11.4,12,11.7,12.3,11.7,11.7,11.5,11.9,12],"script":[1.4,1.5,1.7,1.4,1.6,1.6,1.4,1.7,1.4,1.6,1.4,1.4,1.5,1.6,1.4],"paint":[10,9.8,9.8,9.2,9.7,9.5,9.4,10,9.4,10.2,9.6,9.7,9.6,10,10.1]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[273.7,270.9,274.2,270.7,269.6,271.6,272.2,270.1,275.7,270.6,271.6,270.9,271.3,267.9,272.6],"script":[42.3,42.1,42.5,42.1,42.1,41.9,42.3,42,42.6,42.2,42.4,42.1,42.3,41.2,42.3],"paint":[224.2,221.7,224.6,221.4,220.4,222.5,222.7,221,226,221.3,222.1,221.3,221.8,219.5,222.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.6,31.5,31.2,30.5,31.1,30.9,30.6,30.3,30.2,30.9,29.9,32,30.9,30.8],"script":[4.8,4.9,4.8,4.8,4.8,4.9,4.7,4.6,4.6,4.5,4.8,4.6,5,4.5,4.5],"paint":[24.9,26,25.9,25.7,25,25.5,25.5,25.2,24.9,24.9,25.4,24.6,26.3,25.6,25.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.2,13,10.7,13.4,12.5,11.8,13.5,9.3,13.1,13.3,11,11,12.4,11.1],"script":[8.6,9.2,11.6,8.9,11.7,10.7,9.9,10.9,7.5,11.1,11.4,9.8,9.1,10.5,9],"paint":[2.1,0.6,0.7,0.9,0.3,0.9,0.6,1.3,1,1.8,0.3,0.4,1.3,0.6,1.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5644826889038086]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9609222412109375]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0113658905029297]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8396015167236328]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.660969734191895]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.3,23.3,23,23,23,23.1,23.3,23,23,23.4,23.3,23.1,23.6],"script":[1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4],"paint":[21.4,21.3,21.6,21.6,21.3,21.3,21.3,21.3,21.6,21.2,21.3,21.7,21.5,21.4,21.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.7,25.9,25.6,26.2,26.8,26.1,25.8,25.7,26.2,26.2,26.4,26.3,25.7],"script":[3.3,3,3.3,3.3,3.2,3.2,3.4,3.4,3.2,3.2,3.3,3.3,3.2,3.3,3.2],"paint":[22.2,22.2,22,22.2,22,22.6,23.1,22.2,22.2,22,22.4,22.5,22.7,22.6,22.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,9.7,9.7,9.8,9.2,10.1,9.2,9.4,10.1,9.9,9.7,9.3,10.6,9.8,9.7],"script":[0.1,0.4,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.4,0.1,0.1,0.1],"paint":[8.5,8.3,8.8,8.4,8,8.5,8.2,8,8.3,8.5,8,8.3,9,8.5,7.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.5,2,2.1,2.1,2.3,2.1,2.1,1.6,2.1,2,2.3,1.9,2.3,2.8,1.7,2.4,1.8,2.4,2.5,2.3,2.8,2.1,2.3,2.3],"script":[0,0,0.1,0,0,0.8,0.7,0,0,0.6,0.6,0,0,0,0,0,0,0.1,0,0,0,0.8,0,0.4,0],"paint":[2.1,2.3,1.8,1.4,1.6,1,1.4,1.6,1.1,1.4,1.3,2.1,1.3,2.2,1.8,1.5,2.2,1.6,1.5,1.5,2,1.5,1.2,1.3,1.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.2,13.1,12.9,12.1,13.1,12.6,11.7,12.9,13,13.3,12.8,12.7,12.4,12.4],"script":[0.1,0.1,0.7,0.8,0.5,0.5,0.3,0.1,0.6,0.1,0.4,0.1,0.7,0.1,0.7],"paint":[11.6,10.2,11.2,10.9,10.7,11.1,10.9,10.6,11.2,12.7,11.9,11.7,10.9,11.2,10.1]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.3,10.4,10.3,10.1,10.2,10,10.2,10.1,10.1,10,9.9,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[9.7,9.4,9.7,9.2,9.4,9.4,9.3,9.6,8.7,9.3,9.4,9.5,9.5,9.9,9.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[246,245.3,243.7,243.2,244.8,243.7,244,244.4,244.4,242.9,244.2,241.7,245,244.5,243.7],"script":[13.9,13.5,13.4,13.6,13.6,13.8,13.3,13.8,13.5,13.5,13.5,13.7,13.6,13.8,13.8],"paint":[224.9,224.3,223.3,222.6,223.9,223,223.4,223.7,223.8,222.4,223.6,221.1,224.4,223.7,222.7]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.9,26.4,26.2,26.7,26.8,26.5,27.8,27.3,26.6,26.5,26.4,27.8,27.5,26.8],"script":[1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.2],"paint":[24.9,24.9,24.5,24.2,24.7,24.7,24.6,25.8,25.2,24.7,24.5,24.4,25.8,25.4,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.6,9.2,9.7,9.7,11,9.5,9.4,9.6,9.8,9.8,8.7,10,9.2,9.2],"script":[7.3,6.7,7.2,7.3,7.6,9,7.4,7.3,8.2,7.6,7.2,7,8.2,7.1,7.4],"paint":[0.3,0.2,1.8,2.2,1,0.2,0.7,1.1,0.2,1.3,1.3,0.3,1.2,1,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5724029541015625]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8287076950073242]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8366403579711914]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6594877243041992]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.626521110534668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28,28,27.8,27.6,27.8,28,28.2,27.8,28.1,27.6,27.9,29.2,27.8,27.6,28.1],"script":[5.9,5.8,5.8,5.8,5.9,5.9,6.3,5.9,6.2,5.9,5.8,6.3,5.8,5.8,5.9],"paint":[21.6,21.6,21.5,21.2,21.4,21.6,21.4,21.4,21.4,21.2,21.5,22.4,21.4,21.1,21.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,31.8,31.8,31.8,31.4,31.5,32,31.8,32,32.1,32,31.7,32.5,32.7,31],"script":[8.7,8.7,8.7,8.8,8.6,8.6,8.8,8.6,8.7,8.9,8.8,8.6,8.7,9.1,8.1],"paint":[22.4,22.6,22.5,22.4,22.3,22.4,22.7,22.6,22.7,22.7,22.6,22.6,23.3,23.1,22.3]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.8,12.3,13.6,13.3,12.8,13.7,12.8,12.9,12.7,12.8,12.7,13.6,13,13.3],"script":[2.7,2.5,2.2,3,3.1,3,2.5,2.6,2.6,2.6,2.4,2.8,3.2,2.7,3.3],"paint":[9,7.8,8,9.7,8.3,8.6,10.5,8.5,9.4,8.6,9.7,8.4,9.3,9.2,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.1,4.2,3.9,4.5,4.1,4.4,3.6,3.7,4.7,3.8,4.4,4,3.9,3.6,3.7,4,3.8,3.4,4.8,3.9,4.1,3.3,3.9,4.4],"script":[2.4,2,1.9,1.8,2.1,1.8,2.1,2.1,1.9,2.2,1.6,2.1,2.2,1.7,1.9,1.5,1.4,2,2,2.4,1.8,1.8,1.2,1.6,2.3],"paint":[1.3,1.6,1.6,1.4,2.4,2.1,1.8,1,1.5,2.4,1.7,1.5,1.4,2,1.6,1.2,1.7,1.4,1.3,1.7,2,1.4,1,2.2,2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.7,14.8,14.9,14.7,14.9,14.3,14.5,16,14.8,13.8,14.9,15.3,14.1,14.3],"script":[1.8,1.3,1.5,1.8,1.8,1.8,1.7,1.8,1.9,1.8,1.5,1.9,1.7,1.7,1.9],"paint":[12.3,12.7,12.8,12.1,11.9,11.9,11.5,11.7,13.4,12.1,11.3,11.7,12.7,11.1,11.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.1,11.3,11.3,11.3,11.3,11.2,11.4,11,11.3,11,11,11.4,11,11.3],"script":[1.1,1.1,1.1,1.2,1.1,1.1,0.9,1.1,0.8,1.1,1.1,1.1,1.1,0.8,1],"paint":[9.2,9.3,9.6,9.6,9.3,9.7,9.5,9.9,9.6,9.3,9.4,8.8,9.7,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,290.2,288.2,289.5,287.2,301.3,287.5,288.8,287.8,289,286.8,290.2,286.8,288,287.5],"script":[53.4,53.1,53.7,53.6,53.1,53.4,53.2,53.2,53.2,53.3,52.5,53.2,52.5,53.6,52.1],"paint":[227.6,230,227.5,228.5,227,240.6,227.3,228.4,227.5,228.5,227.2,229.7,226.9,227.2,228.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,34,34,33.6,33.9,35.3,34.9,33,33.9,34.1,34,33.2,33.5,33.8,33.7],"script":[6.6,6.9,7,6.9,6.9,6.9,6.9,6.9,7,7,6.9,6.4,6.9,6.9,7],"paint":[25.7,26.1,26.1,25.7,26,27.4,27,25.1,26.1,26.1,26.1,25.8,25.7,26,25.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.5,13.1,13.4,13.2,12.8,13.3,13.3,14,14.4,14.3,13,11.9,12.8,12.8],"script":[11,12.1,11.3,11.1,10.5,11.2,10.9,11,12.4,11.9,11.7,10.7,10.1,11,10.9],"paint":[0.2,0.2,1.6,1.6,1.3,0.6,0.4,2.1,0.8,1.6,1,1.3,1.5,1.4,1.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.753408432006836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.064512252807617]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140619277954102]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5818614959716797]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.95647621154785]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.3,27.8,27.3,27.4,27.7,27.8,27.7,27.7,27.6,27.3,27.6,28,27.2,27.3,27.6],"script":[5.4,5.7,5.5,5.4,5.6,5.6,5.6,5.7,5.7,5.6,5.6,6.1,5.5,5.5,5.6],"paint":[21.4,21.6,21.3,21.5,21.5,21.6,21.5,21.5,21.3,21.2,21.4,21.4,21.1,21.2,21.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.5,30.3,30.5,32,31.2,30.7,30.7,31.1,31.6,30.4,30.6,31.1,30.8,30.5,30.9],"script":[7.6,7.8,7.7,7.9,8.4,7.7,7.7,7.8,8.2,7.7,7.7,8.1,7.7,7.7,8.2],"paint":[22.3,22,22.3,23.5,22.3,22.4,22.4,22.7,22.8,22.1,22.3,22.5,22.5,22.3,22.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.8,12.1,13,13,12.8,12.9,12.7,13,13,13,12.3,12.7,12.1,12.5],"script":[2.4,3.3,2.6,3,3.1,2.7,2,2.7,3,2.4,2.8,2.5,2.9,2.2,2.6],"paint":[9.5,9.7,8.2,9.5,8.6,9.1,9.7,8,9,9.6,9,8.8,9,8.7,8.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.4,4.9,4.8,4.5,4.6,3.8,4.6,4.7,5,4.9,4.6,4.5,4.5,4.3,4.3,4.3,4.8,4.4,4.3,3.5,4.4,4.8,4,4.8],"script":[2.4,2.3,2.2,2.5,2.8,2.6,2,2.1,2.7,2.7,3.1,2.7,2.2,2.5,1.9,2.4,2.3,2.6,2.5,1.4,1.6,2.7,3,2.1,2.6],"paint":[1.6,1.5,2.4,2.1,1.6,1.9,1.6,2.4,1.5,2.2,1.6,1,1.9,1,1.1,1.2,1.4,1.8,1.1,2.8,1.7,1.6,1.3,1,1.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.8,14.1,13.7,13.6,14.3,16.4,14.7,14.6,16,14.2,14.4,13.7,14.3,13.2],"script":[1.6,1.6,1.4,1.4,1.7,1.8,1.3,1.9,2.5,1.4,2.1,2.2,1.3,1.7,1.5],"paint":[11.2,11.3,11.6,11.6,10.9,11.6,13.8,11.7,11.1,13.5,11.2,11,11.3,10.8,10.5]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.7,11.2,11.2,11.3,11.2,11,10.9,11,11.1,11.3,10.9,11.1,11.2],"script":[0.9,1,1,1.1,0.9,0.9,1.1,0.9,1.1,1.1,0.9,1,0.9,0.9,0.9],"paint":[9.5,9.3,10.1,9.5,9.5,9.6,9.5,9.5,9.1,9.5,9.6,9.8,9.4,9.7,9.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[285.2,284.8,285.8,284.6,285.5,287.2,285,286.7,286.8,285.3,285,288.4,284.9,283.5,286.5],"script":[51.2,51.1,51.5,50.7,50.9,50.7,50.7,51,51.1,51.1,51.5,50.9,51.1,50.9,51.1],"paint":[226.8,226.5,227.2,226.7,227.1,229,227,228.4,228.6,226.9,226.5,229.6,226.6,225.5,228.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,33.1,32.9,32.8,32.6,33,32.2,33.1,33.1,33.1,32.5,32.1,33.2,32.7,32.7],"script":[6.2,6.1,6.1,6.2,6.2,6.3,6.2,6.1,6.1,6.1,6,5.7,6.2,6.2,6.2],"paint":[25.5,26,25.8,25.7,25.5,25.8,25.2,26,26,26,25.5,25.5,26.1,25.6,25.6]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.8,12.1,11.7,11.7,12.2,12.5,11.5,11,11.3,12,11.9,11.6,12.4,12],"script":[10.3,9.7,10.1,9.8,10,10,10.7,9.1,9.4,9.5,10,9.7,10.2,10,10],"paint":[1.5,1.3,1,0.4,0.9,0.3,0.3,1.3,1.4,1.7,0.9,1,0.2,1.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508296966552734]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.580999374389648]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.56385612487793]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.0833606719970703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.512922286987305]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[112.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25,24.8,24.7,25.3,25.7,25.5,25.9,24.6,25.5,25,24.6,25.1,25.5,24.9,24.9],"script":[3.5,3.5,3.5,4.1,3.7,4.1,4,3.6,4.2,3.7,3.5,3.6,4.3,3.5,3.5],"paint":[21.1,20.9,20.7,20.8,21.6,21.1,21.4,20.6,20.9,20.9,20.7,21.1,20.9,21,21]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.1,29.8,28.9,29.6,29.6,29.5,28.6,29.1,28.5,29.6,29.8,29.9,29.9,29.5],"script":[7.1,6.9,7.3,6.8,7.3,7.3,7,6.6,7.1,6.6,7,7.1,7.2,7.3,6.9],"paint":[21.4,21.6,22,21.6,21.7,21.8,22,21.4,21.5,21.3,22,22.1,22.2,22.1,22.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,10.8,11.3,10.2,9.8,10.3,10.2,10.8,11,10.6,10.8,10.1,10.6,11.9,10.5],"script":[0.2,0.7,0.9,0.7,0.3,0.2,0.2,0.2,0.8,0.8,0.5,0.2,0.2,1.3,0.2],"paint":[10.2,9.3,9.3,8.4,8.6,7.9,9,9.6,8.6,8.4,8.8,9,9.4,9.4,9.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2.6,2.6,2.9,2.5,2.4,2.9,1.9,3,2.5,2.4,2.4,2.9,2.8,1.9,2,2.6,2.2,2.7,2.4,2.9,2.1,2.1,3.5],"script":[0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0,0.1,1],"paint":[2.3,1.6,2.5,2.4,0.8,1.3,1.6,2.3,1.1,2.9,0.9,1.4,1.3,2.7,1.8,1.7,1.7,2.4,2,0.4,2,2.7,1.5,1.1,2.4]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13,12.5,13.6,13.6,13.5,14.2,13,13,13.2,12.7,12.7,12.5,12.5,12.5,13],"script":[0.1,0.9,0.9,0.9,0.7,0.7,0.6,0.8,0.7,0.1,0.8,0.1,0.6,0.5,0.8],"paint":[11.9,10.5,11.5,11.7,11.7,12.9,10.4,11.1,11.3,11.5,10.8,11.1,11.2,9.7,10.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.6,10.6,10.9,10.7,10.3,10.4,10.4,10.8,10.5,10.4,10.1,10.4],"script":[0.2,0.2,0.3,0.3,0.2,0.4,0.5,0.3,0.3,0.3,0.5,0.2,0.3,0.3,0.2],"paint":[9.5,9.6,9.5,9.7,9.8,9.9,9.7,9.5,9.5,9.5,9.7,9.4,9.5,9,9.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.4,264.6,264.2,264.8,265.1,265.5,264.9,264.5,264.6,265,264.7,266,264,266.7,264.4],"script":[34.8,35,35,34.7,34,34.8,34.3,34.1,34.1,34.3,34.5,34.6,33.7,34,34.6],"paint":[223.5,222.6,222,222.8,223.6,223.5,223.7,223.3,223.2,223.6,223,224.3,223,225.5,222.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,29.6,29.8,29.8,30.3,29.9,28.9,29,29.3,30.2,30.1,29.3,30.1,29,29],"script":[4.5,4.2,4.1,4.1,4.4,4,3.9,3.9,4.1,4.4,4.2,3.9,4.1,4.2,3.8],"paint":[25.2,24.6,25,25,25.1,25.2,24.4,24.4,24.4,25.1,25.2,24.7,25.3,24.1,24.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.4,10.3,10.2,10.7,9.9,10.8,9.9,9.8,9.9,10.5,10,9.7,10,9.7],"script":[7.8,8.3,8.1,8.4,8.9,8,8.9,8,7.8,8.1,8.3,8.4,7.1,7.8,7.9],"paint":[0.8,1.9,1.4,1.6,0.3,0.9,1.7,0.9,1.1,1,0.3,0.2,1.7,1.3,0.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6940650939941406]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.597169876098633]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6483497619628906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.053060531616211]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.755897521972656]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,30.4,30.5,30.5,30.1,30.5,30.1,30.4,30.3,29.9,30.2,29.8,30.2,30],"script":[8.2,8.1,8.4,8.3,8.6,8.3,8.7,8.1,8.6,8.2,8,8.1,8.1,8.2,8.1],"paint":[21.4,21.2,21.4,21.7,21.4,21.4,21.3,21.5,21.3,21.6,21.4,21.6,21.2,21.5,21.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.8,33.5,33.3,33.4,33.4,33.2,33.3,33,33.4,33.5,33.3,33.4,33.4,33.3],"script":[11.2,11.5,11.2,11,11.1,11.2,11.1,11.2,11,11.2,11.2,11,11.1,11.2,11.1],"paint":[21.7,21.7,21.7,21.7,21.8,21.6,21.5,21.5,21.4,21.7,21.7,21.7,21.7,21.6,21.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12,12.3,12.3,12.2,11.9,11.8,12.3,12,11.6,11.9,12.2,12.2,12.5,12.2],"script":[2,2,2.2,2.1,2.3,1.9,1.5,1.7,2.3,2,1.4,2.1,1.8,2.2,1.9],"paint":[9.8,8.7,9.7,9,8.8,8.5,9,9.9,8.7,8.4,9.4,8.8,9.1,9.1,9.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.3,4,3.5,4.3,4.6,4.4,4.2,3.9,3.8,4.1,4.2,4.7,4.3,4,3.6,4,4.5,4.5,4.4,4.1,4.4,3.8,4.9,4.6,4.2],"script":[2.4,2.1,1.9,2.4,2.4,1.6,1.7,2,2,2.3,1.9,2.4,2.2,2.3,1.7,2.4,1.9,2.1,2,1.7,2.4,2.2,2.6,2.2,2.2],"paint":[1.8,1.8,1,1,1.3,2.2,2.4,0.9,1.2,1.3,1.4,2.2,0.9,1.6,1.7,1.1,1.6,1.6,1.3,2.3,1.1,1.1,1.5,1.4,1.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14,14.6,14.3,14.4,14.7,16.1,15.5,14.5,14.6,14.6,15.3,14.3,14,14.2,14.7],"script":[1.9,1.9,1.9,1.6,2.1,2.4,1.6,1.5,1.7,1.5,1.8,2.1,1.8,1.8,1.9],"paint":[10.7,11.8,11.1,11.4,11.6,12.2,12.8,11.5,11.5,12.5,11.5,11,11.3,11.3,11.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,11.2,11.5,11.6,10.9,11.3,12.4,11.2,11,11.3,11.4,11.2,11.1,11,11.4],"script":[1.2,1.2,1.2,1,1,1.2,1,0.9,1.2,1,1.2,1,1.2,1.1,1.2],"paint":[9.1,9.3,9.4,9.8,8.9,9.6,10.6,9.3,9.4,9.5,9.9,9.6,9.6,9,9.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[292.3,291,292.3,291.9,291.9,293.9,292.4,291.6,292.3,293.2,291.5,294.7,292.4,291.7,292.1],"script":[57.3,56.8,57.5,56.8,57.2,58.4,57.5,56.6,57.1,57.4,57.3,59.2,57.8,57.7,56.7],"paint":[227.6,226.9,227.6,227.8,227.6,228.1,227.5,227.5,227.8,228.3,226.9,228.3,227.3,226.8,228.3]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,32.8,32.6,33.4,33.6,32.5,33.2,32.9,32.9,33,33,32.9,33.2,33.2,33.6],"script":[6,5.8,5.9,5.8,5.9,5.7,5.8,5.8,5.9,5.8,5.9,5.9,5.9,5.9,5.8],"paint":[27.6,26.1,25.7,26.7,26.8,25.9,26.4,26.1,26.1,26.3,26.1,26,26.4,26.4,26.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,13.5,13.9,13.5,13.4,13.2,13.6,14.6,16.6,13.4,14.3,13.6,13.7,13.7,13.9],"script":[11.2,11.4,11.6,12,11.3,11,11.7,12.6,14.3,11.3,12.2,11.4,11.8,11.8,11.7],"paint":[1,1.8,1.6,0.6,1.3,1.3,1.7,0.9,0.9,1.4,0.9,1.3,0.7,1,0.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7459735870361328]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2724952697753906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3015480041503906]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3401260375976562]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.492534637451172]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31,30.2,30.1,30.4,30.2,30.3,30,31.4,30.5,30.8,30.2,30.8,30.6,30.2,30.7],"script":[8.4,8,8,8.2,8,8.1,7.9,8.6,8.1,8.2,8.2,8.2,8.4,8,8.1],"paint":[22,21.7,21.6,21.7,21.6,21.7,21.5,22.2,21.9,22,21.5,22,21.7,21.6,22]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.1,38.2,38,37.9,38.2,38.3,38.9,38.6,38.4,38.1,37.9,38.2,38.3,38.2,38.8],"script":[14.7,14.7,14.4,14.6,14.6,14.6,15.1,14.7,14.8,14.7,14.5,14.9,14.8,14.8,15.1],"paint":[22.8,22.8,23,22.7,23,23.1,23.1,23.4,23.1,22.8,22.8,22.7,23,22.8,23.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.5,24.6,26,22.6,26.6,24.9,25.8,25.9,25.5,24.3,26.6,25.5,23.4,24.5,25.2],"script":[13.6,12.6,13.6,10.2,14.2,13,13.7,13.5,13.5,11.8,13.8,13.1,11.9,12.5,13],"paint":[11.4,9.7,9.5,11.3,10.3,9.7,10,11.2,9.4,10.3,9.5,10,9.6,9.6,9.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,14.4,14.4,14.3,15.2,13.5,14,14.3,14,13.7,15.3,14,13.2,14.1,14.6,13.5,14.5,14.2,15.1,13.8,14.2,13.7,13.9,13.1,13.5],"script":[11.1,11.3,11,10.9,11,9.7,10.5,10.1,10.2,10.1,11.6,10.4,10,10.5,11.5,10.7,10.7,11,11.2,10.4,11.2,10.1,10.6,10.3,9.9],"paint":[1.8,1.7,1.2,1.3,2.6,2.1,1.1,2.5,2,1.7,2.3,2.3,1.2,2,2.4,1,1.8,1.4,2.5,1.4,0.8,2.1,1.9,2,2.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.1,26.3,24.8,26.9,25.9,27.6,27,26,25,25.8,25.9,25.9,26.3,25.4,25.6],"script":[10.8,11.5,10.8,12.4,11.4,11.9,12.2,11.3,10.4,10.5,10.5,11.3,11.4,11.1,11.1],"paint":[11.8,12.4,11.4,12.3,13.1,13.5,13.4,11.9,12.3,12.8,12.8,12.1,12.7,12.4,13]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.2,17,18,16.8,17.2,16.5,17.7,16.9,16.9,17.2,17.4,17.2,17.1,16.5,17.1],"script":[6.1,5.9,6.5,5.8,6.1,5.6,6.4,6,5.9,5.5,6.4,6,5.7,5.4,5.8],"paint":[10.3,9.9,10.3,9.9,10.2,9.9,10.3,10.1,10.4,10.4,9.9,10,9.9,10.2,10.4]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[325,325.5,322.3,324.1,321.2,325,330.1,329.3,322.6,322.8,322,328.7,324.5,322.2,323.4],"script":[93.5,92.4,91.3,91.7,91.4,91.4,92.6,92,91.2,91.7,91.3,93.1,91.8,91.8,91],"paint":[224,225.3,223.2,224.7,222.1,225.1,229.9,229.7,222.8,223.5,223,227.3,224.9,222.6,224.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,38.8,38.6,37.8,39.4,38.8,38.1,38.8,38.8,39.4,38.6,38.4,37.7,38.7,38.9],"script":[11.4,11,11.4,11,11.2,11.1,11.2,11.2,11.2,11.5,11.2,11,10.9,11.2,11.1],"paint":[26.7,26.7,26.2,25.8,27,26.6,25.9,26.6,26.7,26.8,26.3,26.4,25.8,26.3,26.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,12.6,11.2,11.3,12.5,11.5,12,12.5,11.5,11.6,12.5,12.3,12.4,11.5,11.3],"script":[9,10.7,8.9,9.4,9.7,9.6,9.6,10.6,9.4,10.1,10,10,10.1,8.9,9.5],"paint":[0.8,1,1.4,1,1,1.7,1.4,0.5,0.3,1.3,1.4,1.6,1.3,1.7,1.1]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6621389389038086]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624574661254883]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.641482353210449]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8375263214111328]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.52980899810791]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.8,23.7,23.7,23.7,23.5,23.6,23.5,23.8,23.7,23.7,23.6,23.7,23.6,23.8],"script":[2.3,2.4,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4,2.3,2.3,2.3,2.4,2.4],"paint":[20.9,21,21,20.9,20.9,20.8,20.9,20.9,21,20.9,21,20.9,21.1,20.9,21.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.5,28.2,28.4,28.1,28.9,28.4,28.4,28.2,28.2,28.2,28,27.9,27.9,28.3,28.1],"script":[5.5,5.5,5.5,5.4,5.7,5.5,5.5,5.6,5.6,5.3,5.5,5.3,5.4,5.6,5.5],"paint":[22.4,22.2,22.4,22.1,22.6,22.3,22.3,22,22.1,22.3,21.9,22.1,21.9,22.1,22]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.1,10.7,10.4,10.5,10.7,10.7,10.4,10.6,11.2,10.7,10.2,11.3,10.7,9.7],"script":[0.9,1.1,0.2,1,0.2,0.9,0.7,0.2,0.8,1,0.2,0.2,1.1,0.8,0.2],"paint":[8.3,9.1,8.6,8.4,9.1,8.2,8,8.7,8.3,8.9,8.9,9.3,9,9.3,8.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,2.9,2.8,3.1,3,2.7,3,2.7,2.8,3.1,2.8,3,3,2.6,2.8,3.4,3.1,3.9,2.6,3,3,3.2,2.9,3.1],"script":[0.9,1.2,0.2,0.8,0.8,1,0.6,0.9,0.5,1.1,0.7,0.9,0.9,0.9,0.2,0.2,1.2,1.2,0.8,1,0.6,1,0.6,1,1.2],"paint":[1.8,1.3,2.6,1.8,2.1,1.5,1.5,1.8,2,1.6,2.2,1.8,1.1,1.3,0.4,1.6,1.7,1.1,1,1,1.6,1.8,1.1,1.3,1.7]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13,14,14,13.9,14.1,13.7,14.2,13.7,13.6,13.5,14.2,13.9,13.5,14,14],"script":[1.1,1.5,1.6,1.2,1.5,0.9,1.6,0.9,1.1,0.8,1.5,1.1,0.6,1.5,1.5],"paint":[10.3,11.9,11.2,11.7,11.2,11.8,11.6,12.1,11.3,11.3,11.2,10.8,11.1,10.5,11.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.6,10.6,10.5,10.7,10.4,10.7,10.9,10.9,10.9,10.5,11.2,10.7,10.4],"script":[0.5,0.5,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.7,0.5,0.4],"paint":[9.6,9.3,9.5,9.6,9.4,9.7,9.5,9.8,9.7,9.8,9.7,9.1,9.9,9.2,9.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[256.2,258.8,255.6,255.6,256.4,256.2,256.5,254.8,256.9,254.5,255.5,256.1,256.2,257,256.3],"script":[28.2,28.1,28.7,27.9,28,27.9,28.1,27.8,27.7,27.9,27.9,27.9,28.2,28.1,27.8],"paint":[221,222.8,219.6,220.4,221.2,221.2,221.2,219.9,221.9,219.5,220.3,221,221,221.3,221.1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.6,28.3,28.1,28.9,28.2,28,27.7,27.6,28.1,28.5,27.9,27.9,27.8,28.2,28],"script":[2.5,2.5,2.5,2.6,2.4,2.5,2.4,2.5,2.6,2.8,2.4,2.6,2.5,2.6,2.5],"paint":[24.3,25.1,24.9,25.5,24.9,24.8,24.5,24.4,24.7,24.8,24.7,24.6,24.6,24.9,24.8]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10,10.3,10.7,9.8,10.1,10.4,10.1,11.2,10.7,12.1,10.7,10,10.6,10.4],"script":[8.9,8,8.1,8.8,8.1,8.3,8.3,8.5,9.4,8.5,9.7,8.7,8.1,9.1,8.5],"paint":[1,0.9,1.1,1.1,0.2,0.5,1.8,1.1,1.2,1.2,2.2,0.8,0.3,0.7,1.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5277957916259766]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7687768936157227]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8084239959716797]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.872105598449707]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.35142421722412]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.3,24.9,24.1,24.4,24.5,24.4,24.6,24.6,24.2,24.4,24.7,24.6,24.6],"script":[3.2,3.1,3,3.1,3,3.1,3.1,3,3,3,3,3,3,3.1,3.1],"paint":[21.2,21.1,20.9,21.4,20.7,20.9,21,21,21.1,21.2,20.8,21,21.2,21.1,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.1,28.8,29,28.9,29.3,29.3,29.4,29.1,29.1,29.2,28.7,29,29.7,29.4],"script":[6.5,6.5,6.2,6.1,6.4,6.5,6.3,6.4,6.3,6.2,6.6,6.3,6.5,6.3,6],"paint":[21.7,22.1,22,22.3,22,22.2,22.4,22.5,22.2,22.2,22,21.9,22,22.8,22.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,11.5,10.7,12.2,10.9,11.4,10.9,11.3,11.5,11,11.1,10.9,11.6,11.3,11.8],"script":[2.2,1.1,1.5,2,1.1,1.6,1.3,1.2,1.1,1.5,1.5,1.3,1.6,1.2,1.5],"paint":[8.4,9,8.1,9,8.9,8.7,8.6,8.9,8.4,8.8,8.7,8.4,8.7,9,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2.5,2.7,2.7,3,2.5,3,2.5,3,2.7,2.9,3,2.4,3.1,2.5,3.2,2.8,2.8,2.2,2.8,2.3,2.6,3.7,3],"script":[0.8,0.8,0.9,0.8,0.8,1.4,0.2,1,0.2,1.2,0.9,1.1,1.1,0.6,0.9,0.2,0.9,0.9,0.6,0.8,0.6,0.2,0.2,1.2,0.7],"paint":[1.6,1.1,1,1,1.8,0.9,2.2,1.1,1.5,1.5,1.6,1.1,1.1,1.5,2.1,1.4,1.5,1.2,2.1,0.7,1.3,1.9,2.1,1.6,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.8,14.4,15.1,14.5,15.1,14.6,14.6,14.9,14.4,14.7,14,13.7,14.2,14.5,16.5],"script":[1.7,1.8,1.3,1.1,2.3,1.5,1.5,2.2,1.6,1.9,2.1,1.2,1.6,2.1,1.7],"paint":[11.6,11.1,12.6,12.3,12.2,11.7,12.2,11.3,11.5,11.5,10.9,11.3,11.9,11.2,13.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.2,11.4,10.6,11,11,10.7,10.9,11.3,11.1,11,11.6,11.1,11.2,11.3],"script":[0.9,0.8,1,0.7,0.7,0.7,0.8,0.6,1.1,0.8,0.9,1,0.9,0.9,1],"paint":[9,9.9,9.8,9.6,9.3,9.3,9,9.3,9.6,9.7,9.6,9.8,9.7,9.7,10]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[267.9,268.4,267.7,270.2,269,268,269,268.3,270.1,268.5,269.6,269.6,268.4,268.4,266.1],"script":[38.1,37.9,37.7,38.2,37.5,38.6,37.8,37.7,37.6,38.4,37.4,37.6,38,36.8,37.2],"paint":[222.6,223.3,222.8,224.4,224.1,222.1,224,223.1,225.4,223,224.3,224.8,223.2,224.5,221.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,30,29.9,29.7,29.7,29.8,29.3,29.3,29.2,29.5,29.4,29.9,29.1,29,29.1],"script":[3.6,3.8,3.7,3.8,3.7,3.7,3.8,3.7,3.7,3.6,3.9,3.8,3.6,3.5,3.5],"paint":[24.8,25.4,25.5,25.2,25.2,25.4,24.7,24.9,24.7,25.1,24.8,25.4,24.8,24.7,24.8]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.7,10.2,10.1,11.1,10.9,10.8,10,10.4,10.3,11.2,11.1,10.8,10.1,10],"script":[8.7,9.5,7.7,8.3,8.8,8.6,8.8,8.6,7.8,8.2,9.3,9,8.6,8.2,7.9],"paint":[1.7,1.5,1.9,1.5,2.1,1.7,1.1,0.3,1.3,1.2,0.3,1.2,1,1,1.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6152744293212891]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.918811798095703]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.979991912841797]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4369192123413086]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.5925874710083]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.7,28.1,28.6,28.2,28.2,28,28.3,28.3,28.5,28.5,28.1,27.9,28.2,28.4],"script":[6.6,5.9,5.9,6,6,6,6,6.1,6.1,6.4,6.6,6,6.1,6,6.3],"paint":[21.6,21.2,21.6,22,21.6,21.6,21.4,21.6,21.7,21.6,21.4,21.6,21.3,21.6,21.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.4,34,33.8,33.5,34.1,33.9,33.4,33.2,33.9,33.3,33.3,33.4,33.3,33.1,33.4],"script":[10.6,11,10.9,10.6,11.1,10.8,10.8,10.4,10.9,10.5,10.3,10.5,10.7,10.4,10.5],"paint":[22.2,22.4,22.3,22.3,22.3,22.5,22.1,22.2,22.5,22.2,22.3,22.4,22,22.2,22.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.2,14.2,13.6,13.3,14.5,13.9,13.3,14,13.4,14.3,13.8,12.9,13.7,13.6,13.4],"script":[3.5,2.6,3,3.2,3.4,3.1,2.5,3.2,3.3,3.1,2.6,3,3.3,2.9,3],"paint":[9.8,9.1,8.8,9.4,10.2,8.7,9.4,8.6,8.3,10.2,9.1,9,9.3,8.7,9.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.2,6,6.1,6.1,5.3,6.1,6.2,5.8,5.6,6.1,5.7,5.8,5.9,5.5,5.8,5.7,6.2,6.6,5.8,6,5.8,5.9,6.1,6],"script":[3.9,3.3,3.9,3.7,3.3,3.6,3.9,3.6,3.4,3.7,4.2,3.8,3.7,3.6,3.4,3.6,3.8,3.6,4.2,3.8,4,3.6,3.9,4,3.6],"paint":[1.1,2.7,1.6,2.3,2.3,1.6,1.4,1.5,1.9,1.2,1.4,1,1,1.6,1.5,1.4,1.5,2.4,1.6,1.1,1.8,1.5,1.2,2,1.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[16,15.4,15.6,15.6,15.5,16.2,15.3,16.4,15.7,15,15.1,15.6,15.1,16.3,16.4],"script":[3.1,2.8,2.7,2.8,2,2.5,2.2,2.5,3,3,2.5,2.3,2.5,3.4,3.1],"paint":[11.9,11.2,10.3,11.8,12.1,13,11.6,13,11.6,10.8,11.7,12.3,10.9,11.4,12.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12.1,12,11.6,11.8,12.1,11.5,12,11.7,11.9,11.8,11.8,12,11.7,11.9],"script":[1.6,1.8,1.6,1.4,1.5,1.7,1.5,1.5,1.5,1.7,1.7,1.5,1.8,1.6,1.6],"paint":[9.6,9.8,9.6,9.1,9.5,9.7,9.1,9.7,9.6,9.5,9.5,9.8,9.6,9.6,9.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.3,293.4,293.9,292.9,291.2,293.6,291.8,292.6,292.1,291.2,295.2,291.7,292.2,291.6],"script":[60.2,60.9,60.9,60.1,60.1,60,60.9,60.5,60,60.3,60,59.9,59.7,60.6,60.4],"paint":[224.7,224.5,225,226.7,225.7,224.1,225.5,224.2,225.2,224.5,224.1,228,224.9,224.3,224]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,35.1,34.3,34.6,34.7,34,34.7,34.2,34.9,34.9,34,33.9,34.2,34.1,34.4],"script":[6.9,7,7.4,7.2,7.2,6.9,7.3,6.9,6.9,7.3,6.9,6.9,6.9,6.8,6.9],"paint":[26.3,27.2,26,26.5,26.5,26.2,26.5,26.3,27,26.7,26.2,26.1,26.3,26.4,26.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.9,14.3,13.3,14.2,14.2,13.7,13.8,13.3,14.1,14,16.4,14.8,14.2,12.9,13.7],"script":[11.9,11.9,11.4,12.2,12.1,11.8,11.8,11.6,11.6,11.9,14.5,12.9,12.2,11.6,11.7],"paint":[1,1.8,1,0.9,0.9,0.9,1.4,1,1.4,1.6,0.7,0.3,1.2,1.1,1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7590389251708984]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.873154640197754]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.86092472076416]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.515194892883301]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.585633277893066]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[23.9,23.6,24,23.3,23.4,23.6,23.4,23.5,24.1,23.5,23.7,23.9,24.3,23.4,24],"script":[2.3,2.2,2.3,2.2,2.2,2.2,2.2,2.2,2.3,2.3,2.3,2.2,2.4,2.2,2.3],"paint":[21.2,21,21.3,20.7,20.8,21,20.8,20.9,21.4,20.8,21,21.3,21.5,20.8,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.7,27,27.1,27,26.7,27,27,26.6,26.8,26.5,26.7,26.4,26.5,26.5],"script":[4.2,4.2,4.5,4.1,4.4,4.3,4.5,4.2,4.3,4.2,4.3,4.4,4.2,4.2,4.2],"paint":[22.2,22.1,22.1,22.5,22.2,22,22.1,22.3,21.9,22.2,21.8,21.8,21.8,21.9,21.8]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,11.7,13.3,11.3,12.2,12.6,11.7,12,12.1,12.1,12.2,11.8,12.6,12.1,12.1],"script":[1.1,0.9,2.6,1,1.8,1.5,1.1,1.4,1.5,1.5,1.7,1.6,1.1,1,2],"paint":[8.6,9.8,9.7,9.2,9.1,9.8,9.7,9.2,8.7,9.7,9.8,9.2,9.9,9.9,8.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[2.8,5.8,6.1,3.8,3.7,2.6,4.6,3.3,2.7,3.4,4.8,4.2,3.8,4.2,5,2.8,4.3,3.1,3.5,5.6,3.2,2.8,7.1,3.4,5.3],"script":[0.6,0.2,1.2,1.4,1.1,0.8,0.9,1.4,0.2,1.1,1.3,1,1.1,0.6,0.2,1.1,0.8,0.8,1.1,1.2,0.9,0.3,1.2,0.8,0.2],"paint":[1.1,2.7,1.4,2.3,2.5,1.3,1.5,1.1,1.4,1.3,2.2,1.4,1.9,2.1,2.4,1.7,1.6,1.1,1.5,1.6,1.7,2.3,1.6,1.6,2.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.5,16.2,15.4,14.5,15.4,14.1,16.3,17.4,15.8,14.1,15.3,15.2,15.8,15.5],"script":[1.8,1.5,1.6,1,1.4,1.6,1.8,1.7,2.1,1.9,1.5,1.8,1.4,1.5,2.4],"paint":[11.4,11.8,13.4,12.9,12.1,12.6,10.5,13.6,13.6,12.4,11.1,12.6,12.6,13.6,12]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,11.4,11.1,10.6,11,10.8,10.8,11,10.7,10.5,11.4,10.7,10.9,11.3,10.9],"script":[0.3,0.6,0.5,0.6,0.6,0.6,0.5,0.4,0.4,0.4,0.4,0.6,0.6,0.6,0.4],"paint":[9.5,10.3,9.6,9.4,9.8,9.9,9.1,9.9,9.8,9.3,10.7,9.6,9.5,10.1,9.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.1,259.7,261.7,259.3,257.1,259.9,258.2,257.2,259.6,260,259.5,261.2,257.3,259.9,258.1],"script":[25.4,25.4,27.6,25.7,25.3,25.7,25.7,25.1,25.3,27.6,25.6,27.1,25.2,25.2,25.1],"paint":[226.3,226.8,226.4,226.2,224.3,226.7,224.9,224.7,226.8,224.9,225.8,226.7,224.6,226.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28.4,29.9,28.4,29.5,28.5,28.6,28.8,28.5,28.2,28.6,28,29.5,28.8,30],"script":[2.3,2.5,2.6,2.4,2.4,2.4,2.4,2.4,2.3,2.3,2.4,2.4,2.5,2.7,2.6],"paint":[24.9,25.1,26.5,25.2,26.3,25.3,25.4,25.6,25.4,25.2,25.4,24.9,26.2,25.2,26.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,10.5,10.6,10.7,10.6,10.7,10.8,10.7,11.3,10.3,11.3,11,10.4,10.6,11.1],"script":[10.4,7.9,8.6,8.6,9.3,8.7,9.4,8.8,9.1,8.7,9.5,9.1,8.7,8.8,9.8],"paint":[1.7,2,1.6,1.2,0.2,1.2,0.8,0.2,0.9,0.2,1.6,0.9,0.6,0.9,0.5]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3347587585449219]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1276721954345703]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1886863708496094]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7997112274169922]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.539783477783203]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[175.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.3,23.3,23.5,23.6,24,23.7,23.7,23.2,23.5,23.2,23.4,23.5,23.7,23.6],"script":[1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.9,1.9],"paint":[21.1,21.1,21.1,21.2,21.3,21.7,21.4,21.4,21,21.3,21,21.1,21.3,21.5,21.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.8,26.6,26.3,26.8,26.6,27,26.8,25.9,26.7,26.4,26.9,27.1,26.9,27.3,27],"script":[4,3.9,3.9,4.2,4,4.1,3.9,4,4,4,4.2,4,4,4.4,4.1],"paint":[22.4,22.3,21.9,22.2,22.2,22.5,22.5,21.5,22.3,22,22.3,22.7,22.4,22.5,22.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.1,10.6,10.3,10.5,10,11,10.4,10.2,9.6,10.6,10.5,10.4,10.5,10],"script":[1.1,0.1,0.9,0.5,0.1,0.5,1.1,0.1,0.1,0.1,0.9,1.1,0.5,1,0.6],"paint":[9.7,9.4,8.6,8.9,9,8.5,8.9,9.7,9.6,8.4,8.7,8.2,8.2,8.4,7.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.4,3,2.5,2.3,2.2,3.2,2.9,3.2,2.6,2.8,2.9,2.7,2.4,3,2,2.6,2.5,2.8,2.9,2.9,3,1.8,2.6,2.7],"script":[0.8,0.1,0.9,0.1,0.1,0.7,0.9,0.4,1.1,0.3,0.8,0.5,0.9,0.1,1.1,0.1,0.1,0.1,0.8,0.6,0.5,0.8,0.3,0.1,0.9],"paint":[2.2,1.6,1.6,1.6,1.3,1.3,2.2,1.5,2,2.2,1.9,2.2,0.6,2.2,1.8,1,2.3,1.5,1.8,2,1.5,1.6,1.4,2.4,1.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[13.8,14.2,12.8,14,14.3,13.3,13.7,14.2,13.7,13.4,13.7,13.5,14.4,13.9,13.9],"script":[1,1.2,0.8,1.3,1.4,0.9,1.1,1.2,0.6,1.1,1,0.6,1.4,0.8,1.2],"paint":[11.8,11.4,10.9,11.8,11.4,11.8,11.1,12.3,12.1,10.4,12.2,11.5,11.5,11.7,11.4]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.8,10.4,10.3,10.4,10.5,10.3,10.3,10.4,10.4,10.7,10.3,10.6,10.3],"script":[0.4,0.4,0.5,0.2,0.5,0.2,0.4,0.5,0.5,0.5,0.3,0.3,0.2,0.3,0.2],"paint":[9.7,9.7,9.6,9.6,9.2,9.6,9.7,8.9,9.1,9.2,9.5,9.9,9.5,9.9,9.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.4,255.6,257.4,256.6,255.8,256.8,258.8,255.2,257.2,257.6,258.7,258.2,257.6,258.5,255.4],"script":[26.4,25.7,26.3,26.5,26.5,25.9,26.3,26.2,26.3,26.6,25.7,26.5,26.2,27.4,26.4],"paint":[223.9,222.6,223.8,222.7,221.9,222.9,225.1,221.7,223.5,223.7,225,224.4,224.1,223.9,221.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.1,27.4,27.6,27.4,27.8,27.5,27.3,27.6,27.4,27.5,27.4,27.6,27.9,27.4],"script":[1.8,1.9,1.9,2,1.9,2,2,1.9,1.9,2,1.9,1.9,1.9,1.9,1.9],"paint":[24.6,24.5,24.7,24.9,24.8,25,24.8,24.6,25,24.7,24.8,24.8,24.9,25.3,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,8.8,9.6,10.3,9.4,9.7,9.5,9.4,10.7,10.2,10.3,10.2,10.1,9.7,10.2],"script":[7.2,7.2,7.8,8.1,7.4,7.8,7.7,7.8,9,7.6,8.2,8.3,8.1,7.9,7.7],"paint":[1.3,0.2,0.2,0.2,1.8,1,0.8,0.7,1.1,1.4,1.9,0.9,1.1,1.6,0.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48917293548583984]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.166651725769043]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.193112373352051]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6436395645141602]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86898136138916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[26.5,27.2,27.2,27,27.2,26.5,26.7,26.9,27.1,26.8,26.9,27.2,26.9,26.9,26.9],"script":[5.1,5.9,5.3,5.3,5.6,5.2,5.2,5.6,5.4,5.3,5.4,5.7,5.6,5.3,5.3],"paint":[20.9,20.8,21.3,21.2,21.1,20.7,21,20.8,21.1,21,20.9,20.9,20.7,21,21]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.8,31.9,32.3,31.8,31.8,32.3,31.5,31.8,31.9,32.1,32.6,32,32.1,32.5,32.3],"script":[8.4,8.5,8.5,8.5,8.6,8.6,8.6,8.4,8.6,8.6,8.6,8.6,8.6,8.6,8.7],"paint":[22.8,22.8,23.2,22.8,22.7,23.1,22.3,22.8,22.7,22.9,23.4,22.8,23,23.2,23]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,11.4,10.7,11.2,12.1,10.3,10.5,10.9,11.2,11.3,10.3,10.2,12,10.7,10.6],"script":[0.7,1.1,0.9,0.8,0.9,0.8,0.6,0.6,1.2,0.6,0.7,0.5,1.1,0.8,0.8],"paint":[7.9,9,8.3,9.1,9.9,8.5,8.6,9.1,8.6,9.1,8.5,8.4,9.1,8.2,8.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,3,2.6,1.7,2.7,2.4,2.1,2.1,2.4,2.1,2.9,1.9,2.1,2.7,2.7,2.7,1.9,1.9,2.6,1.9,2.6,2.3,2,3.4,2.2],"script":[0,0.7,0,0.1,0.4,0.4,0,0.2,0,0.5,0.8,0,0.5,0,0,0,0,0,0,0,0.6,0.4,0,0,0],"paint":[1.7,1.5,1.5,1.5,2.2,1.8,1.9,1.3,1.9,1.1,1.6,1,1,2.1,2.5,2.5,1.7,1,2.1,1.7,1.7,1.8,1.1,1.1,2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[21.7,21.7,24.1,22.3,20.9,21.2,22.1,21.9,22.2,23.2,20.8,20.6,21.6,20.7,21.2],"script":[6.4,7.4,7.6,7.1,6.1,6.6,7.6,7.2,6.9,7.3,6.7,6.3,7.1,6.7,7.5],"paint":[13.7,11.6,14.6,13.8,12.6,11.8,12.1,12.2,13.2,13.5,12,13.4,12.9,11.9,11.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.7,14.9,15,15.1,15.5,15,14.7,15.1,15,15,14.6,15.1,14.6,15.2,15],"script":[4.3,4.3,4.3,4.3,4.4,4.3,4.3,4.5,4.3,4.2,4.1,4.3,4.2,4.3,4.2],"paint":[9.6,10,9.9,10.1,10.4,10.4,9.4,9.6,10.1,10.2,9.8,9.9,9.2,10,10]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[284.7,287.5,288.1,288.1,288.9,285.6,288.4,286.2,288.2,289.9,288.2,288.3,288.8,288,287.5],"script":[55,56.3,56.2,56.9,56.6,60.7,57,56,56.4,58.1,56.8,56.8,57.5,55.4,55.8],"paint":[222.2,223.6,224.1,223.3,224.5,217.1,223.7,222.4,224,224,223.4,223.7,223.5,225.1,223.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,34.9,35.2,34.8,34.7,34.7,34.8,35.2,35.3,34.7,35.1,35.1,34.1,35.1,34.4],"script":[7.7,7.7,8.2,7.9,7.7,7.6,7.9,7.8,7.8,8,7.6,7.9,7.5,7.7,7.7],"paint":[26.6,26.2,26,25.9,25.9,26.1,25.9,26.5,26.5,25.7,26.5,26.3,25.6,26.4,25.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.3,10.3,12.2,10.4,10.8,10.9,10.9,10.6,11.5,11.5,10.7,9.8,10.5,10.7],"script":[8,8,8.1,10.2,8.3,8.4,8.5,9.1,9,9.3,9.4,8.6,8.7,8.7,8.8],"paint":[0.9,0.8,2,0.7,1.4,0.7,0.8,0.9,0.7,0.7,1,1,0.2,1,1.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6073207855224609]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7855224609375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7842607498168945]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7987785339355469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.59042453765869]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.9,28.7,28.8,29.2,29,28.5,29.1,28.4,28.7,28.4,28.9,29,29.5,28.6],"script":[6.4,6.3,6.5,6.1,6.5,6.6,6.3,6.6,6.1,6.5,6.1,6.5,6.6,6.6,6.2],"paint":[21.8,22,21.6,22.1,22.1,21.8,21.7,21.9,21.8,21.7,21.7,21.9,21.9,22.3,21.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.4,32.8,32.3,32.6,32.1,32.8,32.2,33,32.4,32,32.7,32.8,32.3,32.8,32.2],"script":[9.2,8.9,9.1,9.2,9,9.1,9,9.2,8.9,8.8,9.1,9.2,9.1,9.2,8.8],"paint":[23.6,23.3,22.6,22.8,22.5,23.2,22.6,23.2,22.9,22.6,23.1,23,22.6,23,22.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,10.5,10.5,10.1,10,11.1,10.3,10.6,10.4,10.9,10.5,10.9,13.5,10.2,10.4],"script":[0.6,0.2,0.5,0.9,0.7,1.1,0.2,1,0.6,0.8,0.6,0.9,1.1,1.1,0.2],"paint":[8.4,9.4,8.6,8.2,8.3,9,9.3,8,8.9,9.4,9.6,9,10.8,8.1,9.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[6.1,3,2.2,2.4,2.5,1.9,2.8,2.4,2.5,2.1,2.3,2.4,2.5,2.4,2.2,3,2.3,1.5,2.4,2.3,2.1,2.5,2.2,3,2.5],"script":[0,0.8,0,0,0,0,0,0.7,0,0.5,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0],"paint":[2.1,1.4,1.4,1.9,1.5,1.3,1.7,1.5,1.9,1,1.5,1.5,2.4,2.2,1.7,1.6,1.7,0.9,1.5,2.1,1.6,2.3,1.4,1.6,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.5,22.8,24,22.8,23.3,22.7,21.9,22.9,22.3,22.2,23.4,23.3,23.2,23.6],"script":[9.4,8.3,8.2,9.1,8.8,8.4,8.3,8,7.7,7.9,8.2,8.2,8.7,9.4,8.9],"paint":[12.3,13.7,13.1,13.4,11.6,13.7,13,12.1,13.3,12.2,11.8,13.2,11.8,11.2,12.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.3,15.6,15.2,16.3,15.3,16.3,16.3,15.7,16.2,16.9,16,15.2,15.6,15.6,15.4],"script":[5.5,4.9,4.6,5.1,4.9,5.3,5.3,5,5.2,5.3,5,4.9,4.8,5,4.9],"paint":[9.7,10,10.3,10.3,9.7,9.8,10.2,10.1,10,10.8,10.2,9.8,10.2,9.9,9.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.5,291.6,291.7,291.9,289.3,293,292.9,293.4,290,293.8,289.1,293.1,292.1,290.4,291.9],"script":[63.8,61.6,60.8,60.9,65.3,60.7,61.4,62.5,60.4,61.7,64.7,61.9,61.4,66.8,61.4],"paint":[216.2,222.3,223.2,223.2,216.1,224.8,223.4,223.2,222.1,224.6,216.7,223.5,223.2,215.4,222.8]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.3,36.5,36.6,37,36.3,36.7,36.8,36.1,37.2,36.4,36.5,36.7,36.9,36.6,36.3],"script":[8.8,8.3,8.7,8.7,8.7,8.7,8.7,8.6,8.8,8.7,8.8,8.5,8.7,8.6,8.7],"paint":[27.5,27.2,26.8,27.3,26.6,27,27.1,26.5,27.3,26.7,26.6,27.2,27.3,27,26.6]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.9,10.8,11.3,10.3,11.2,10.3,10.9,11.4,12.4,10.7,11.5,11.9,10.4],"script":[8.7,8.3,8.8,8.5,8.9,9,9.4,8.8,8.5,9,10.2,8.9,9.7,9.9,9],"paint":[0.9,1.6,0.3,1.2,0.6,0.2,1.1,1,1.8,1,1.9,0.6,0.8,1.8,0.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6901874542236328]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8683900833129883]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8625049591064453]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8650588989257812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.65694522857666]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.4]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.3,27.6,27.6,27.5,27.8,28,27.9,27.4,28.1,28.4,28.1,27.5,27.9,27.9],"script":[5.4,5.8,5.3,5.6,5.7,5.4,5.3,5.4,5.6,5.6,5.6,5.7,5.4,5.5,5.8],"paint":[22.2,21.9,21.7,21.5,21.3,21.8,22.1,21.9,21.3,21.9,22.2,21.8,21.6,21.8,21.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[33.1,32.7,32.6,32.9,32.9,32.5,32.1,32.3,32.3,31.8,32.7,32.2,32.6,32.6,32.9],"script":[8.6,8.4,8.3,8.8,8.4,8.5,8.3,8.5,8.4,8.1,8.5,8.3,8.5,8.3,8.8],"paint":[23.9,23.7,23.6,23.5,23.9,23.3,23.1,23.2,23.2,23.1,23.5,23.3,23.5,23.7,23.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.8,12.7,12.5,12.6,12.8,12.8,12.5,13.4,13.1,12.8,12.8,14.1,12.5,12.7],"script":[1.3,1.2,1.3,1.6,1.8,1.8,1.6,1,2.1,1.8,1.5,1.6,2.4,2.1,1.3],"paint":[8.1,10.5,9.2,9.9,9.7,9.4,9.9,10,10.5,9.6,9.5,9.6,10,9.1,10.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[5.6,2.7,2.4,2.2,1.9,2.7,2.7,2.5,3.1,2.2,2.2,2.1,2.4,2.4,2.2,2.5,2.7,2,2.8,2.9,2.7,2.2,2,2.2,2.6],"script":[0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.7,1,0,0,0.2,0,0.4],"paint":[1.5,1.2,1.6,2,1,1.6,2,1.3,2,1.1,1.1,1.9,1.7,1.9,1.3,1.5,1.5,1,2,1.8,2.6,1.2,1.2,1.2,2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14.2,14.2,14.5,14.4,14.3,14,13.9,14.5,14.2,13.9,13.7,14.7,13.8,13.4,13],"script":[0.7,0.9,1.2,1.2,1.3,0.6,0.5,1.4,1,1.1,0.7,1.4,0.8,0.2,0.2],"paint":[12.5,12.5,12.3,12,12.1,11.9,11.7,12.3,12.2,11.1,12.3,11.7,11.4,12,11.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.5,10.8,11.3,10.3,10.4,10.4,10.6,10.9,10.7,10.5,10.6,10.6,10.6,10.7],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10,9.7,10.2,10.8,9.3,9.8,9.6,9.6,9.9,10.2,9.5,9.7,9.9,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[291.5,291.9,289.2,295.9,289.8,290.1,291.5,291.1,294.7,291.7,292,291.4,290.5,292.7,290],"script":[61.3,60.9,60.1,59.3,61.2,60.1,60.9,61.2,59.3,59.2,61.2,60.9,61,61.2,60.4],"paint":[222.1,222.9,221.1,227.5,220.5,221.9,222.6,221.8,227,224.3,222.8,222.4,221.4,222.9,221.6]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.9,34.2,34.2,33.8,33.5,33.2,32.3,33.4,33,33.7,32.8,32.8,34.2,33],"script":[6.3,5.8,6.2,6.3,6.3,6.2,5.9,5.8,6.3,6.1,6.2,5.9,5.8,6.2,5.8],"paint":[26.3,26.2,27,26.9,26.5,26.3,26.3,25.5,26.1,26,26.5,26,26,27,26.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,10.8,10.8,10.9,11.9,11.6,11.5,11.2,10.9,11.2,12,12.3,11.1,10.7,10.8],"script":[9.4,8.6,9,8.8,10.2,9.4,9.7,9.1,9,9,10.5,10.5,9.5,8.7,9.1],"paint":[1,1,1,1.1,1,1.5,1,0.3,1.2,0.5,0.9,0.2,0.7,0.9,1.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6036882400512695]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7007579803466797]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.730854034423828]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8720874786376953]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.16014575958252]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.7,32.1,31.7,31.6,32.6,34.6,32.3,33.5,32.6,27.3,27,35.3,33.6,26.9,34.9],"script":[4.5,4.9,5,4.5,5,4.9,5,5,4.8,4.7,4.6,4.9,5,4.6,5],"paint":[21.7,21.6,21.4,21.8,21.7,21.4,21.6,21.7,21.4,22.1,22.2,21.7,21.6,21.9,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[33.3,28.4,31.6,30.9,31.2,32,32,31.3,30.7,31.5,33.3,32.2,31,31.7,31.9],"script":[7.4,6.8,6.8,6.8,6.9,6.7,6.7,6.7,6.8,7,6.6,6.9,6.8,6.8,6.9],"paint":[22.4,21.2,21.6,21.3,21.9,21.5,21.4,22,21.6,21.4,21.3,21.8,21.7,21.5,21.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,12.4,13,12.7,12.6,12.2,30.1,12.1,12.7,11.8,12.3,12.7,13.5,12.7,12.9],"script":[2.1,2,2.9,2.5,2.9,2.5,2.5,2,2.7,2.4,2.2,2.7,2.7,2.8,2.2],"paint":[10.3,8,9.8,9.4,7.9,8.7,11.4,9.3,9.7,9.2,8.9,9.8,10.7,9.1,9.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[4.9,4.7,4.1,4.9,4.2,4.3,4.2,4.4,4.6,4.3,4.3,4.4,3.7,4.5,5.1,5.2,4.9,4.3,4.4,4.6,4.3,5.2,4.6,4,3.9],"script":[1.4,2.2,1.6,2.7,2.3,2.1,1,1.9,2,1.9,2.1,2.2,1.1,1.6,2.3,2.4,2.3,2,2,1.9,1.8,1.7,2.2,1.2,1.7],"paint":[1.4,2.4,2.3,2,1.3,1.7,2.5,2.4,1.8,2.3,1.5,1.3,2.1,2.8,2.7,2.6,1.6,1.2,1.5,1.7,2.3,2.6,1.8,2.4,1.2]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.2,30.9,18.6,31.9,33,15.3,30.7,14.9,32.5,33.9,32.9,35.3,32.3,31.8,31.3],"script":[1.8,1.9,2.3,1.6,1.9,1.6,1.9,1.8,1.8,1.5,2.4,2.3,2.2,2,1.6],"paint":[12.5,12.9,16.1,13.5,15.4,13.2,12.6,12.9,14.7,15.1,14.5,16.1,14,13.6,13]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,14.7,10.7,10.7,10.6,13.3,10.7,12.6,10.8,11.4,11.5,13.2,10.8,10.8,13.3],"script":[1.1,1.2,1.2,1.2,1.3,1.2,1.4,1.2,1.5,1.1,0.9,1,1.1,1.2,0.9],"paint":[9.1,9.3,9.3,9.4,9,9.1,9,9.3,9.2,9.9,9.4,9.7,9.1,9.4,9.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[272.7,280.5,280.4,283,278.1,279.2,280.5,280.8,278.2,281.4,282,274.5,278.6,280,281.6],"script":[45.6,46.6,45.3,46.3,45.4,46.2,46,47.2,46.2,46.2,45.7,46.1,46.1,45.2,45.3],"paint":[223.1,223.3,223.7,225.5,224.3,223.8,223.4,224.6,222.7,223.7,225.8,224.5,223.7,223.4,224.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,39.5,40.2,38.5,40,39.1,31.3,39.5,41.1,38.9,41,40.5,39.7,40.7,40.7],"script":[4.7,4.7,4.7,4.6,4.7,4.6,5,4.7,4.5,4.7,4.8,4.8,4.7,4.7,4.8],"paint":[25.1,24.8,24.6,24,24.7,24.5,26,24.8,25.3,24.4,25.5,25,24.4,25.4,25.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,28.2,28.3,11.7,29.1,11.9,28.8,11.5,28.5,29.7,28.2,27.7,27.7,28.8,28.7],"script":[9.8,10,10.7,9.6,11.3,9.8,10.2,10,9.9,11.3,10.2,9.8,9.8,10.6,11.1],"paint":[1,2,1,1.9,0.9,0.8,2,1.2,2.4,1.5,1.3,2.4,0.3,1.4,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8477945327758789]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1807260513305664]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.205763816833496]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1345634460449219]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.75906753540039]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.3,32.4,32.5,32.2,32.2,32.4,32.7,33.4,32.6,32.3,32.5,32.2,32.2,32.6],"script":[11.1,10.4,11.5,11.5,11.3,11.4,11.5,11.7,12.1,11.5,11.4,11.4,11.4,11.4,11.5],"paint":[19.9,20.4,20.4,20.5,20.3,20.3,20.4,20.4,20.6,20.6,20.3,20.6,20.2,20.3,20.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.8,36.1,36.5,36.7,36.2,36.8,36.3,36.1,36.4,35.9,37.3,36.8,36.2,38.1,36.3],"script":[14.2,14.5,14.6,15,14.5,14.7,14.6,14.5,14.4,14.3,13.8,14.5,14.4,14.4,14.3],"paint":[21.1,21,21.3,21.2,21.2,21.6,21.2,21,21.4,21.1,22.9,21.7,21.2,23.2,21.5]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.2,23.4,24.4,23.6,24.5,25.2,24.3,26.5,25.9,24.8,25.3,23.5,25,24.1,24],"script":[12.1,12.3,12.5,11.5,12.5,12.8,12.7,12.8,13.2,12.4,12.2,12.1,12.7,12.2,12.5],"paint":[9.6,9.7,9.3,10.9,10.6,10.6,8.7,11.5,9.9,9.6,12,9.6,10,10.7,8.8]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[6.5,6.9,7.6,6.8,8.5,8.1,8.3,8.2,7.2,7.2,6.8,8.5,7.9,6.9,7.8,7.1,7.5,7.3,7.6,7,8.1,7.5,6.8,7.2,7.1],"script":[4.3,4.3,5.3,5.1,5.6,5.3,5.1,5.4,4.8,5.3,4.7,5.6,5.6,4.8,4.9,4.7,4.8,4.9,5.1,5,5.1,4.8,4.9,4.3,4.6],"paint":[1.3,1.8,1.8,1.2,1.1,1.2,1.4,0.7,2.3,1.8,1.2,1.4,1.8,1.8,1.6,2.2,0.8,1.8,1.7,1.3,1.9,1.8,1.2,2.5,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[107,112.5,109.9,110.9,107.7,108.9,108.6,110.5,113.9,110.3,108.5,108,106.8,110.2,107],"script":[23.8,22.9,21.9,24.5,23.5,23.8,22.8,23.8,23.4,23.4,24.5,22.5,22.5,23.8,22.9],"paint":[81,86.8,85.7,84.1,82.7,83.2,83.4,84.7,88.6,84.6,81.3,82.6,81.6,84.2,81.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.4,17.3,16.6,17.1,17.6,17.6,17.1,16.7,16.2,17.2,16.4,16.7,17.1,16.6],"script":[5.6,5.4,5.8,5.9,6.3,5.9,6.1,5.7,5.6,5.5,5.6,5.4,6,5.6,5.5],"paint":[10.3,9.5,10.5,9.8,9.9,10.9,10.6,10.2,9.8,9.6,10.5,10.3,9.7,10.6,10]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[437.3,433.2,432.4,444.4,439.8,436,435.1,445.4,439.1,438.5,444.5,443.3,439.7,440.4,439.7],"script":[205.3,205.5,205.3,216.2,210.5,205,208.1,212.6,210.9,208.9,212.6,216.2,204.6,208.5,209.7],"paint":[225,220.7,220,221,222,223.5,219.7,225,221.1,222.4,224.6,219.4,227.9,224.4,222.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.5,40.4,39.7,40.1,40.2,40.1,40.3,39.7,39.5,39.3,39.9,39.1,40,40.1],"script":[13.5,13.8,13.8,13.9,14,13.9,14.1,14.2,13.9,13.8,13.8,14,13.5,13.9,13.9],"paint":[25.4,24.8,25.6,24.9,25.1,25.3,25.1,25.2,24.9,24.8,24.6,24.9,24.7,25.1,25.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.4,15.3,15.4,14.9,14.5,14.5,15,14.1,15.3,15.6,15.5,14.9,15.2,16.2,15.2],"script":[14.2,13,12.8,12.7,11.9,12,12.6,12.5,13.1,13.4,12.8,13.2,13.3,14.2,12.9],"paint":[0.7,1.9,1.4,1.2,0.3,1.1,1.2,0.8,1.3,1.1,2.4,0.3,1,1.1,1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1450309753417969]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.065735816955566]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.735942840576172]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8616676330566406]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.863115310668945]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[164.4]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.9,23.8,23.4,23.1,23.2,23.4,23.5,23.3,23.5,23.3,23.6,22.4,23.1,23.3],"script":[1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.4],"paint":[21.6,22.1,22.1,21.6,21.4,21.4,21.6,21.7,21.5,21.8,21.5,21.8,20.7,21.3,21.5]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.6,26.1,26.1,26.1,26,26.1,26.1,26,26.4,26.1,25.8,26.2,26.1,26.2,26.2],"script":[3.3,3.2,3.3,3.4,3.3,3.2,3.3,3.3,3.3,3.3,3.3,3.3,3.1,3.3,3.3],"paint":[21.9,22.4,22.4,22.3,22.3,22.4,22.4,22.3,22.6,22.5,22.1,22.5,22.6,22.4,22.5]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,12.4,12.2,12.5,11.1,10.1,10.3,9.8,10.4,11.1,10.9,10.2,10.8,10.7,11.4],"script":[0.2,0.6,0.5,0.1,0.1,0.1,0.1,0.1,0.1,1,0.5,0.1,0.1,0.9,1.5],"paint":[14.4,10.5,10.7,10.4,9.9,9.1,9.2,8.3,9.1,8.9,9.4,9.2,9,8.2,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.3,2.8,2.5,3.2,2.4,2.6,2.6,2.3,2.5,1.8,2.8,2.3,2.1,2.2,2.2,2.4,2.4,2.1,2.5,2.6,2.4,2.7,2.4,2.8],"script":[0.1,0.1,0.1,0.1,1,0.1,0.6,0.6,0.4,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.5,0.1,0.6,0.3,0.1,0.7,0.1,0.1,0.8],"paint":[1.7,2.1,2.1,1.5,1.4,1.4,1.6,1.6,1.7,2.3,1.6,2.6,1.2,1,2,1.7,1.1,2.2,1.3,2,2.4,1.5,2.5,1.7,0.8]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.3,12.4,13.1,12.6,12.2,14.7,14.9,15.1,13.1,11.9,12.2,12.2,12.2,12.7],"script":[0.1,0,0,0.4,0.1,0.1,0.9,0,0.2,0.7,0.1,0.1,0.1,0.1,0],"paint":[11.2,11.1,11.5,11.2,11.2,10.9,12.3,13.5,13.5,11.3,11.5,10.9,10.5,11.6,11]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.6,10.3,10.3,10.4,11,10.6,9.9,10.2,10.3,10.7,10.3,10.4,10.1],"script":[0.3,0.5,0.3,0.1,0.4,0.2,0.3,0.4,0.1,0.4,0.2,0.4,0.1,0.1,0.1],"paint":[9.8,9.6,9.5,9.5,9.3,9.6,10,9.7,9.5,8.9,9.6,9.7,9.3,9.5,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.2,241.4,242.9,242.1,242.2,241.8,240.2,242,242,242.8,242.7,242.7,242.8,244,241.2],"script":[15.4,15.4,15.1,15.4,15.1,15.3,15.1,15.4,14.8,15.1,15,15.2,15.3,15.3,15.2],"paint":[220.3,218.6,220.3,219.2,219.5,219,217.4,219.2,219.6,220.1,220.1,220,219.9,221.1,218.6]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,26.6,26.6,26.9,27.2,27,27.5,26.9,27.7,27.4,26.9,26.8,26.9,26.9,28],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.4,1.5,1.4,1.4,1.4,1.4],"paint":[24.9,24.5,24.5,24.8,25,24.9,25.3,24.8,25.4,25.2,24.7,24.7,24.8,24.8,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,10.1,10,9.1,10.7,9.6,9.4,9.4,10.1,10.4,10.3,10.7,9.4,10,10.1],"script":[7.2,7.7,7.5,7.8,8.4,7.8,7.7,7.7,8.3,8,8.2,8.6,7.6,8,8.6],"paint":[0.9,0.9,1.3,1.1,1.3,0.8,0.2,0.6,1,1.4,1.4,1.3,0.4,0.2,0.3]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46895599365234375]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9677743911743164]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.928619384765625]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6171340942382812]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013200759887695]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23,23.3,23.4,23.1,23,23.5,22.8,22.9,22.6,22.8,23.6,22.8,23.1,22.9,23.1],"script":[1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[21.4,21.7,21.8,21.5,21.4,21.9,21.2,21.3,21.1,21.2,22,21.2,21.5,21.3,21.5]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.8,26,26.1,26,25.8,26.1,26,26,26.2,25.8,26.1,26,25.7,25.7],"script":[3.2,3.3,3.2,3.3,3.2,3.1,3.3,3.1,3.4,3.4,3.1,3.2,3.2,3.2,3.2],"paint":[22.4,22.1,22.4,22.4,22.4,22.3,22.4,22.4,22.3,22.4,22.2,22.6,22.4,22.1,22.2]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,9.6,10,9.4,10.3,9.7,10,9.6,9.3,10.3,9.7,9.8,11.6,9.5,9.5],"script":[0.1,0.1,0.4,0.1,0.7,0.1,0.8,0.1,0.1,0.6,0.1,0.1,1.4,0.8,0.3],"paint":[9.2,8.4,8.3,8.4,7.9,8.7,8,8,8,8.5,8.7,8.8,9.1,8,8]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.7,2.8,2.6,2.4,3.6,2.4,2.1,2.4,2.2,1.8,1.6,2.1,2.5,1.6,2.6,2.3,2.8,2.5,2.2,2.4,2.2,2.2,2.7,2.4],"script":[0,0.7,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0.5,0,0.8,0,0,0,0,0,0.5],"paint":[2.2,1.9,1.2,2.5,1.9,1.4,2.3,1.5,2.3,1.1,1.6,1,2,1.5,0.9,1.7,1.3,2.6,0.4,1.7,1.9,1.7,2.1,1.7,1.5]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[13.3,12.5,12.7,12.3,12.9,13,12,11.8,12.7,12.7,12.1,12.8,12.2,12.6,12.7],"script":[0.7,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0.4,0.1,0.1,0,0.1,0.3],"paint":[11.9,11.3,11.3,9.9,12,11.8,11.3,11.2,11.7,11.6,11.3,11.8,11.2,11.7,11.4]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.1,12.2,10.1,10.1,10,10.4,9.9,9.9,10.2,9.9,10.3,10.2,10.2,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3],"paint":[9.5,9.8,11.3,9.5,9.5,9,9.7,9.6,9.2,9.3,8.8,9.8,9.5,9.5,9.2]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[242.9,242,241.7,243.8,242.1,247.4,243.6,241.5,242.1,243.8,244.7,241.9,241.5,246,241.8],"script":[13.1,13.4,13.4,13.2,13.3,13.1,13.1,13.5,13.5,13.2,13.7,13.3,13,14,13.4],"paint":[222.5,221.5,221.2,223,221.8,227.4,222.7,221.1,221.6,222.5,223.8,221.5,221.2,225,221.4]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,26.9,27.1,27,27,27,27.3,26.7,27,26.5,26.7,26.4,26.8,26.7,26.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.3,1.2,1.2,1.3,1.3,1.3],"paint":[24.9,24.8,25.1,25,25,24.9,25.4,24.7,25,24.5,24.8,24.4,24.8,24.7,24.4]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.2,9,9.8,9.4,9.6,9.5,9.2,9.5,9.4,9.9,9.4,8.8,9.1,8.8],"script":[7.5,6.9,7.3,7.7,7.7,7.3,7.1,7.7,7,7.4,7.8,7.8,7.3,7,7.3],"paint":[0.7,1.4,1,1.1,1.1,1.2,1.8,0.7,1.5,0.9,1.1,0.2,0.6,0.6,0.9]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47638511657714844]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7882747650146484]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.800760269165039]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5741634368896484]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.478334426879883]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.7,23.3,23.6,23.5,23.9,24.3,23.4,23.4,23.3,23.4,23.6,23.2,23.8],"script":[1.3,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.9,21.8,21.9,21.5,21.8,21.8,22.1,22.5,21.6,21.7,21.6,21.6,21.9,21.5,21.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,26.4,26.1,25.4,25.9,26.3,25.8,26.2,26.2,26.1,26.3,26.1,26.2,26.5],"script":[3.3,3.3,3.4,3.3,2.9,3.2,3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.4],"paint":[22.4,22.2,22.6,22.4,22.1,22.2,22.6,22.1,22.5,22.5,22.3,22.5,22.3,22.5,22.8]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,10.3,9.8,10.2,10.4,10.5,9.8,10.5,11.1,10.4,10.6,10.3,11.3,10.2,10.8],"script":[0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.2,0.4,0.6,0.3,0.1,0.1,0.7],"paint":[10.6,9.6,8,9.1,8.9,9.6,8.7,9.4,9.5,8.8,8.7,9.2,9.8,8.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.5,1.8,2.3,2,2.5,2.7,2.6,1.9,1.8,1.8,2.5,2.5,2.6,2.3,2,2.3,2.3,2.5,2.2,2.4,2.2,1.9,2.3,2.6],"script":[0,0,0.2,0.6,0.2,0.4,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0.3],"paint":[1.8,1.6,1.1,1.6,1,1.6,2.1,1.3,1.1,1.7,1.7,2.3,1.9,2.5,1.5,1.9,2.2,1.7,2,2.1,2.1,1.4,1.2,2,2.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.7,12.8,13.2,13.4,13.9,13,13.2,13.3,14.7,12.9,12.3,13.2,12.3,13.2],"script":[0.1,0.4,0.4,0.7,0.4,0.1,0.6,0.4,0.4,0.7,0.1,0.1,0.8,0.1,0.1],"paint":[12,11,11.2,11.5,11.7,13,11.2,11.7,11.8,13.1,10.9,11.7,11.1,10.5,12.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,11,10.7,10.4,10.9,10.7,11,10.3,10.1,10.8,10.5,10.1,10.6,10.3,10.3],"script":[0.1,0.1,0,0.1,0.1,0.2,0.2,0,0.3,0.1,0.3,0.1,0.1,0.3,0.1],"paint":[9.9,10.4,10.1,9.8,10.2,9.8,10.2,9.7,9.3,10.2,9.3,9.5,9.7,9.2,9.6]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[240.5,237.7,238.6,241.1,238.1,236.2,237.9,238.9,238.8,238.2,240.1,239.1,239.7,240.8,238.9],"script":[13.9,14,14.2,14.1,13.7,13.9,13.7,14.8,14.1,13.9,13.8,13.9,14.4,14.1,14],"paint":[219.1,216.3,216.9,219.5,216.9,214.8,216.6,216.7,217.4,216.6,218.9,217.9,217.9,218.8,217.5]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.1,27.2,27.3,27.3,27.3,27.2,27.1,28.1,26.9,27.4,27.7,27,27.1,27.6,27.9],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[25.1,25.2,25.3,25.3,25.3,25.2,25,25.9,24.8,25.3,25.7,25,25,25.6,25.7]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,8.5,9.1,9.1,9.7,8.8,10.5,9.7,9.7,10.1,10.7,9.7,10.2,9.3,9.3],"script":[7.6,7.3,7.2,7.3,7.8,7.7,8.2,7.8,7.8,8.2,7.9,7.9,7.9,7.1,6.9],"paint":[1.6,1.1,0.9,0.2,1,0.8,1,1.6,1.1,1.3,0.8,1.6,0.6,1.8,1.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5358676910400391]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.742197036743164]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7609081268310547]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6370124816894531]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.09604549407959]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.8,26,25.9,26.1,25.7,25.8,25.9,26.4,25.7,26,25.8,25.9,26.4,25.7,25.4],"script":[4.1,4.2,4.1,4.1,4.1,4,4.1,4.2,4.1,4.1,4.1,4.2,4.2,4.1,4.1],"paint":[21.3,21.4,21.4,21.6,21.2,21.4,21.4,21.8,21.2,21.5,21.2,21.3,21.8,21.2,21]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.8,29.6,29.7,29.6,29.8,29.7,29.3,29.8,29.5,29,29.6,29.4,29.5,29.7,29.5],"script":[6.8,6.4,7,6.8,6.6,6.6,6.8,6.8,6.5,6.7,6.6,6.6,6.9,6.4,6.8],"paint":[22.4,22.5,22.2,22.2,22.6,22.5,21.9,22.3,22.4,21.6,22.4,22.2,22,22.7,22]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.8,11.2,11.3,10.9,10.4,11.2,10.4,11.9,11,10.9,11,11.9,10.5,10.6],"script":[0.9,0.2,0.6,1.2,1,0.2,0.7,1,1,1.1,0.9,0.9,1.1,0.6,0.7],"paint":[9.5,9.1,8.7,9,8.5,9,9.5,8.1,9.7,8.6,9.1,8,9.8,8.8,9.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.4,3.1,2.3,2.6,3,2.3,2.7,3.1,2,2.9,2.3,2.4,2.7,2.6,2.4,2.2,2.4,3,2.5,2.9,2.5,2.2,2.3,2.4,3.1],"script":[0.1,0.7,0.1,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.7,0.4,0.6,0.5,0.1,0.1,0.1,0.9,0.1,0.9,0.1,0.1,0.1,0.5,0.1],"paint":[1.5,2.2,1.3,1.4,1.1,2,2.5,2.2,1.7,1.6,1.5,1.2,2,1.2,2.2,2,2.2,1.6,2.3,1.5,1.4,1.1,1.4,0.4,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[14.1,12.2,12.2,12.7,12.6,13.2,12.8,13,12.7,12.5,13.2,12.4,13.3,12.9,12.1],"script":[0.1,0.1,0.4,0,0,0.1,0.4,0,0,0,0.1,0.1,0.1,0.8,0],"paint":[12.5,11.1,10.3,11.2,11.5,12.2,10.8,11.8,11.6,11.5,11.3,11.4,12.3,10.8,9.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.4,9.9,11.2,10.3,10.2,10.4,10.3,9.9,10.1,10.3,10.1,10.3,10.1],"script":[0.1,0.2,0.2,0.1,0.3,0.4,0.3,0.2,0.3,0.2,0.2,0.1,0.2,0.1,0.4],"paint":[10.3,9.4,9.7,8.5,10.3,9.2,9.1,9.6,9.6,8.4,9.5,9.6,9.4,9.6,8.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[263,261.7,263.2,261.6,258,260,256.5,262.2,256.6,263.2,262.9,262,264.9,258,263.1],"script":[45.4,45,45.6,46.4,41.5,42.1,41.8,45.5,41.1,45.8,45.5,46.2,46.2,41.9,45.9],"paint":[210.2,209.6,210.4,208.1,209.1,210.4,207.5,209.5,208.3,209.5,210.3,208.6,211.6,209,210.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,29.8,29.7,29.3,30.4,29.4,30.7,29.7,29.7,29.8,29.8,30.5,29.7,29.7,29.8],"script":[3.8,3.7,3.7,3.4,3.5,3.6,3.7,3.5,3.6,3.4,3.8,3.8,3.8,3.9,3.4],"paint":[25.2,25.3,25.1,25.1,26.1,25,26.2,25.4,25.3,25.6,25.1,25.9,25.1,25,25.6]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.9,9.9,9.7,10.8,10.1,9.4,10.2,10.6,9.6,10.9,10.1,10,9.4,10],"script":[8.1,8.3,8.2,7.7,8.2,7.7,7.6,7.8,8.6,7.7,9,8.2,8,6.8,7.9],"paint":[0.2,0.4,1.5,1.3,1.6,1.1,0.9,0.9,1.4,1,1.6,1.6,1,1.5,1.3]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5011138916015625]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.886707305908203]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8896007537841797]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.967710494995117]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.35887145996094]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[25.2,24.4,25.5,24.5,24.7,24.4,24.7,24.4,24.6,24.7,25.3,24.4,24.6,24.4,24.6],"script":[2.8,2.6,2.9,2.7,2.7,2.7,2.7,2.7,2.8,2.6,2.8,2.6,2.6,2.7,2.7],"paint":[22,21.4,22.2,21.4,21.6,21.4,21.6,21.3,21.4,21.7,22.2,21.4,21.6,21.3,21.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[27.8,28.4,27.9,30.3,28.1,27.8,28.6,27.7,27.8,27.9,27.6,27.7,27.5,27.4,27.5],"script":[4.6,5,4.6,5,4.6,4.5,4.5,4.6,4.5,4.6,4.6,4.6,4.6,4.5,4.6],"paint":[22.8,22.8,22.9,24.7,23.1,22.8,23.6,22.7,22.9,22.9,22.6,22.7,22.5,22.4,22.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.1,11.6,11.1,11.6,10.3,10.8,10.1,10.9,10.7,9.8,10.6,12.6,10.2,10.9],"script":[0.2,0.1,0.8,1,1,0.3,0.5,0.1,0.5,0.6,0.6,0.3,1,0.1,0.1],"paint":[9.9,8.8,9.1,9.2,9.5,8.5,10,9,9,7.9,7.7,8.9,10.1,7.7,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,4.7,1.6,2.2,2.7,2.5,2.6,1.9,2.2,2,2.7,2.4,2,2.3,2.8,2.5,1.9,2.8,2,2.6,2.6,2.4,2.4,2.7],"script":[0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.9],"paint":[2.3,1.9,1.7,1,1.8,1.5,2,2.4,1,1.9,1.6,2.5,1.5,1,2.1,2,1.8,1.8,2.7,1.2,1.6,1.4,2.3,1.4,1.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,12.3,13.3,13.1,12.5,13.9,13.4,13.1,12.6,12.8,13,13.1,12.7,12.9],"script":[0.9,0.1,0.1,0.4,0.9,0.1,0.1,0.8,0.1,0.1,0.8,0.4,0.8,0,0.1],"paint":[11.4,11.4,9.7,11.3,10.9,11.8,13,11.6,12.1,11.5,10.6,11.6,11,11.2,11.4]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10.3,10.2,10.1,10.4,10.2,10.7,10.3,10.4,10.5,10.3,10.3,10.3,10.4,10.2],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.4,0.1,0.1,0.4,0.1,0.3],"paint":[9.4,9,9.5,9.6,9.9,9.5,10.1,9.6,9.6,9.5,9.6,9.6,8.9,9.7,9.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[270,269.8,270.3,270.9,271,271.4,271.5,267.7,271.5,269.8,270.2,271.1,272.9,272.8,270.5],"script":[34,33.8,34.6,34.1,34,34.3,33.9,33.6,34.8,34.1,33.9,34.7,34.4,34.5,34.1],"paint":[228.3,228.4,228.1,228.5,229.4,229.1,229.8,226.6,229.3,228.1,228.8,228.8,230.9,230.9,228.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.3,28.5,28,28.4,28.6,28.4,28.4,28.3,28,28.7,28.4,28.9,28.4,28.8,28.7],"script":[2.5,2.7,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.7,2.5,2.6,2.6,2.7,2.6],"paint":[25,25.1,24.7,25,25.2,25,24.9,24.9,24.6,25.2,25.1,25.6,25.1,25.4,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,9.3,9.6,9.3,9.4,9.3,9,9.7,9.7,9.7,10.1,9.6,8.9,9.4,9.7],"script":[7,7.4,7.2,7.1,7.6,7.4,6.8,7.8,8.2,7.3,8.1,7.7,7.6,7.5,7.6],"paint":[1,0.3,0.9,1.3,1.6,1,0.2,0.2,0.5,1,1,1,0.7,0.9,0.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5606784820556641]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.077930450439453]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0020751953125]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6400337219238281]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.02220344543457]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[30.7,30.9,31.2,30.6,30.9,30.5,30.1,30.4,31.6,29.9,30.3,31.4,30.7,31.2,31],"script":[8,8.1,8,8.1,8,7.9,7.5,7.7,8.1,7.5,7.7,8.2,7.9,8.1,8],"paint":[22.2,22.3,22.7,21.9,22.3,22.1,22,22.1,23,21.9,22,22.7,22.2,22.5,22.4]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.5,33.5,34.3,34.8,33.9,34,33.7,34.3,33.4,34.4,34.3,33.2,34.5,34.7],"script":[10,10.1,10.2,10.7,10.8,10.5,10.6,10.3,10.6,10.2,10.7,10.6,10.1,10.8,10.9],"paint":[22.5,22.7,22.7,23.1,23.5,22.7,22.8,22.7,23.1,22.7,23.1,23,22.5,23.1,23.2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.1,31.5,30.4,31.2,31.5,31.9,35.7,32.1,31.5,33.7,30.6,31.4,31.6,13.5,30.9],"script":[1.8,1.2,1.5,1.7,1.8,2.3,1.4,1.2,1.9,0.7,1,1.4,1.5,1,1.3],"paint":[10.3,13.2,11.1,12.5,12.8,11.3,13.2,13,12.4,12.6,13.3,11.2,11.2,11.7,10.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[8.6,10.5,4.2,6.9,3.3,7.2,9.6,8.4,6.6,7.3,8.9,6,8.9,10.8,8.6,7.5,9.7,11.2,8.2,6,7.4,7.9,4.6,8.8,5.8],"script":[0.2,0.1,0.4,0.9,0.1,1.1,0.7,0.2,0.1,1.1,0.7,0.6,0.1,0.1,0.1,0.9,1.1,0.6,1.3,0.8,1,0.1,0.1,0.9,0.1],"paint":[2.3,2.1,2.9,3.4,1.6,2.8,2,3.2,3.2,3.3,3.3,1.9,2.7,2.2,3,3.4,3.9,3.1,3,2.7,2.9,2,2.3,2.6,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.8,13,12.3,13.5,13.3,13.3,12.9,13.7,14,13.1,13.4,12.8,13.2,13],"script":[0.1,0.9,0.2,0.1,0.1,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.3],"paint":[11.8,12.3,11.3,11.9,11.5,12.2,12.1,12,12.5,12.4,12.1,12.1,10.6,12.5,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.2,12.8,12.7,15.5,14.9,14,14,15.2,12.8,13.2,12.4,17,16.4,15,16.7],"script":[0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[11.2,11.4,11,10.8,11.1,10.2,11,11.1,11.2,11.1,11.1,11,10.8,11.5,10.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[306.7,308.6,306.5,306.9,308.5,306.3,307.7,308.2,307.1,307.9,308.6,308.4,310.3,307.7,306],"script":[82.9,83.7,81.8,83.6,84.4,82.8,82.9,84.1,82.7,83.2,84,83.8,83.1,83.4,83.1],"paint":[216.2,217.5,217.2,216,216.8,216.2,217.4,216.7,217,217.4,217.3,217.3,219.6,216.9,215.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,35.6,35.4,35.6,35.5,35.3,35.7,35.8,35.9,35.3,35.8,35.6,35.3,35.7,35.6],"script":[8.2,8.3,8.4,8.2,8.2,8.2,8.3,8.3,8.3,8.2,8.3,8.4,8.2,8.4,8.2],"paint":[26.6,26.3,26.1,26.4,26.3,26.3,26.5,26.6,26.6,26.2,26.5,26.3,26.1,26.4,26.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.4,10.4,9.5,11.1,10.1,10.1,10.1,10,11.8,10.7,10.4,10.2,10.3,9.9],"script":[8.7,8.5,8.2,7.7,8.4,8.6,8.2,8.3,7.6,9.1,9,8.6,8.4,8.4,8.1],"paint":[1,0.4,1.5,0.2,0.5,0.8,1,1.6,1.2,0.7,1,0.9,0.5,0.4,0.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5435400009155273]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4081945419311523]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.415799140930176]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6559877395629883]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.456475257873535]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.4,28.4,28.9,28.6,28.4,28.5,28.5,28.5,28.4,28,28.4,28.3,28.6,28],"script":[6.6,6.4,6.7,7,6.8,6.5,7,6.9,6.7,6.5,6.3,6.8,6.4,6.6,6.2],"paint":[21.2,21.4,21.2,21.4,21.4,21.4,21,21.1,21.3,21.4,21.2,21.1,21.3,21.4,21.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35,35.5,35.9,35.8,35.1,35.6,35.8,36.8,36.1,35.5,35.4,35.1,35.9,35.8,35.1],"script":[11.9,12.1,12.1,12.3,11.6,12.1,11.8,13.2,12.7,12.2,12,11.8,12.4,12.5,12.1],"paint":[22.5,22.8,23.2,22.9,22.9,22.9,23.3,23.1,22.8,22.6,22.8,22.6,22.9,22.6,22.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.4,14.1,13.5,13.6,14.2,13.7,13.7,14.5,14.1,14.1,13.3,14.3,14.3,13.9],"script":[3.8,2.7,3.2,3,2.6,3.2,3.2,2.8,2.7,3.3,3.6,2.6,3.4,3.2,2.8],"paint":[9.2,9.2,9.9,9.2,9.4,10.4,8.7,9.2,10.6,9.9,9.6,10,9.9,10.1,10.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[3.4,5.9,4.8,3.1,3.1,3.7,6,3,4,3,3.3,3.1,2.8,3.3,2.9,3.8,3.2,5.3,3.3,3.4,3,3.1,3.6,5.9,3],"script":[0.3,1.2,0.5,0.9,0.2,1.4,0.9,0.9,1.4,1.2,0.9,1.1,1,0.9,1.3,1.7,1.1,0.9,0.9,0.9,0.9,1.2,1,0.6,1.6],"paint":[2.5,1.4,1,1.4,2.8,1.7,1,2,1.8,1.2,2.2,1.5,1.6,1.4,0.9,0.5,1.1,1.4,1.5,2.4,1.3,1.1,1.3,1.5,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.6,14.3,14.8,14.4,15.5,14.6,13.6,14.6,14.8,14.4,14.7,14.7,14.2,14.6],"script":[1.6,1.5,1.1,2.1,1.2,1.8,1.1,1.3,1.6,1.4,1.2,1.4,1.8,1.7,1.5],"paint":[12.7,11.5,11.9,11.3,11.8,12.5,12.5,11.3,12,12.2,12,12,11.9,11.8,12.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11,11,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.2,11.5,10.9,11.3,10.6],"script":[0.9,0.7,1.1,0.7,0.7,0.9,1,0.7,1,0.9,0.9,0.9,1,0.9,0.7],"paint":[10.1,9.4,9.3,9.9,9.7,9.7,9.9,9.9,9.7,10.1,9.4,10.1,9.3,9.8,9.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[291.8,294.2,292.5,292,291.3,294.1,294.2,290.5,291.2,292.3,294.3,293.7,292.7,295.7,291.6],"script":[68.9,68.5,72.2,71.4,69.3,70,72.2,69.9,69.2,71.8,71.9,71.8,71.1,72.4,69.4],"paint":[215.7,218.2,213.3,213.5,214.9,216.9,215,213.5,214.9,213.4,215.1,214.9,214.4,215.8,215.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,33.5,33.4,32.7,34.8,35.1,34.5,35.2,34.7,33,33.7,34.7,35.5,34.1,34.6],"script":[7.8,7.4,7.2,7,8.1,8.5,7.8,8.4,8,7.2,7.7,7.7,8.5,7.6,8],"paint":[24.7,25.2,25.2,24.7,25.7,25.8,25.8,25.9,25.7,24.9,25.1,26.1,26,25.6,25.6]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.7,10.3,10.6,10.7,10.7,10.3,10.1,10.3,11.2,11.2,10.3,9.6,10.2,9.9],"script":[8.2,8,8.4,8.5,8.4,8.5,8.4,8,8.5,9.2,9.3,8.4,7.7,7.6,8.5],"paint":[1.2,0.7,0.7,1.3,2,1.5,1.6,1.1,1,0.9,0.6,0.5,0.9,1.6,0.2]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6525955200195312]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.329913139343262]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.431464195251465]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9340553283691406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.395493507385254]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.4,27.4,27.5,27.1,27.2,27.2,27,27,27.5,27.4,27.2,26.9,27,27],"script":[6,6.1,5.7,6,5.7,5.8,6,5.7,5.8,6.2,5.7,5.6,5.6,5.7,5.7],"paint":[20.8,20.8,21.2,20.9,20.9,20.8,20.8,20.8,20.7,20.8,21.1,21.1,20.7,20.8,20.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.7,30.3,31,31,31,31.2,30.7,31.4,30.9,30.6,30.6,30.8,30.8,31.1,31],"script":[8,7.9,7.8,8.1,8.3,8.2,7.9,8.3,7.9,8,8,8.3,8.1,7.9,8],"paint":[22.1,21.8,22.6,22.4,22.2,22.5,22.2,22.5,22.4,22,22,22,22.1,22.6,22.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,13.4,12.6,12.3,12.8,12.9,13.7,12.8,13.7,12.6,13,11.6,13.3,12.8,13.1],"script":[2.1,2.4,2.2,2.2,1.8,2.7,2.9,2.7,2.7,2.2,1.9,1.8,1.8,2.7,2.1],"paint":[9.1,9.7,9.8,8.8,9.9,9.2,9.4,8.9,10,9.5,10.1,8.7,9.9,9,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,3.4,3.3,3.6,3.5,3.5,3.5,3.2,3.4,3.8,3.1,3.9,3.3,3.1,2.6,6,3.1,3.4,2.9,3.3,3.1,3.2,4.5,2.7],"script":[1.2,0.7,1,0.9,1.2,0.9,1.1,0.7,0.9,0.9,1.2,1.3,1.3,1.4,1.2,1.1,0.7,0.9,1.2,0.9,1.1,0.9,1.3,0.9,1],"paint":[1.6,2.4,2.2,2.3,1.6,1.6,2.2,2.7,1.4,1.6,2.4,1.6,2.4,1.2,1,1.4,2.4,2,1.1,1,1.5,2.1,1.8,1.6,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[15.1,15.5,14.7,14.6,14.9,14.7,13.8,14.1,14.7,14.3,14,15,14.9,13.6,14.7],"script":[1.6,2.2,1.6,1.7,1.2,1.8,1,1.1,1.4,1,1.3,1.1,1.2,1.1,1.3],"paint":[12.4,11,12,11.5,12.3,11.7,11.8,12.1,12.1,12.2,11.4,12.2,12.1,10.6,11.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.7,12.7,12.7,12.5,12.4,12.3,12.3,12.9,12.5,12.8,12.4,12.8,12.9],"script":[2.3,2.3,2.4,2.4,2.4,2,2.1,2,1.9,2.4,2.1,2.4,2.2,2.3,2.1],"paint":[9.9,10,9.5,9.7,9.4,9.8,9.7,9.7,9.7,10,9.8,9.5,9.7,9.3,10.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[286.4,286.3,286,286.6,286.7,288.3,287.1,287.9,286.1,284,283.1,284.2,285,288.6,286.6],"script":[61.1,62.6,62.1,60.6,62.3,63,62.7,62.1,62.5,60.3,60.8,61.4,62,60.4,62.2],"paint":[217.9,216.5,216.5,218.5,217.1,217.9,216.9,218.1,216.1,216.6,215.1,215.4,215.6,220.8,217]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.5,32.7,32.3,32,32.4,32.2,31.5,32.1,31.6,32.3,32.8,32,31.8,32.2,32.1],"script":[6.1,6.1,5.7,6.1,6.1,6,5.6,6,5.6,5.8,6.1,5.6,5.6,5.7,5.8],"paint":[25.5,25.6,25.7,24.9,25.4,25.3,25,25.2,25.1,25.4,25.7,25.5,25.3,25.6,25.4]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,11.6,12.7,12.1,12.2,12.1,11.8,12.2,12.1,12,12,12,12.4,11.6,12.1],"script":[10.5,9.9,10.6,9.4,10.3,10.1,9.7,10.3,9.8,10,10.1,10,10.3,10,9.9],"paint":[1.3,1.2,1.9,1.4,0.8,1.9,1.1,0.3,0.3,1.2,1,0.9,0.8,1.1,1.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547258377075195]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8578271865844727]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.893484115600586]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.171834945678711]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.646581649780273]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.5,28.3,28.5,28.7,28.1,28.8,28.3,28.6,28.1,28.4,28.2,28.2,28.4,28.3],"script":[6.4,6.4,6.2,6.3,6.3,6,6.4,6.2,6.3,6.2,6.3,6.3,6.4,6.3,6.3],"paint":[21.6,21.6,21.6,21.6,21.9,21.6,21.8,21.6,21.8,21.4,21.6,21.3,21.3,21.6,21.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.8,32.5,32,32.9,32.1,32.8,31.9,31.9,32.3,32,31.8,32.5,32.2,32.4],"script":[9.1,9.6,9.3,9.1,9.1,9.3,9.5,9.3,9,9.2,8.9,9,9.2,9,9.2],"paint":[22.5,22.6,22.5,22.3,23.2,22.2,22.8,22,22.3,22.5,22.6,22.3,22.7,22.7,22.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.1,19.2,18.8,20.7,21,20.1,20.1,20.1,20.9,20.6,20,19.8,21.4,20,21.1],"script":[8.2,8.1,7.9,8.6,9.1,8.9,8.2,8.4,9,8.7,8.5,7.9,9.7,8.2,7.9],"paint":[9.8,9.3,9.1,10.4,10.5,9.8,11.2,9.8,10.2,9.8,9.3,9.9,9.3,10.1,10.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.8,11.3,12.1,12.3,10.6,11.1,12.4,11.3,11.8,11.7,11.2,12.5,11.8,13.1,12.4,11.9,12.3,12,12.3,11.1,11.8,12.7,11.9,11.7],"script":[8.3,8.5,8.7,8.9,8.6,8.1,8.3,9.2,8.3,8.2,8.4,8.4,8.9,8.4,10,9,8.6,9.3,9.1,9.1,7.7,8.6,9.5,8.8,8.8],"paint":[1.9,2.3,0.9,1.5,0.9,0.4,0.9,1.6,2.1,1.4,2.3,1.1,2.5,1.9,2.4,1.4,1.6,1.8,2,1.9,2.2,1.9,2.4,0.8,1.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.2,22.6,24.4,22.3,22.3,23,24.5,24.4,24.5,23.4,24.7,22.3,23.1,24.9,23.1],"script":[9,7.9,9.2,8.2,7.3,8.5,8.6,9.3,9.8,8.4,10.5,8.2,8.9,10.2,8.5],"paint":[14.1,13.6,13.8,11.7,11.9,12.8,13.5,12.8,13.1,13.4,12.5,13,12.9,11.9,12.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,15.2,15.4,15.5,15.3,15.8,16.2,16.5,16.3,16.2,15.8,15.8,15.4,16,15.1],"script":[5.1,4.7,4.5,4.7,4.5,4.6,5.3,5.3,5,5.1,5,4.9,4.9,4.9,4.3],"paint":[12.3,9.8,10.2,10,10.2,10.3,9.8,10.2,9.7,10,10.2,9.9,9.9,10.4,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.1,289.5,287.3,287,292,295,289.9,289.1,291,291.7,290,289.1,290],"script":[68.2,68,66.4,66.1,65.7,66.8,66.9,67.1,66.2,66.9,67.2,67.6,67.2,67.2,66.5],"paint":[213.8,214.8,215.3,216.1,214.3,213,217.7,220.8,216.5,215,216.6,216.7,215.1,214.8,216.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.5,36.8,36.5,36.3,38.1,36.4,36.4,37,36,37.1,36.4,36.2,36.3,36.3],"script":[9.2,9.2,9.1,9,9.3,9.2,9.3,9,9.3,9.2,9.2,9.2,9.3,9,9.1],"paint":[26.4,26.4,26.8,26.5,26,27.9,26.2,26.4,26.7,25.9,27,26.2,26,26.3,26.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,15.1,16,14.4,14.4,13.9,14.1,14.6,13.5,13.6,15.2,14.3,13.8,14,14.4],"script":[13.1,12.9,13.4,12.3,12.5,12,12,12.7,11.6,12.2,13.2,12.2,11.7,12,11.9],"paint":[0.9,1.4,1.4,0.9,1,1,1.1,0.3,1.5,0.3,0.5,1,0.6,0.7,0.8]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.858922004699707]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.2211503982543945]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.294930458068848]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1289901733398438]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.47651290893555]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.1,24.4,24.1,24.2,24,23.7,23.9,24,24.9,24.1,24.2,24.2,24.1,24.5],"script":[2.8,2.8,2.9,2.9,2.8,2.8,2.8,2.9,2.9,2.9,2.8,2.9,2.8,2.8,2.8],"paint":[20.9,20.9,21.1,20.8,21,20.9,20.6,20.7,20.7,21.5,20.9,20.9,21.1,20.9,21.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.7,28,28,27.6,27.1,27.8,27.7,27.5,28.6,27.8,27.6,27.8,28.6,27.6,28],"script":[5.2,5.4,5.5,5.1,5,5.2,5.2,5.1,5.3,5.2,5,5.2,5.4,5.1,5.2],"paint":[21.9,22,22,22,21.7,22.1,21.9,21.8,22.7,22,22,22,22.6,21.9,22.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,11.1,10.8,10.7,11,11.2,11.1,10.8,11,11.7,11.5,11.9,11.2,10.9,11],"script":[1.2,1,1,0.6,1,1.3,0.9,0.9,1.2,1.5,0.6,1.5,0.6,1.3,0.9],"paint":[8.7,9.2,8.7,9.2,8.9,9.3,9,8.9,8.6,8.7,9.3,9.6,9.3,7.5,9.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[7.3,2.8,2,2,2.8,3.3,2.4,2.8,2.2,2.7,2.5,2.2,2.5,3.3,2.5,2.2,2.8,2.1,2.7,2.7,2.8,2.2,2,2.5,2.5],"script":[1,0.1,0.1,0.1,0.8,1,0.9,0.7,0.9,0.1,0.1,0.1,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.4,2,1.6,1.1,1.5,2.1,1.3,2,0.7,1.8,2.3,2,1.4,2.2,1.1,2,2.2,1.9,2.5,2.3,1.5,2,1.8,0.7,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,13.7,13.7,13.1,13.4,13.9,12.7,13.3,14,13.4,13.9,13.5,12.8,13],"script":[0.9,1.3,1.5,0.9,0.7,0.9,1.4,0.2,1.1,1.5,0.9,0.3,0.2,0.3,0.2],"paint":[11,12.3,11.3,11.6,11.2,11.5,11.6,11.9,10.7,11,11.6,12,12.1,11.3,10.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.7,10.8,10.6,11,10.4,10.4,10.4,10.7,10.8,10.7,10.4,10.4,10.4,10.6],"script":[0.5,0.5,0.5,0.3,0.4,0.3,0.4,0.5,0.5,0.6,0.5,0.5,0.5,0.5,0.5],"paint":[9.5,9.7,9.8,9.7,10,9.6,9.4,9.5,9.7,9.6,9.6,9.4,9.4,8.9,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262.8,262.1,261.9,261.5,261.5,261.4,262,262.4,262.1,261.4,261.4,262,266.7,261.1,268.2],"script":[34.5,34.4,34.6,34.4,34.2,34.4,35,34.6,33.8,34,34.4,34.8,34.6,34.3,35.2],"paint":[221.2,220.4,220.1,219.2,220.2,219.8,220,220.4,220.2,220.3,219.8,220,224.8,219.5,225.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,28.8,28.7,28.3,29,29.5,29,29.1,28.7,28.7,29.5,28.9,28,28.8,30.2],"script":[3.1,3.4,3,3.4,3.1,3.1,3.1,3.1,3,2.8,3.1,3.1,2.9,3.1,3],"paint":[25.3,24.6,25,24.1,25.1,25.6,25.1,25.3,24.9,25.1,25.5,25.1,24.4,25,26.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10,10,10.9,10,9.9,9.5,9.4,9.8,9.4,10.2,10.3,9.9,9.6,10.2],"script":[7.7,7.9,7.6,8.8,7.5,7.6,8.1,7.5,7.9,7.6,8.6,8.4,7.7,7.3,8.5],"paint":[1,0.9,0.9,0.4,1.7,0.5,0.2,0.3,1,0.9,0.2,1.5,1.2,0.6,0.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6976604461669922]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1021785736083984]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1319971084594727]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0184268951416016]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.264480590820312]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29.1,29.1,29.3,29.1,28.4,28.3,28.1,28.3,29,28.6,29.2,29.3,28.9],"script":[6.7,6.5,7.4,7.2,7.3,7.5,6.6,6.6,6.7,6.6,6.8,6.9,7.1,7.4,7.2],"paint":[21.4,21.3,21.2,21.4,21.5,21.2,21.2,21.2,20.9,21.1,21.7,21.1,21.5,21.4,21.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,31.8,31.7,31.8,32,31.1,31.1,31.6,32.2,31.5,32.5,32.1,32,32.2,31.9],"script":[9.2,8.8,8.9,9.2,9.2,8.7,8.8,8.8,9.1,8.9,9.4,9,8.8,9.2,9.3],"paint":[22.5,22.4,22.2,22.1,22.2,21.7,21.7,22.2,22.5,22.1,22.6,22.5,22.7,22.4,21.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.8,14.3,14.7,14.4,14.7,14.6,14.6,14.9,14.5,14.4,14.6,14.4,14.4,14.4],"script":[3.7,3.8,3.8,4,3.4,4.2,3.9,3.9,4.5,3.8,4.3,4,3.7,4.1,4.1],"paint":[9.2,9.8,9.9,10,10.3,9.4,8.4,8.2,9.8,9.7,8.1,9.6,9.6,9.3,8.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[5,4.2,3.8,4.2,4.8,4.6,4.1,4,4.3,4.4,4.8,4.4,4.1,4.6,4.7,4.7,4.1,4.2,4,6.4,4.1,4.1,4,4.5,5.1],"script":[1.9,2.2,2.1,2.2,2.4,2.2,1.7,2.2,1.5,1.5,2.4,2.2,2,2.5,2.1,2.4,1.9,2,1.9,2.4,2.3,2.2,2.2,2.7,2.7],"paint":[1.3,1.2,1.5,1.1,1.7,1.2,1.2,1.1,2.3,2.3,1.6,1.4,1.9,1.4,1.7,1.5,1.1,2.1,1.3,1.3,1,1.3,1,1,2.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,15.7,15.2,16.1,15.8,16.5,15.4,14.9,15.9,16.8,15.4,15.2,16.4,16.3,15.9],"script":[2.9,3.2,2.9,2.7,2.8,2.9,2.5,2.6,2.7,2.7,2.6,2.4,3.3,3.4,2.5],"paint":[12.1,11.9,11.4,12.4,11.3,12.6,11.6,10.8,12,11.5,11.4,11.9,12,11.5,11.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14.7,15.2,14.8,14.6,14.5,14.8,14.6,14.6,14.4,14.5,14.5,14.7,14.6,14.8],"script":[3.8,4.1,4.9,4.2,4.3,4.2,4.1,4,3.8,4,4.3,4,4.2,4.1,4.2],"paint":[9.3,10.1,9,9.7,9.6,9.4,10.1,10.1,10.5,9.8,9.3,9.8,9.4,9.6,10.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[293.8,292.1,295.8,294,292.8,293.4,291.9,294.3,293.7,290.4,292.9,294.4,293.6,299,293.4],"script":[67.6,68.7,68.3,68.4,68.9,68.2,67.6,69.9,68.6,68.8,68.3,68.1,67.9,68.8,69.6],"paint":[218.5,215.9,220.3,217.6,216.6,218,217.1,217.2,217.8,214.5,217.3,219,218.4,221.4,216.6]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.2,34,33.7,33.6,34.5,33.9,33.3,34.5,33.5,33.5,33.9,33.2,33.8,33.3],"script":[7.7,7.3,7.8,7.3,7.7,7.4,7.7,7.6,7.6,7.6,7.7,7.6,7.8,7.4,7.3],"paint":[25.5,25,25.2,25.3,25,26.2,25.2,24.8,25.9,25,24.9,25.4,24.6,25.4,25.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.4,13.7,13.9,14,15,13.3,13.3,14.1,13.5,13.2,13.6,12.7,13.8,13.8],"script":[11.9,11.4,12.1,11.7,12.1,11.6,11.5,11,11.6,11.1,11.3,11.5,10.8,11.3,11.6],"paint":[0.6,0.8,0.5,1.2,0.4,1.4,1.6,0.9,1.5,1.8,1,1.5,1.1,1.5,1.3]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8884353637695312]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.206464767456055]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.310001373291016]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3989458084106445]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.71572971343994]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[89.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.1,24.6,23.9,23.8,23.8,24.1,24,24,23.9,24,23.9,24,24,24.1,24.1],"script":[2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.7,2.8,2.8],"paint":[20.8,21.4,20.7,20.7,20.6,20.9,20.9,20.9,20.8,20.8,20.7,20.8,20.9,20.9,21]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.3,27.4,27.4,27.2,28.1,27.7,27.8,27.7,27.6,27.6,27.5,27.6,27.7,28.1],"script":[5.2,5,5,5.2,5.2,5.4,5.2,5.2,5.1,5.1,5.1,5.1,5,5,5.2],"paint":[22,21.9,21.8,21.7,21.5,22.2,21.9,22.1,22,22,21.9,21.9,22,22.1,22.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.3,11.3,11.1,11.3,11.2,11.4,10.8,11.3,10.9,10.6,11.6,10.4,10.5],"script":[1,0.9,1.2,1.4,1.3,1.3,1.8,1.3,1.1,1,0.6,0.9,1.5,1.1,0.8],"paint":[8.9,8.7,9.2,8.6,9,9.3,8.3,8.1,9.1,9.1,7.4,8.5,8.4,8.3,8.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.5,2.3,2.7,2.4,2.7,3,1.8,2.4,2.2,1.9,3,2.2,2.2,2.4,2.2,2.6,2.9,2.8,2.3,2.6,2.1,2.1,2.5,2.4],"script":[0.1,0.1,0.1,0.9,0.5,0.1,1,0.5,0.9,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.5,0.5,0.4,0.7,0.7],"paint":[2.6,2.2,1.5,1.3,1.8,2,1.4,0.7,1,2,1.7,2.3,1.1,1.2,1.9,2,1.6,2.5,1.7,1.9,1.5,1,1.6,1.6,1.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.7,13.9,13.5,13.5,13.7,13.1,13.6,13.4,13.2,13.9,13.5,13.2,13.4,13.4],"script":[0.7,0.6,0.7,1,1.2,1.3,0.3,0.8,0.9,0.7,1,0.9,1,0.9,0.8],"paint":[11,11.6,12.1,11.7,11.5,11.4,11.7,11.6,11.8,11.1,11.7,11.2,11.6,11.3,11.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.5,10.3,10.8,10.4,10.3,10.3,10.5,10.2,10.5,10.7,10.4,11.3,10.6,10.4],"script":[0.4,0.5,0.4,0.5,0.5,0.2,0.4,0.2,0.4,0.5,0.5,0.5,0.5,0.5,0.2],"paint":[9.7,9.6,9.5,9.5,9.5,9.5,9.5,9.2,9.2,9.5,9.5,9.5,10.3,9.4,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[261.9,260.9,261.1,258.8,262.5,261,261.4,261.4,262.3,260.7,260.6,261.6,261.4,263.6,261],"script":[33.9,34.2,34.1,33.6,34.1,33.6,33.8,33.9,34.3,33.8,33.5,33.9,34,33.6,33.2],"paint":[220.9,219.7,219.4,218.2,221.2,220.3,220.4,219.9,220.9,219.8,219.8,220.5,220.2,222.5,220.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,28,28.2,28.8,29.3,28.8,29.1,30.1,28.3,28.6,28.1,28.6,29.2,30.4,28.4],"script":[3.1,2.8,2.9,3.2,3.1,2.9,2.9,3,3,2.9,2.9,3,3,3,2.9],"paint":[25.7,24.5,24.6,24.9,25.5,25.2,25.4,26,24.6,25,24.4,24.8,25.4,26.7,24.7]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.8,9.7,9.9,9.2,9.1,10,9,9.7,9.5,10.8,10,9.5,9.8,9.6],"script":[7.7,7.4,7.6,7.9,7.3,7.7,8.1,7.1,7.4,7.7,8.8,7.9,7.5,7.4,7.4],"paint":[0.7,2.1,1.9,1.7,0.8,1.2,1.6,1,1.2,0.2,1.2,0.9,1,1.4,1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6967668533325195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0440711975097656]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.049104690551758]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.017533302307129]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.606117248535156]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.6,24.9,24.7,24.7,24.5,24.6,24.6,24.5,24.6,24.3,25.3,24.8,24.6,24.7],"script":[3.4,3.5,3.5,3.4,3.1,3.4,3.1,3.2,3.4,3.5,3,4.2,3.4,3.4,3.5],"paint":[20.6,20.8,21,20.8,21.2,20.7,21,21.1,20.7,20.7,21,20.7,21,20.8,20.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[29.1,28.6,28.8,28.3,28.5,27.8,28.1,28,27.8,27.8,28.2,28.3,28.3,28.8,28.2],"script":[5.9,5.9,5.9,5.6,5.9,5.5,5.7,5.7,5.6,5.8,5.8,5.9,5.8,6.1,5.7],"paint":[22.6,22.1,22.4,22.1,22,21.7,21.9,21.7,21.6,21.5,21.8,21.7,22,22.2,21.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,10.7,11.2,11.2,10.7,11,11.6,11.6,11.7,11.7,10.9,10.6,11.4,11.3,10.5],"script":[1.9,1,1.1,1.6,1,1,1.6,1.6,1.2,1.2,0.9,1.1,1.3,1.2,1.3],"paint":[8.8,8.4,9,9,9.1,9,8.4,8.5,9,8.5,9,7.7,8.7,8.9,8.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.7,2.7,1.6,2.4,2.6,2.7,1.9,2.1,2.7,2,2.9,2,2.6,2.3,2.4,2.4,1.9,2.5,2.6,2,2.4,2.6,2.4,2.1],"script":[0.6,0.9,0.5,0.1,0.1,0.4,0.4,0.1,0.6,0.7,0.3,0.8,0.1,0.5,0.1,0.9,0.4,0.1,0.1,0.7,0.1,0.5,0.1,0.7,0.1],"paint":[1.8,1.3,0.6,1,2,2.1,2,0.7,1,1.8,1.2,1.4,0.9,0.4,1.5,1,1.9,1,1.5,1.1,1.7,1.5,1.6,1.5,1.9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,16,15.7,16.2,16.3,16.9,16,16.8,15.9,15.4,15.8,15.5,15.2,16,15.9],"script":[2.5,3.3,3,2.9,3.6,2.9,2.7,3.1,2.8,2.9,2.5,3,2.5,3.5,3],"paint":[12.2,11.6,11.3,11.5,12,13,12.1,12.9,12.3,11.9,11.9,11,11.4,10.8,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.6,13.4,11.3,11.1,11.5,11.6,11.5,11.4,11.5,12,11.5,11.6,11.5,11.6],"script":[1.3,1.2,1.7,1.2,1.2,1.2,1.2,1.3,1.2,1.3,1.3,1.2,1.2,1.3,1.2],"paint":[9.6,9.5,11,9.3,9.5,9.2,9.8,9.6,9.6,9.6,10.3,9.4,9.7,9.4,9.8]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[262.7,262.5,261.9,262.5,261.4,263.4,261.6,262.8,264.3,260.2,260.5,262.4,261.6,260.9,261.3],"script":[34.3,34.9,34,34.9,34.9,34.8,34.7,35,34.6,34.1,34.7,34.5,34.5,34.7,35],"paint":[221.3,220.6,220.8,220.4,219.3,221.4,219.8,220.7,221.9,218.9,218.5,220.8,219.8,219.2,219.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.9,30.5,31,30.4,30,30.3,30,29.3,30.2,30.3,31.1,30,32,29.8,30],"script":[4.2,4.3,4.6,4.4,4.3,4.4,4.3,4.2,4.3,4.3,4.4,4.4,4.6,4.3,4.2],"paint":[24.9,25.4,25.5,25.2,24.9,25.2,24.9,24.3,25.1,25.3,26,24.8,26.6,24.7,25]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.6,10.9,10.3,10.5,9.6,12.7,10.4,10.4,10.4,11.5,9.9,10.2,10.4,10.6],"script":[8.6,8.2,8.3,8.4,8.5,8,10.3,8.3,8.6,8,9.7,7.8,8.2,8.5,8.3],"paint":[1.6,1.4,1.4,1.1,0.3,1.1,1.4,0.6,1.6,1.2,1.1,1.1,0.9,1.6,1.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5344572067260742]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0962209701538086]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1608314514160156]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9999885559082031]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.329374313354492]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.2,25,24.8,24.9,24.7,24.9,24.6,24.5,25,24.8,24.9,24.6,24.9,24.8,25],"script":[2.6,2.7,2.7,2.7,2.8,2.7,2.6,2.6,2.8,2.8,2.7,2.7,2.7,2.7,3],"paint":[22.2,22,21.8,21.8,21.6,21.8,21.6,21.5,21.8,21.6,21.8,21.5,21.8,21.7,21.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[27.7,27.7,27.8,27.5,27.7,27.4,28.4,27.4,27.9,27.7,27.7,28,28.7,28.5,27.5],"script":[4.8,4.6,4.8,4.7,4.7,4.6,4.8,4.7,4.8,4.7,4.7,4.8,5.1,5.1,4.8],"paint":[22.5,22.7,22.6,22.4,22.5,22.4,23.1,22.4,22.7,22.6,22.6,22.8,23,22.9,22.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.6,12.6,12.2,11.5,12,12.7,12.1,11.7,11.9,12.2,11.8,11.6,11.3,11.8],"script":[1.8,2.1,2.1,1.9,1.8,1.8,2,1.6,1.4,1.4,2,1.3,2.1,1.2,2.1],"paint":[9.1,7.8,9.2,8.9,8.3,8.6,10,8.8,8.3,9.7,8.9,9.1,8.1,9,8.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.3,3.8,3.6,2.8,3.4,3.1,2.7,2.6,3.1,3.1,3.3,3.4,3.2,2.9,3.1,2.9,2.5,3.3,2.9,2.7,3.4,3.6,3.1,3.2],"script":[1,1.2,1.4,0.9,0.9,0.6,0.9,0.7,1.1,0.9,1,0.6,1.5,1.1,1,1.1,1,0.7,0.6,1,1.1,1.3,1.4,1.1,0.6],"paint":[2.3,1.5,1.5,1.4,1.1,2.7,1,1.9,1.1,0.9,2,2.5,1.2,2,0.9,1.5,1.1,1,2.5,1.1,1.1,2,0.4,1.9,2.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.2,12.9,13.4,13.1,13.4,13.3,12.7,13.9,13.3,13.1,13.1,13.3,13.2,13.1],"script":[0.9,0.9,0.6,1,0.7,0.9,1.2,0.6,1.4,0.9,1.2,1.3,1.1,1.1,0.9],"paint":[11.4,11.6,11.4,11.3,10.5,11.6,11.3,10.8,10.8,10.9,10.8,10.9,11.3,10.8,11.2]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.6,10.8,10.8,10.5,10.9,11,10.6,10.5,10.7,10.4,10.9,10.8,10.8,10.7],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.7,9.4,9.4,8.9,9.8,9.7,9.4,9,9.6,9.3,9.6,9.5,9.3,9.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[258.5,258.4,257.5,257.2,257.1,258.9,258.1,260.4,257.4,258,258.7,258.2,258.5,259.7,257.4],"script":[27.3,27.3,26.8,26.7,27.1,26.9,27.5,26.6,27.2,26.3,26.8,26.8,26.9,26.8,26.6],"paint":[224.2,224,223.6,223.4,222.9,224.9,223.5,225.9,223.1,224.7,224.8,224.4,224.5,225.9,223.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.2,30.1,30,29.8,30.7,30.3,30.8,30,30.2,30.1,29.8,30.5,29.6,30.1],"script":[2.8,2.7,2.7,2.8,2.7,3,2.8,2.8,2.7,2.8,2.9,2.7,3.1,2.7,2.8],"paint":[27,26.7,26.6,26.5,26.3,27,26.7,27.2,26.5,26.6,26.5,26.3,26.7,26.1,26.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.7,10.4,10.9,10.7,10.3,9.9,10.1,11.2,10.9,12,10.2,11.2,9.8,10.1],"script":[9.1,8.4,8.3,9.1,8.7,7.9,8.5,8.5,8.6,9.4,9.6,8.7,8.8,8.2,8.2],"paint":[1.1,2.1,1.3,0.8,1.3,1.2,0.2,0.4,1.4,0.2,0.7,1,1.3,0.6,1.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7229738235473633]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.952317237854004]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.981106758117676]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.804966926574707]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.926068305969238]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.5,35.9,36.4,36.5,37.3,35.9,36.2,36.1,36.5,36,36.1,36.6,36.7,36.4,36.2],"script":[14.7,14.4,14.7,14.6,14.4,14.2,14.7,14.5,14.6,14.2,14.4,14.7,14.6,14.6,14.2],"paint":[21.3,21.1,21.3,21.5,22.4,21.2,21.1,21.2,21.3,21.4,21.3,21.4,21.5,21.3,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.5,41.7,41.1,41.2,40.9,41.4,41.5,41.2,41.6,42.4,41.1,41.6,41.4,41.7,41.8],"script":[19.4,19.7,19.4,19.5,19.3,19.4,19.7,19.3,19.4,20.3,19.5,19.7,19.5,19.4,19.5],"paint":[21.5,21.5,21.3,21.2,21.2,21.5,21.2,21.4,21.6,21.7,21.2,21.4,21.4,21.8,21.6]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,20.9,20.3,19.7,19.4,19.8,20.4,19.1,18.8,17.8,18.3,19.3,20.1,19.4,17.6],"script":[8.2,8.2,8.1,7.6,7.2,8,7.3,7.6,8,7.1,7.6,8.4,8.3,8.3,7.9],"paint":[10,10.3,10.4,10.9,11,10.7,11.7,9.9,8.6,9.3,9.5,9.5,9.6,9.9,8.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.8,7.9,7.5,7.6,8.3,7.9,8.1,8.2,9,7.9,8.4,7.5,7.6,7.9,8.3,7.7,8,7.5,7.9,7.8,8.2,8.1,7.8,7.9],"script":[5.8,6.2,6,4.7,5.6,5.5,5.8,5.4,6.4,5.6,5.5,6.2,5.3,5.9,5.6,6,5.5,6.4,4.9,5.5,5.3,6,5.6,5.4,5.5],"paint":[1.3,2.4,1,2.7,1.4,2.6,1.7,1.2,1.6,2,2.2,2.1,1.6,1.5,1.7,1.4,1.1,1.1,2.4,1.5,1.7,1.1,1.6,1.2,2.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,22.1,19.3,20.3,19.1,20.6,19.8,19.6,18.9,18.7,19.6,20.5,19.7,19,19.1],"script":[5.1,6.1,5.6,5.6,5.7,5.8,5.5,5.6,5.4,5.6,6.3,6.1,5.4,5.4,5.5],"paint":[13.2,14.6,12.1,13.3,11.7,11.9,11.5,13,12.3,12.1,11.4,12.7,13,12.3,11.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.7,13.4,13.1,13.3,14.3,13.4,13.6,13.6,13.3,13.5,13.3,13.2,13.4,13.5,13.9],"script":[3,3,3,3,3.7,3,3,3,3,3,3,3,2.8,3,2.9],"paint":[10.1,9.6,9.5,9.7,10,9.4,10,10,9.7,9.6,9.7,9.6,10,9.4,10.3]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[437.6,434,435.2,444.2,447.6,442.4,443.5,446.7,437.2,436.9,438.7,442,443.3,443.7,441.1],"script":[190.7,184.9,187.6,197.1,199.4,193,193.9,197.2,188.1,186.1,189.9,194,194.3,195.2,190.8],"paint":[239.2,241.3,239.9,239.3,240.7,241.8,241.7,241.9,241.1,242.3,240.9,240.2,241.4,240.9,242.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,41.9,41.6,41.6,41.5,41.7,40.9,41.3,41.2,41.4,41.6,41.8,41.5,42,41.7],"script":[14.6,14.7,14.4,14.3,14.5,14.2,14.2,14.4,14.4,14.2,14.3,14.5,14.2,14.4,14.4],"paint":[26.6,26.4,26.3,26.5,26.2,26.6,25.8,26.1,26,26.4,26.4,26.3,26.5,26.7,26.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,23.6,20.4,20.2,20.5,20.9,22,21.2,20.7,22.7,20.9,21,20,21],"script":[19,19.1,21.8,18.8,19,19.5,18.6,20.5,19.8,19.6,20.2,19.4,19.7,18.4,20],"paint":[1.2,0.5,1.7,1.5,0.8,0.3,0.3,1.4,1.2,1.1,0.6,1.4,0.3,1.5,0.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7915868759155273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.451281547546387]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.522219657897949]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.931109428405762]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.072813987731934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[254.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.3,36.5,36.1,36.2,36.4,36.4,36.6,36.3,36.7,36.3,36.6,36.4,36.3,36.4,35.8],"script":[14.6,14.4,14.4,14.5,14.3,14.6,14.5,14.4,14.7,14.4,14.5,14.7,14.5,14.6,14.2],"paint":[21.3,21.6,21.3,21.3,21.6,21.3,21.5,21.3,21.6,21.4,21.5,21.3,21.4,21.3,21.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.4,41.1,41.6,41.9,41.6,41.7,41.9,41.3,41.6,41.2,41.9,41,41.8,40.6,41.5],"script":[19.8,19.4,19.7,19.7,19.7,20.1,20.1,19.6,19.5,19.4,19.8,19.1,19.5,19.3,19.3],"paint":[20.9,21.1,21.4,21.5,21.4,21,21.3,21.2,21.5,21.2,21.6,21.4,21.8,20.9,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.1,22.9,22.9,22.8,24.5,21.6,23.7,22.1,24,23.4,24.5,22.8,22.4,23.2,21.6],"script":[12.1,12.2,12.4,12.1,12.7,11.6,12.4,11.4,12.2,12.6,13.1,12.5,11.1,12.1,11.5],"paint":[10.1,9.7,9,9.8,9.6,8.8,10.2,9.6,10.8,9.7,9.1,8.2,10,9.2,9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.8,12.9,13.6,13,13.9,14,13.3,14,13.8,13.6,13.3,14,14.2,13.7,13.8,13.3,13.8,13.5,13.7,13.4,14.1,13.3,13,13.8],"script":[11.6,11.4,10.8,11,10.7,11.6,11.3,11,11.5,10.5,11.1,10.9,11.4,11.7,11.3,10.9,10.9,11.5,11.3,11.5,11,11.8,10.7,11.1,10.7],"paint":[2.8,2.3,1.3,2.5,2.2,1.7,1.6,1.3,1.7,2.3,2,2.2,2.1,1.6,1.5,2.4,1.8,1.8,1.7,1.4,1.5,1.1,2.1,1.7,2.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26,26.7,26.5,26,24.9,27.2,26.1,25.1,26.2,25.7,25.9,25.3,25,27.2,24.7],"script":[11.7,11.8,12.2,11.4,10.9,11.8,11.6,11.3,11.6,11.6,11,11.7,11.6,12.1,11.5],"paint":[12.4,13.6,13.9,13,13.1,14,12.9,12.9,13,11.1,13.7,12.5,12.2,14.1,11.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.8,16.5,16.7,16.4,16.7,16.1,16,16.6,16.4,16.9,16.6,16.4,16.6,16.3,16.4],"script":[5.8,6,5.9,6,5.6,5.8,5.7,6.6,5.9,5.8,6,6,6,5.8,6],"paint":[9.6,9.5,9.4,9.3,9.8,9.7,9.3,9.7,10,10.1,9.9,9.6,9.8,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[449.1,442.9,442.9,443.5,440.5,441.1,437.8,452.1,444.3,437.4,432.7,434,439.3,450,437.1],"script":[200.4,196,195.2,193.6,192.6,190.1,189.9,203.7,192,190.3,186.3,184.6,187.8,197.1,189.5],"paint":[240.9,239.2,239.9,242,240.1,243.2,240.1,240.5,244.3,239.3,238.8,241.5,243.6,244.8,239.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.5,43.2,43.2,43,44.7,43.5,43.8,43.4,43.9,43.4,43.2,42.9,43.7,43.3,43.3],"script":[16.1,15.9,15.9,15.9,16.4,16.2,16.5,16,16.1,15.9,16.2,16,16.3,16.1,15.7],"paint":[26.4,26.3,26.4,26.2,27.2,26.4,26.5,26.5,26.9,26.6,26.1,26,26.6,26.3,26.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,20.6,22.3,20.3,22.4,20.3,22.9,21.2,21.4,22.5,22.4,20.9,21.3,19.8,20.5],"script":[19.3,19,20.5,18.8,20.9,18.5,21.5,19.8,19.3,21,21.3,19.4,19.8,18.7,19.5],"paint":[1.3,1.5,1.2,1.2,1.4,1.7,1.4,1.4,0.8,1.4,1,1.4,1,0.2,0.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7813653945922852]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.571454048156738]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.818474769592285]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.123181343078613]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.289931297302246]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[263]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.1,30.5,30.8,30.7,30.5,30.4,30.6,30.8,30.9,30.4,30.8,30.9,31.4,30.6],"script":[7.1,6.8,6.9,7,6.9,7,6.9,7,7.2,7,6.9,6.9,7.1,6.9,7],"paint":[23.2,22.7,23,23.2,23.1,22.9,23,23.1,23,23.3,23,23.3,23.3,24,23]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.4,36.8,33.2,33.1,33.8,33.5,33.4,34.2,33.7,33.3,33.7,33.8,33.6,34.1],"script":[9.1,9.1,9.5,9.1,9.1,9.3,9.3,9.2,9.4,9.2,9.1,9.5,9.4,9.3,9.2],"paint":[23.8,23.7,26.6,23.4,23.4,23.9,23.7,23.6,24.2,23.8,23.6,23.6,23.8,23.7,24.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.6,29.4,26.8,26.9,26.9,26.1,25.9,25.7,25.3,27,26.2,25.4,25.8,26.6,26.7],"script":[13.7,15.5,14.5,15.4,14.5,14.2,13.8,14,13.6,14.8,14,14,14.5,14.4,14.9],"paint":[10.6,11.9,10.3,9.7,11,10.2,8.7,8.7,9.4,10.4,10.3,8.9,9.3,10.2,9.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4,4.4,4.1,4.5,4.1,4.5,4.4,4.2,3.5,4.1,4.1,4.1,3.5,3.9,4.1,4.1,3.8,3.8,3.7,3.5,4.8,3.8,4.4,4.3,4],"script":[1.9,2.3,1.5,2.2,1.8,1.8,1.9,1.9,1.9,1.6,2,1.5,1.8,1.7,1.4,2.1,1.9,1.7,1.8,1.7,1.8,1.7,1.9,1.8,1.6],"paint":[1.7,1.6,2.5,2.1,1.5,2.5,2.4,1.8,1.5,1.6,2,1.6,1,0.5,2.2,1.9,1.7,0.8,1.7,1.3,2.9,1.6,2.2,1.6,2.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.8,14.5,16.6,15.3,15.3,14.7,15.2,14,14.3,15.3,14.6,15.1,15.4,14.4],"script":[2.4,1.8,1.9,2.2,1.7,2,1.8,1.8,1.5,2.1,1.6,1.6,2,2.2,2],"paint":[11.8,11.2,10.4,13.3,11.7,12.3,10.9,12.1,11.5,11.3,12.7,11.9,12.3,12.4,11.4]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.9,14.1,13.9,14,13.8,13.9,14,14,14.1,13.6,13.9,14.4,14.1,14.3,13.7],"script":[3.5,3.5,3.3,3.4,3.5,3.1,3.3,3.4,3.1,3.1,3.5,3.5,3.5,3.5,3.2],"paint":[9.5,10.1,9.5,9.6,9.7,10,9.9,10.1,10.1,9.2,9.6,10.4,9.8,10.3,9.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[312.8,314.1,315.2,314.3,315.5,315.2,313,314.4,314.9,312.7,312.7,314.7,315.2,315.7,314.7],"script":[73.7,73.5,74.3,73.8,74.4,73.5,73.7,73.2,73.7,73.1,73.3,74.2,73.7,73.9,74.2],"paint":[231.6,232.8,233.2,232.8,233,233.4,231.7,233.4,233.6,231.9,231.7,232.7,233.2,234.2,232.8]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36,36.4,36.4,35.9,36.2,36,36.1,35.7,36.2,36.2,36.2,36.6,35.8,36.3],"script":[7.6,7.5,7.6,7.5,7.5,7.7,7.5,7.4,7.4,7.5,7.5,7.5,7.5,7.5,7.7],"paint":[27.6,27.4,27.8,27.9,27.4,27.4,27.5,27.7,27.3,27.7,27.6,27.7,28,27.4,27.6]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.5,11.7,11.2,12.7,11.9,12.5,11.6,12.1,11.9,11.6,11.9,11.6,11.5,11.8],"script":[10,9.8,9.9,9.3,10.5,9.8,10.5,9.9,9.7,9.4,10.3,9.3,9.4,9.2,10.2],"paint":[0.7,0.6,0.6,1,0.3,1.7,1.2,0.4,0.8,1.6,0.3,2,1,0.6,0.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5997714996337891]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6279382705688477]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.648758888244629]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9460687637329102]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28592014312744]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[30.7]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[38.3,36.8,39.3,39.1,38.6,38.3,40.5,39,40.4,41.2,38.7,37.1,39.2,38.9,33.2],"script":[10.2,9.8,9.8,10.3,10.2,9.9,10.1,9.7,10,10.3,10,10.1,10.1,10.3,10.4],"paint":[23.1,22.7,22.8,22.3,22.6,22.4,22.4,23.2,23.2,23.8,23,22.5,22.5,23.1,22.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[42.1,40.6,39,40.9,42.3,42.5,39.7,42.1,37.2,41.7,41.2,42.6,41.4,41.9,42.6],"script":[14.4,15.1,16.9,14.6,15.9,16.9,15.1,15,14.9,14.8,15,15.6,14.9,15,15],"paint":[21.3,21.7,21.6,21.2,21.3,21.2,21.4,21.2,21.9,21.9,21.4,21.2,20.9,21.3,21.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[35.7,33.1,15,31.8,32.7,33.3,32.7,32.6,31.5,32.9,14.6,31.4,32.4,31.7,31.7],"script":[1.7,1.7,1.5,2.1,1.4,2.1,1.9,1.1,1.4,1.8,1.6,1.4,0.8,2,2],"paint":[12,13.3,10.7,13.8,12.8,14.5,14.2,14.2,13.5,12.7,12,13.8,13.7,12.8,14]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[10,5,8.6,7.1,5.2,9.9,12.7,11.2,7.2,4.3,6,6.4,11.3,9.4,3.7,3.9,4.3,7.2,4.5,6,4.5,5.2,3.9,12.5,4.1],"script":[0.6,0.7,0.2,1.8,0.2,1,0.6,0.3,0.6,1.1,0.7,1,1.5,0.1,0.8,1.4,0.6,1.1,0.2,0.2,0.9,1,0.6,0.9,0.3],"paint":[3,1.5,3.2,2.3,3,2.5,3.2,4.7,3.6,2.4,3,3.2,2.8,2.7,2.2,2,2.5,2.9,3,3.7,3,3.1,3.1,2.4,3.4]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[34,33.2,16.9,34,33.2,33,33.7,17.1,34.6,34.1,33,33.4,35.1,36,17.5],"script":[0.6,1.5,1,0.9,0.8,0.7,1.2,0.9,1.3,0.7,0.4,1.5,1.4,1.2,1],"paint":[17.1,14.5,15.4,16.1,16,16.1,15.6,14.5,15.3,16.9,16,15.4,16.1,17.9,15.1]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,15.3,12.7,15.8,12.9,12.8,12.9,13,12.2,12.7,12.4,13.2,12.2,17.7,12.6],"script":[0.1,0.4,0.4,0.1,0.4,0.3,0.4,0.4,0.2,0.1,0.2,0.8,0.2,0.1,0.5],"paint":[11,12.2,11.5,11.3,11.6,11.1,11.4,12,10.4,11.4,11.5,11.3,10.8,11.6,11]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,304.3,301.2,304,305.5,304.6,301.4,308.1,304.7,302.9,302.4,302.9,305.2,307.1,305.9],"script":[87.9,85.9,85.8,88.5,87.4,88.6,87,88.6,87.7,85.7,86.6,87.9,87.6,86.3,85.4],"paint":[212.5,215,212.1,212.1,214.6,212.6,211,215.2,213.7,213.9,212.5,211.6,213.2,212.1,214]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,35,35.6,35.5,39.2,40,36.6,35.1,35.2,39.9,35.5,39.7,36.5,34.9,35.2],"script":[8.7,9.3,9.7,9.5,9,9.6,9.3,9.4,9.6,9,9.1,8.9,9.9,9.3,9.3],"paint":[25.2,25.2,25.3,25.5,24.8,24.7,26.7,25.2,25,25.1,25.4,24.8,26,25.1,25.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.6,46.4,22.4,44.6,21,44.1,43.1,23.5,23.1,43.4,20.4,22.7,45.4,45.1,22.6],"script":[18.4,21,19.4,19,17.8,18.7,17,19.3,19.4,18.6,17.6,19,19.9,19.1,19],"paint":[3.2,2.4,1.2,2.4,2.9,2.6,2.7,3.9,3.5,2.4,1.7,2.2,2.8,4.3,3.3]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6085071563720703]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.307554244995117]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.346816062927246]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.470423698425293]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.880990982055664]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.2]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"aberdeen-v1.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[35.6,35.6,36.1,35.2,35.5,35.7,34.9,34.7,35.3,34.7,34.9,35,35.6,34.7,34.7],"script":[11.8,11.8,12.9,12.8,12.7,13.2,12.4,12.7,12.7,12.5,12.4,12.4,13.1,12.2,12.6],"paint":[23.2,23.2,22.6,21.8,22.2,21.9,21.9,21.5,22,21.6,21.9,22,22,22,21.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[12,12.2,12.9,12.8,12.7,12.7,11.9,12.7,12.2,12.6,12,12.6,12.6,12,12.5],"script":[3.4,3.4,3.7,3.8,3.6,3.6,3.5,3.6,3.4,3.7,3.4,3.7,3.7,3.5,3.6],"paint":[8.3,8.5,8.9,8.7,8.8,8.7,8.1,8.7,8.4,8.5,8.2,8.5,8.5,8.2,8.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,12.3,12.1,11.1,12.7,12.1,11.9,12.2,12.1,13.4,12.6,12.7,12.4,13.2,11.8],"script":[1,1.5,1.3,1.2,1,1.1,1.9,1.5,1.7,2.6,1.7,1,1.7,1,1.9],"paint":[10,9.9,9.2,8.8,10.2,9.8,8.6,9.6,9.7,9.5,9.4,9.8,9.1,11,8.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,3.2,2.8,4,4.1,6.6,3.9,3.8,3.7,3.6,6.7,3.3,3,3.3,4.4,3.9,3.2,3.7,2.6,3.8,3.9,4.4,3.8,3.6,3],"script":[1,1,0.9,1.3,1.7,1.2,1.4,1.3,1.3,0.9,0.9,0.6,1.3,1.4,1.1,1.9,0.9,1.5,1,1.4,1.3,1.4,1,1,0.6],"paint":[1.4,1.3,1,1.8,2.3,1.9,2.3,1.7,2.3,1.7,2.5,2.6,0.9,0.9,1.5,1.8,2.2,1.5,0.7,2.2,1.8,1.5,2.7,1.2,1.2]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,7.7,8.3,7.6,8.9,9.6,8.1,8.4,8.5,8.6,8.5,8.3,8,9.4],"script":[0.1,0.5,0.1,0.9,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.6,0.1],"paint":[6,6.4,6.4,5.9,6.2,7,8.6,6.8,7.3,7.4,7.1,6.8,6.9,6.2,8.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,12.9,12.8,13.1,12.6,12.8,13,12.8,13.1,13.4,12.9,12.7,12.4,12.7,12.5],"script":[2.1,2.1,2,2.3,2.3,2.1,2.1,2.1,1.9,2.1,1.9,2.2,1.9,2.1,2.1],"paint":[9.9,10.1,10.2,10.2,9.5,9.8,10.4,10.1,10.6,10.6,10.1,9.2,10.2,9.7,9.8]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[353.3,354.5,358.6,356.8,358.9,360.2,361,357.1,359.4,360.9,358.2,358.8,359.6,367.7,360.7],"script":[119.8,120.9,129.1,127.7,128.8,128.2,129.2,128.3,128.6,128.1,129.1,129.8,128.6,130.3,130.1],"paint":[226,225.6,222,221.7,222.9,224.8,224.4,221.6,223.5,225.5,221.9,221.6,223.5,230.2,223.3]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.2,38.3,39.8,39.6,40,40,40,40.5,39.9,40.3,40,39.9,39.7,40.6,39.7],"script":[11.9,11.6,13,12.9,13,12.9,13,13.2,12.9,13,13.1,12.9,13.1,13,12.8],"paint":[26.3,25.7,25.8,25.7,26,26.1,26,26.4,26,26.3,25.9,26,25.7,26.6,25.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,14.5,12.6,13.7,14.3,15.1,14.5,12.9,13.7,12.4,15,13.7,14.1,13.3,13.5],"script":[12.5,12.2,11.3,11.8,11.8,12.7,12.3,10.6,11.8,11.2,12.1,11.6,12.2,10.7,11.3],"paint":[1.2,1.5,0.2,0.2,1.6,1,1.5,2.1,1,0.4,1.9,0.9,1.6,2.4,1.4]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214570999145508]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.381025314331055]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.412445068359375]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8747434616088867]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.216437339782715]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.6]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.3]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"01_run1k","values":{"total":[30.8,30.4,31.3,31.3,31.4,30.9,31.7,31.4,31.5,30.8,31.1,32.2,31.6,30.9,31.7],"script":[8.3,7.9,8.7,8.6,8.6,8.5,8.6,8.6,9.1,8.6,8.6,8.7,8.7,8.6,9],"paint":[21.9,21.9,22,22.1,22.2,21.8,22.4,22.2,21.8,21.6,21.9,22.8,22.2,21.8,22.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"02_replace1k","values":{"total":[18.1,17.1,17.3,17,17.3,17.4,17.3,17.5,18.9,17.4,17.7,17.3,17.4,17.6,17.8],"script":[7.9,7.6,7.8,7.5,7.7,7.6,7.6,7.6,8.2,7.8,7.8,7.7,7.7,7.8,7.9],"paint":[9.4,8.9,8.8,8.9,9.1,9.2,9.1,9.3,10.1,8.9,9.2,9,9,9.2,9.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39,38.7,39.3,39.1,38.9,38.7,41.4,42.3,40.3,39,39.5,39.2,40.2,38,38.9],"script":[27,26.6,27.6,26.3,27.7,27.1,28.4,29.9,27.7,26.9,27.3,26.9,27.8,26.3,27.1],"paint":[8.8,10.1,9.6,10.9,10.1,9.9,11.1,9.9,10.2,10.3,9.8,10,10.6,9.3,9.7]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"04_select1k","values":{"total":[29.6,30.9,29.5,29.2,30.7,30.6,31.7,30.6,30.4,30.7,31.2,30.7,30.3,29.4,30.4,29.9,30.8,31.2,30.2,29.4,30.7,29.9,31.1,31.3,29.9],"script":[26.2,27.5,26.2,25.9,26.8,27.1,28.2,27.1,26.7,27.2,27.5,26.5,27,25.7,27.1,26.7,27.2,27.4,27.2,26.8,26.9,26.1,27.9,27.5,26.4],"paint":[1.7,2,2,1.4,1.7,2.5,2.3,1.4,2.1,2.3,1.6,1.9,1.8,2.4,1.5,1.1,1.8,1.6,1.7,0.9,3.5,1.9,1.6,1.6,2.2]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"05_swap1k","values":{"total":[39.8,37.1,39.2,36.9,35.8,36,36.5,36.6,36.9,36.4,40.4,37.8,37.6,37.3,37],"script":[28,27.3,27.9,27.1,26.5,26,26.6,26.7,26.4,26,29,26.9,27.3,27.5,26.8],"paint":[9.8,7.2,8.9,7.6,7.4,7.4,8,7.4,9.1,8.1,9.4,8.8,8.5,8.1,9]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.9,33.2,33,33.8,33.1,33.5,33.2,32.6,33.5,33.5,33.3,33.1,32.1,33.5,32.6],"script":[14.1,14.1,15.1,14.6,14.9,14.7,14.9,14.7,15.1,14.9,14.9,15.1,14.6,14.6,14.5],"paint":[17.3,18,16.8,18.2,16.8,17.1,17.1,16.7,17.1,17.4,16.9,16.9,16.4,17.9,17.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"07_create10k","values":{"total":[302.5,303.2,309.4,310.4,308.6,312,311.2,309.7,313.5,312.9,310.1,303.9,310.5,307.5,311.8],"script":[78.6,79.5,86.6,85,86.5,87,86.9,86,86.5,87.1,86.5,82,86.2,84.2,86.9],"paint":[216.3,216.1,215,217.3,214.5,217.4,216.6,215.8,218.8,218.1,215.9,214.3,216.7,215.7,217]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,42.1,42.4,42.8,42.5,42.8,42.6,42.3,42.3,43.7,43.8,43.6,42.3,43.7,43.6],"script":[14.1,14.7,15.3,15.2,15.1,15.5,15.4,14.9,15.2,15.5,15.6,15.5,14.9,16,16],"paint":[25.9,26.3,26,26.5,26.4,26.1,26.1,26.3,26.1,27.1,27,27,26.3,26.6,26.4]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.9,12.2,12.4,12,11.9,13.2,12.7,13.6,12,13.4,12.3,12.6,12.4,12.4],"script":[10.9,10.7,10.5,9.8,9.4,10.3,11.4,10.4,11.6,10.5,10.7,10.4,10.5,10.8,10],"paint":[0.6,0.4,1,1.4,1.3,1,0.4,0.8,0.7,0.3,1.3,0.9,1.4,0.3,0.6]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6295204162597656]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.458812713623047]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5467529296875]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8539962768554688]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.912774085998535]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[67.4,67.4,68.9,66.6,62.6,63.9,64.4,65.9,64.1,68.4,68.2,65.8,62.4,67,63.4],"script":[34.5,35.4,35.4,34.2,34.1,34.4,34.9,35,33.7,35.6,34.9,35.3,34.3,34.7,33.5],"paint":[23.4,23.9,23.8,23.7,23.7,23.3,23.7,23.8,24,24.2,23.6,23.7,23.9,23.5,23.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[72.8,68.5,66.1,72.4,69.3,66.2,69.4,71.3,67.4,66.6,65.4,71.1,68.7,72.7,67.6],"script":[40.4,38.9,37.8,37.6,39,38.3,37.4,37.9,40.2,37.8,37.8,37.7,38.6,41.2,37.6],"paint":[24.5,23.9,23.9,23.8,24,23.7,24,23.6,23.5,23.5,23.4,23.6,24.2,24.7,23.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[73.2,60.3,60.7,58.7,59.7,62.4,61.8,77.1,60.9,60.2,72.4,63.4,61.8,75.1,60.8],"script":[33.7,33.5,33.6,32.5,33.3,34.6,34.5,35.1,33.3,34.1,32.1,35.2,33.3,34.2,34.1],"paint":[24,25.5,25.1,24,24.8,26.4,24.4,24.5,26.5,24.1,25.1,26,25.4,24.5,25]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[10.9,14.6,10.8,10.7,10.8,9.8,12.5,10.5,10.7,9.9,11.5,10.4,11,13.8,10.8,11.4,11,13.7,11.8,12.4,11,10.1,9.8,9.9,12.9],"script":[5.5,7.5,5.9,6.6,4.9,5.3,6.2,5.6,6.1,6,5.8,6.1,6.2,5.2,6.9,6.9,6.6,6.9,6.3,5.5,6.5,5.6,6,5.9,4.9],"paint":[3.3,3.8,3.4,3,3,2.1,2.7,3,3.7,3.3,3.2,3,1.7,3.1,2.4,3.3,3.1,3.5,3.6,2.7,2.8,3.7,1.8,3.3,3.9]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[57,38.1,39.4,53.6,37.4,37.3,54.5,56,53.1,38.5,53,39.7,37.7,38,55.8],"script":[20.9,18.9,19.8,20,19.6,19,19.6,19.1,18.9,20.7,18.5,18.9,19.6,19.6,20.6],"paint":[18,18,18.3,16.8,16.9,17.2,17.4,18.2,17.1,16.5,16.1,18,16.9,16.8,17.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[136.2,134.1,135.9,140.5,141.8,136.1,139.7,138.5,138.8,140.4,135.7,138.3,136.7,136,135.6],"script":[89.5,88,90,92.5,90.2,91,90.2,90.8,91.2,90.7,90.5,90.6,91.9,89.1,89.1],"paint":[43.7,44.3,44.6,44,44.8,42.8,45.1,45.5,43.9,44.3,43.7,44.8,43,44.8,44.8]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[512,514.2,508.4,513.7,513.6,513.1,520.6,518.8,518.3,929.1,518,514.7,910.1,515.3,513.3],"script":[268,269.6,267,268.8,269.9,267.5,272.6,271.3,275,269.9,273.4,272.6,270.9,271.5,270.2],"paint":[239.3,239.4,236.7,240,238.8,240.9,243.3,242.7,238.3,244.1,239.7,237.3,244.3,238.8,238.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[74.6,71.9,75.7,74.5,76.9,76.9,74.1,73.7,72.8,75,74.5,74.7,74.1,75.2,74.1],"script":[41,39.1,41.3,40.1,39.4,41.7,40.1,41.1,39.3,41,41.5,40.2,40,42.4,40.5],"paint":[28.7,27.9,27.7,28.3,29.3,27.6,28.8,27.7,28.7,28.9,28.1,28.8,29.2,27.9,28]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.9,22.4,42.1,23.1,22,21.3,25.7,22,20.1,21.3,23.2,20.3,20.4,41.1,22.2],"script":[18.3,18.3,18.1,18,18.4,17.8,20.4,18.6,16,16.6,18.9,16.8,16.4,18.2,18.1],"paint":[2.5,3.1,2.8,3.9,3.2,2.7,2.2,2.2,3.4,3.5,2.9,3.4,3.1,3.5,3.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5873994827270508]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.84391975402832]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.586036682128906]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[44.7777156829834]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[89.78382110595703]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,32.2,37.8,38.2,39.2,38.2,31.9,38.8,38.9,33.8,39.6,32.9,30.3,33.7,35],"script":[6.2,6,5.8,5.5,5.7,5.8,5.5,6.2,5.8,5.7,5.5,5.6,5.4,5.9,5.7],"paint":[21.3,22,20.8,21.8,22.2,21.2,22.1,22,22,22.3,21.5,21.8,21.7,21.5,22.7]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[25,18.3,18.5,20.1,20.8,20.1,19.6,18.7,19.5,23.9,18.7,19.9,19.7,19.5,24.2],"script":[6.8,6.9,7.3,7,6.8,7,7.3,7.2,7.1,6.6,7.3,7.2,7.2,6.8,7.1],"paint":[10.8,9.4,10.4,10.9,9.5,9.7,9.6,10.8,10.3,9.3,9.5,10.3,10.6,9.5,9.8]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.1,16.9,33.5,16,16.7,33.1,33.3,36.4,16.9,17.4,18.1,16.6,16,32.8,33.2],"script":[4.9,3.7,4.6,4.5,4.7,4.3,4.4,4.6,4.5,3.9,4.6,4.3,4.4,3.7,3.4],"paint":[12.3,11.6,11.3,11.3,11.8,12.8,11.4,12.6,12.2,11.6,12.5,12,9.8,11.4,13.2]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.4,6.1,7.5,6.9,9.3,7.1,7.3,11.5,8.7,5.8,8.7,13.2,8.2,5.7,7.4,9.2,7.7,6.7,6.3,5.3,8.1,7.8,7.5,11.5,11],"script":[2.7,1.8,3.2,2.6,2.7,2,2.8,2.5,1.8,2.7,2.2,1.2,1.7,1.8,2.7,2,2.7,2.3,2.6,2,3.5,2.7,2.2,2.2,2.6],"paint":[3.5,2.4,3.2,3.6,2.9,2.3,4.5,2.8,2.9,3.6,3,3.3,2.2,2.3,2.3,3.2,3.5,2.7,2.7,2.1,3,2.2,2.9,2.8,4.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[26.9,28.3,27.2,29.9,29.2,12.5,28.7,27.5,26.9,27.1,26.6,30.3,26.3,30.5,28],"script":[2.2,1.9,2.2,1.8,2,1.8,1.8,1.5,2,2.2,2.4,1.9,2.2,2.8,1.5],"paint":[9.4,9.6,9.2,9.5,7.8,7.6,9.8,8.8,8.6,8.5,8.3,9.3,8.5,9.6,10.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38,32,30.8,32,31,30.1,30.5,31.9,31.4,30.2,29,34.2,28.6,32,32.6],"script":[11.6,11.5,11.3,11.4,11.4,10.8,11.9,11.6,10.8,11.6,10.8,11.4,11.4,11.4,11.8],"paint":[18,17,16.6,16.2,16.6,17.8,17.2,16.1,17.8,15.9,17.2,17.7,16,17,16.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[297.2,294.2,295.3,295.7,290.3,290,291.7,294.7,288.9,290.4,286.8,292.8,294.9,296.7,288.8],"script":[72.4,72.2,74.1,73.2,70.5,70.4,69.7,68.5,71.9,72.2,72.7,72.4,72.4,69.9,70.2],"paint":[210.7,212.9,212.4,216.2,213.5,211.7,215.9,218.4,212,214.2,210.6,214,211.8,217.6,213.6]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,40.4,40,40.1,40.1,38,42.3,33.9,33.8,41,34.1,39.1,34.7,38.4,41.2],"script":[7.2,7.1,7.1,7,7,7.3,6.9,7.2,6.9,6.9,7.2,7.1,7.3,7,7.2],"paint":[26.5,26.2,26.7,26.3,25.6,25.2,27,26.2,26.2,25.9,26.3,26.2,26.6,25.8,25.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.9,13,12.7,13,11.9,33.7,12.3,12.4,11.9,13.1,12.4,32.3,11,11.7],"script":[8.8,9,8.7,9.2,8.6,8.1,9.4,9.5,9.1,8.2,7.9,8.6,8.2,8,8],"paint":[1.8,2.1,2.3,2.4,2.8,2.5,2,1.8,2.5,3.4,2.1,3,2.9,2,2.9]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.581995964050293]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.834000587463379]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.868013381958008]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8090496063232422]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.783058166503906]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.5]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"art-v1.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[34.7,34.7,34.6,33.6,33.6,34.6,34,34.2,34.2,34.2,34,33.6,34.3,35.4,34.2],"script":[11.9,12,12.2,11.4,11.4,12.1,12.1,12.2,11.8,12.1,11.4,11.7,12.1,12.3,12.2],"paint":[22.2,22,21.8,21.5,21.6,21.9,21.3,21.3,21.7,21.5,22,21.3,21.6,22.5,21.3]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,12.4,11.8,12.1,12.5,11.6,12.3,11.9,11.4,12.2,11.6,11.6,11.5,12.2,11.5],"script":[2.9,3.4,3.1,3.3,3.4,3.2,3.3,3.3,3,3.3,3.2,3.1,3.1,3.4,3.2],"paint":[8.1,8.6,8.3,8.5,8.7,8,8.6,8.2,8.1,8.5,8.1,8.1,8,8.5,7.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,11.1,11.3,11.7,11.4,11.3,12.2,11.8,11.9,11.1,11.6,11.2,11.4,11,11.9],"script":[0.8,1.2,1.5,1.1,0.9,1,1.3,1,1.8,1.1,1.5,1.2,0.9,1,1.4],"paint":[8.5,8.6,8.5,9.2,9,9.1,9.4,9.2,9.1,8.8,9.1,9,9.4,8.6,9.1]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.1,5.8,6.1,6.2,5.6,6.7,5.7,5.5,5.9,5.8,5.9,5.5,5.6,6.2,5.8,6.1,6.3,5.7,6.9,5.5,6.2,6,5.2,6.5],"script":[3.1,3.7,3.7,4.1,3.9,3.4,4.5,3.1,3.4,3.8,3.5,3.6,3.6,3,3.9,3.1,4.2,4.2,3.6,4.3,3.3,4.1,4.1,3.6,3.8],"paint":[1.9,1.5,1.6,1.1,1.5,1,1.4,2.4,1.6,1.7,1.7,2.1,1.1,2.3,1.2,2.6,1.4,1.5,1.5,2.4,1.1,1.2,1.8,1,2.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,25.1,8.9,9.6,10,8.8,9.4,8.6,9.1,8.3,9,9,9.1,9.8,8.3],"script":[0.9,0.9,0.6,0.9,1.2,0.6,1,0.2,1.2,1,1,0.2,0.6,1.1,0.9],"paint":[6.9,6.7,7.3,7.7,7.5,7.5,6.9,6.3,7.2,5.8,5.8,7.4,7.4,7.2,5.7]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.9,20.1,19.9,19.4,20.1,20.2,20.1,19.9,21.5,21.5,19.9,20.9,19.5,20,20.7],"script":[5.7,4.9,4.9,4.6,4.9,4.8,4.8,4.8,5.5,5.5,4.9,5.2,4.8,4.9,5.3],"paint":[15.1,14.3,14.4,14.2,14.5,14.9,14.6,14.4,15,14.7,14.2,14.9,14,14.5,14.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[749.4,751.7,751.4,750.8,754,735.7,744.2,746,758.5,743.9,759.3,747.7,753.1,744.6,737.8],"script":[185.8,195,185.8,185.4,196.7,173.1,181.5,181.9,174.6,175.6,190.5,184.2,191.5,186.7,175.2],"paint":[233.3,232.5,233.5,235.1,232,234,233.5,232.6,233.4,232.5,232.8,232.4,234.2,234.4,232.9]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41,40.9,41.1,40.4,40.8,40.9,40.4,40.6,40.6,40.8,40.8,40.7,41.7,41.1,41.2],"script":[13.5,13.7,13.7,13.2,13.8,13.5,13.3,13.7,13.7,13.7,13.6,13.8,14.3,13.6,13.6],"paint":[26.4,26.1,26.3,26,25.9,26.4,26,25.8,25.9,26.1,26,25.8,26.3,26.3,26.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.8,19,19.6,20.4,18.4,19.2,19,19.9,21.5,20.7,21.2,19,20.3,20.3,19.5],"script":[18.2,16.6,17.9,18.4,17,17,17.1,17.1,19.6,18.9,18.8,17.1,18,17.8,17.6],"paint":[1.8,1,1,0.5,1.2,2,1.7,1.6,1.7,0.9,0.8,0.9,0.8,1.5,1.2]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.326578140258789]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.403861045837402]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.421059608459473]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.734299659729004]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.573543548583984]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[354]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.5]}},{"framework":"aurelia-v1.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[286.8]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,28.3,27.8,27.8,27.6,28.2,28,27.9,30.1,27.5,28.2,28,27.3,27.5,27.8],"script":[7.6,7.1,6.7,6.8,6.8,6.8,6.9,6.7,7.7,6.7,7.2,7,6.8,6.6,6.7],"paint":[22,20.6,20.5,20.5,20.2,20.8,20.6,20.7,21.8,20.3,20.5,20.5,20,20.4,20.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.3,9.7,9.7,10.4,9.7,9.5,9.4,9.7,10,9.7,9.6,9.8,9.7,9.8,8.5],"script":[3.1,3.3,3.4,3.6,3.3,3.1,3.2,3.3,3.7,3.5,3.2,3.3,3.3,3.4,3],"paint":[5.9,6.1,5.9,6.3,6,5.9,5.9,6.1,6,5.9,6,6.1,6.1,6,5.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,14.3,13,13.3,13.2,13.5,13.2,13.8,13.9,13.9,13.2,13.6,14.5,14.3,14.3],"script":[2.6,2.8,2.6,2.2,2.9,2.7,2.9,2.7,3.4,3.1,2.7,2.6,3,2.7,3],"paint":[9.7,10.3,8,9.1,8.7,9.4,9.1,9.7,10.2,10.4,9.7,9.8,9.6,10.5,9.2]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.3,1.9,2.1,2.4,2,2.2,2.7,1.9,2.8,2.5,2.5,2.5,2.1,2.6,1.7,1.8,2,2.8,2.5,2.3,2.1,2,2,2.4],"script":[0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0],"paint":[2,1.5,1.1,1.9,1.6,1.6,1.4,2.5,1.1,1.7,1.2,2.4,1.2,1.3,1.5,1.5,1.7,1.7,2.3,1.3,2.1,1.5,1.2,1.1,1.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.9,9.6,8.7,8.3,9.2,8.5,8.9,9.1,8.8,8.3,8.7,9.1,9.3,8.1],"script":[0.9,1.1,1.1,1.2,0.7,1.2,0.5,0.6,0.2,0.2,1.4,0.3,0.6,1.2,1.2],"paint":[6.8,7.5,7.6,6.6,5.9,7.2,6.4,7.3,6.8,7.3,6.2,7.3,7.7,6.9,6.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.4,10.4,10.4,10.6,10.5,10.4,10.7,10.5,10.7,10.5,10.7,10.8,10.8],"script":[0.2,0.6,0.2,0.5,0.3,0.5,0.2,0.2,0.4,0.3,0.6,0.7,0.5,0.5,0.8],"paint":[9.6,9.8,9.6,9.5,9.3,9.7,9.4,9.6,9.5,9.3,9.7,9.5,9.3,9.5,9.3]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.9,301.4,302.1,299.7,301.9,300.1,299.8,300.8,302.2,302.7,301.9,301.1,302.7,301.6,299.3],"script":[79,78.4,78,75.6,78.3,77.6,77.4,78.3,78.1,79.6,77.9,78.2,79.2,79.4,77.9],"paint":[217.5,215.6,215.7,216.5,215.5,215.2,214.2,215.2,216,215.8,216.7,215.5,216.2,214.9,214.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.4,35.7,34.3,34.3,33.9,34.3,34.6,35.6,34.4,34.6,34.8,34.8,34.5,35.1],"script":[8,7.8,8.2,7.9,7.9,7.9,7.7,8.2,7.7,8,8,7.8,8,7.9,8.1],"paint":[25.9,25.7,26.5,25.5,25.5,25.1,25.6,25.4,27,25.4,25.7,26.1,26,25.6,26.1]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.1,9.8,10.9,10.3,9.7,10.8,11.6,10.5,10.3,10.4,10.8],"script":[9,8,9.4,9.4,7.3,8.2,8.3,9.2,8.6,8.1,10,8.3,7.8,8.3,8.5],"paint":[0.6,2.1,0.6,0.7,1.7,0.7,0.8,0.4,0.3,2.3,1.4,1.6,0.6,0.8,1.5]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5573406219482422]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.598541259765625]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6989078521728516]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.09844970703125]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.94937801361084]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.9]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"bau-v0.92.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.5,39.6,40.3,41.4,40.6,39.4,40.4,40.5,40.1,40,39.8,39.3,40.1,40.1,40.8],"script":[17.5,17.1,17.5,18,17.6,16.9,17.4,17.8,17.4,17.2,17,17.1,17,17,17.3],"paint":[22.7,22.1,22.3,23,22.5,22,22.6,22.3,22.3,22.3,22.4,21.8,22.6,22.6,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[44,44.1,43.9,44.5,43.8,44,44.3,44.3,43.9,43.9,44,44.3,44.3,44.4,43.7],"script":[20.3,20.4,20.3,20.4,20.4,20.4,20.5,20.6,20.2,20.2,20.2,20.4,20.6,20.5,20.3],"paint":[23.2,23.3,23.1,23.7,23,23.2,23.3,23.3,23.2,23.3,23.3,23.5,23.3,23.5,23]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.4,14.9,14,14.3,14.1,13.1,14.3,14,13.8,14.2,13.6,14.6,14.8,13.9],"script":[2.5,2.4,3.1,1.9,2.7,2.2,2.3,2.7,2.2,2.7,2.2,2.4,2.7,2.2,2.5],"paint":[11.1,10.9,10.7,10.1,9.7,10.8,9.9,10.5,11,9.5,10.4,10.3,10,11.1,8.7]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[5.5,5.6,5.7,5.3,5.6,5.3,5.8,6.5,5.2,5.8,6.7,6.3,5.7,5.8,7,6.5,5.7,5.9,6.3,5.1,5.6,5.9,5.3,5.7,5],"script":[2.4,3.2,3.6,2.6,2.8,2.8,3.6,3.8,3.2,3.5,3.3,3.9,3,3.4,3.1,2.8,3.6,3.8,3.7,2.9,3,2.6,3.3,3,3.1],"paint":[2.6,1.8,1.4,1.6,2.7,1.5,1.6,1.8,1,1.4,2,1.2,2.6,1.7,1.8,1.5,1.5,1.1,1.8,1.2,2.5,2.3,1.1,1.8,1.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.8,18,18.8,16.2,17.6,17.6,16.6,16.5,19,18.3,16.9,17.3,16.4,18,17.6],"script":[2.9,2.8,2.6,2.8,2.2,2.7,2.5,2.4,3.6,2.7,2.4,2.5,2.1,3.2,2.2],"paint":[14.4,14.1,14.5,11.8,13.9,13.9,12.3,12.7,14.5,14.1,13.5,14.4,12.8,13.6,14.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.9,11.1,11.3,11.5,11.1,11.3,11.6,11.4,11.1,11.1,11.4,11.4,10.8,11.4],"script":[0.6,0.6,0.6,0.8,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.8,9.3,10,9.7,10.2,9.6,9.7,10.5,10.3,9.6,9.9,10.2,9.9,9.7,9.9]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[371.9,372.4,372.5,373.8,373,371.2,372.5,374,365.9,367.4,370.3,371.7,369.7,367.9,371.7],"script":[143.7,144,142.7,143.2,142.9,142.3,143.7,141.2,137.8,142.1,142.4,143.2,141.6,141.3,143.7],"paint":[221.5,221.7,223.1,223.5,222.9,222,221.4,226.1,221,218.1,221.1,221.8,221.3,218.7,221]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,42.7,43.4,42.8,42.4,43.3,42.4,42.7,42.5,42.9,42.6,42.9,42.6,42.6,42.5],"script":[15.9,15.9,16.1,15.8,15.8,16.1,15.9,16.1,15.7,16.1,16,16.1,15.9,15.8,15.9],"paint":[25.9,26,26.3,26.1,25.8,26.4,25.6,25.8,26,26,25.8,26,25.9,25.9,25.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.6,23.6,24.1,23.9,23.8,24.5,23.1,23.7,24,25.7,25.1,23,25.2,23.2,23.7],"script":[23.6,22.5,22.2,22.4,21.8,22.4,22,22.2,22.5,23.7,23.6,21.4,23.1,21.8,21.8],"paint":[1.4,1.1,1,1.4,1.9,1.3,1,1.4,1.1,1.4,1.4,1.5,0.3,1.4,1.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9995946884155273]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.862215042114258]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.931148529052734]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.45145320892334]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.7168960571289]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.5]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.8]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[281.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[38.9,38,38.5,38,38.6,38.3,38.4,38.3,38.6,39,38.1,38.1,38.2,38.5,38.7],"script":[15.1,14.6,15.1,14.5,14.5,15,15.1,15.1,15.1,15.1,14.4,14.6,14.5,14.9,15.1],"paint":[23.2,22.8,22.7,22.9,23.5,22.8,22.7,22.6,22.8,23.3,23.1,22.9,23.1,23,23]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[42.7,41.5,43.1,42.7,42,41.8,42.8,42.3,42.7,42.2,42.8,41.9,42.7,42,42.4],"script":[18.1,17.4,18.4,17.8,17.6,18,17.7,17.5,18.1,18,18.6,17.6,18,17.8,17.7],"paint":[24,23.5,24.1,24.2,23.7,23.1,24.3,24.2,24,23.7,23.5,23.7,24.1,23.6,24.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[120.9,118.4,120.5,121.1,120.3,121.5,120,119.1,119.5,118.8,120.5,121.7,119.9,120.2,120.6],"script":[97.7,95.1,97.3,98.4,96.8,98.4,96,96.2,96.1,95.3,97.4,97.4,95.9,95.6,96.3],"paint":[20.7,21.6,20.5,20.5,22.1,21,22.1,21,21.2,22.1,20.7,20.7,21.4,21.9,21]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,5.4,4.3,3.7,3.5,3.7,4.5,3.6,6.7,3.7,5.9,4.1,3.5,7.6,3.4,4,4.6,4.3,4.3,5.4,3.8,5.1,6.2,4.6,4.3],"script":[2,1.9,1.8,1.3,2,2.1,2.2,1.8,1.5,1.7,1.4,1.8,1.6,1.9,1.6,1.4,2.6,1.6,1.9,2.8,1.1,1.9,2.5,2.7,1.9],"paint":[1.6,1.8,1.1,1.4,1.3,0.9,2.1,1.3,2.1,1.7,2.1,1.5,1,1.8,1.6,2.5,1.6,2.5,2,2.1,1,1.8,2,1.7,1.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[17.3,16.5,16.6,16.4,15.9,16.5,16,16.4,16.8,17.3,16.5,17,17.7,17.1,16.2],"script":[3.5,3.5,3.5,3.4,2.8,3.4,3.7,3.6,3.1,3.6,3.4,3.7,3.2,3.3,2.8],"paint":[12.8,12.3,12.2,12.4,11.8,11,11.1,11.6,12.3,13.1,11.8,12,13.6,12.3,12.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,11.8,12.2,11.8,11.9,12.1,11.9,11.9,11.9,12,11.9,11.9,12.1,11.7,11.9],"script":[1.3,1.3,1.3,1,1.5,1.5,1.2,1.4,1.3,1.3,1.2,1.3,1.5,1.2,1.2],"paint":[10.1,9.8,10.1,9.6,9.7,10.2,9.9,9.8,10.1,10,9.7,10.1,9.7,9.6,9.9]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[370.2,372.2,370.8,370.9,370.9,370.3,368.6,370.2,368.9,369.5,370.2,371.2,370.1,371.8,371.2],"script":[139.8,142.3,141.7,141.4,141.7,140.5,140.2,139.4,140.5,140.4,140.4,140.7,140.4,141.3,141.5],"paint":[222.7,222.3,221.5,221.9,221.3,222,220.6,222.9,220.8,221.6,222.2,222.8,221.9,222.9,221.6]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.8,83.8,84,82.8,84.3,83.9,82.6,82.2,82.8,82.9,84.2,83.2,83,82.1,83.4],"script":[34,35.2,35.3,34.7,35.5,35.3,34.2,33.6,34.5,34.2,35.3,34.3,34.5,33.9,34.6],"paint":[47.8,47.5,47.6,47.1,47.8,47.6,47.3,47.5,47.2,47.7,47.8,47.8,47.4,47.2,47.8]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,14.4,15.6,15.5,15.2,15.2,14.5,14.8,16.4,15.9,16.6,15.2,14.8,15.4],"script":[12.9,12.4,12.7,13.1,13.6,13.3,13.3,12.1,12.8,13.2,13.7,13.2,13,12.9,13],"paint":[2.9,0.9,1.1,1.5,1.7,0.4,0.3,1.5,0.8,1.5,0.9,1.6,0.8,0.3,0.3]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7736759185791016]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.832524299621582]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.903874397277832]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9832029342651367]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.362706184387207]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[405.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,30.6,30.3,30.4,29.3,29,29.4,29.1,28.8,30.4,29.3,29,29.6,30.1,30],"script":[6.6,7.5,7.6,7.6,7.1,6.8,6.9,6.7,6.7,7.6,7.3,6.8,7.4,7.5,7.5],"paint":[21.6,22.5,22.1,22.2,21.6,21.7,21.9,21.8,21.5,22.2,21.4,21.5,21.6,21.9,21.9]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.7,13.7,13.9,14.5,14.8,14.2,13.5,13.8,13.7,14.6,13.8,13.8,13.9,13.1,13.8],"script":[4.4,4.5,4.6,4.9,4.9,4.5,4.4,4.6,4.7,4.9,4.6,4.7,4.8,4.5,4.6],"paint":[8.8,8.7,8.9,9.2,9.5,9.2,8.7,8.8,8.7,9.3,8.9,8.7,8.7,8.3,8.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,27.4,27.7,27.3,28.3,27.5,26.5,26.3,27.8,28.7,28.4,28.2,27.3,27.6,27.5],"script":[15.4,15.5,15.5,14.8,16.6,15.7,14.2,14.2,15.6,16.4,16.2,15.8,14.4,15,15.5],"paint":[8.3,10.5,9.4,10.6,10.3,10.3,9.7,11.7,9.8,11,10.7,10.1,10.5,10.3,10.2]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[13.4,13.7,13.9,13.5,13.7,13.6,13.7,13.4,13.6,13.9,13.5,12.7,13,12.9,13.2,13.9,14,13.4,14.7,14.3,12.9,13.3,13.5,14.1,14.3],"script":[9.7,10.7,11.2,10.2,10.9,11.1,10.7,10.4,10,11.2,10.5,9.3,9.9,10.4,10.1,11.1,10.7,10.5,11.2,11.6,9.6,10.6,10.1,11,11.1],"paint":[2,1.3,1.3,2.6,1.1,1.1,1.5,2,2.2,1.3,1.1,1.9,1.4,1.6,2.4,1.2,1.5,1.9,2.4,1.1,2.4,1.3,1.9,1.1,2.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.4,19.9,20.6,25.7,25.5,20,19.8,19.6,20,25.4,19.3,19.7,19.9,19.3,20.1],"script":[10.1,11.4,10.9,15.8,16.3,10.5,10.6,10.5,10.4,15.6,10.8,11.1,10,9.9,10.7],"paint":[7.2,6.1,8.6,8,8.3,8.2,8.1,7.1,7.9,7.6,7.3,7.2,8.5,7.6,7.1]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,25.7,25.1,25.4,25.8,24.7,24.7,25.1,25.1,24.6,23.8,25.6,25,25,24],"script":[8.4,8.6,8.4,8.1,8.2,8.4,8.6,8.3,8.5,8.4,8.1,8.2,8.4,7.9,8.2],"paint":[15,15.9,15.4,15.5,16.3,15.4,14.7,15.5,15.2,15.2,14.6,15.3,15.4,15.6,14.6]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[303.7,303.7,303.2,304.5,304.4,307.6,304.5,304.9,302.4,306.9,304.8,307.2,302.9,304.6,304.9],"script":[77,77.1,77.7,77.7,77.8,78,77.1,77.1,77.9,78.3,77,79.3,77,77.3,78],"paint":[219,218.7,217.6,219.2,218.8,222,218.8,220,216.9,220.7,219.9,220,218.1,219.6,219]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.8,37.9,36.4,37.5,37.3,37.4,37.2,36.6,36.7,36.8,37,36.5,37.5,37.5,36.2],"script":[10,10.1,9.3,9.8,10,9.6,9.9,9.7,9.4,9.6,9.6,9.3,9.8,10,9.4],"paint":[26.7,26.9,26.1,26.7,26.4,26.8,26.4,25.9,26.3,26.1,26.5,26.2,26.7,26.6,25.8]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.5,16.9,17.8,16.9,17.7,16.6,16.7,15.9,17.4,17.5,19.1,16.2,17.9,16,15.9],"script":[15.2,14.8,15.6,14.8,15.5,14.8,14.2,13.3,15.1,15.6,17.2,14,15.3,14.4,14],"paint":[0.9,1.3,1.1,1,1.2,0.3,2.2,1.9,0.8,1.7,0.6,1.6,1.2,1,1.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8214540481567383]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4175710678100586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4391775131225586]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0100765228271484]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.646400451660156]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.5]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.7]}},{"framework":"cyclejs-dom-v23.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.8]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.7,25.2,24.7,25.4,25.2,25.1,24.8,25.2,24.9,25.3,25,24.7,24.9,24.7],"script":[4.6,3.9,3.9,3.6,4.3,4,3.9,3.8,3.6,3.5,3.9,3.9,3.9,3.9,3.9],"paint":[22.1,20.4,20.9,20.7,20.7,20.9,20.8,20.5,21.1,21,21.1,20.7,20.3,20.6,20.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10.5,10.4,10.3,10.4,10.4,10.6,10.4,10.6,10.4,10.7,10.5,10.6,10.5],"script":[1.6,1.6,1.6,1.6,1.5,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.7,1.7],"paint":[8.6,8.5,8.6,8.5,8.4,8.5,8.5,8.6,8.4,8.6,8.5,8.7,8.6,8.5,8.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.2,13.5,13.2,12.8,13.4,12.3,12.6,13.9,13.2,12.6,14.2,14.8,14.4,12.7],"script":[2.6,3.3,2.8,2.9,2.9,3.3,3.1,2.9,3.5,3,2.9,3.3,3.6,3.2,2.9],"paint":[9.4,8.9,9.2,8.6,8.7,8.8,8,8.4,9.1,9.6,8.5,10.6,9.5,10.2,8.9]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.3,3.5,3.4,3.5,3.2,4.6,3.5,3.3,3.7,3,3.6,3.1,3.7,3.6,3.2,3.4,2.8,3.1,3.8,3.2,3.1,3.3,3.6,3.3],"script":[1.2,1.2,1.3,1.1,0.9,0.8,2.3,1.1,0.9,1.3,1.1,1.5,1,1.2,0.9,0.8,1.2,0.9,0.9,0.9,1.1,1.2,1.1,1.4,1.7],"paint":[1.4,2,1.5,1.8,2.5,2.2,1.5,2.3,2.3,2.3,1.1,1.4,1.5,2.5,2.6,1.5,1.4,1.1,1.5,2.8,1.3,1.1,1.4,1.5,1.1]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.1,10.8,10.3,10.8,11,10.9,11.1,10.7,10.8,10.8,10.5,10.7,11.7,11.3],"script":[2.8,2.5,2.2,2.7,2.9,2.3,2.9,2.8,2.8,2.7,2.5,2.9,2.8,2.6,2.7],"paint":[6.7,7,7.2,7,5.8,8.1,6.7,7.1,6.4,6.9,7.4,6.7,6,8.2,7.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.5,17.7,18.4,18.1,18.3,17.8,17.8,17.8,17.8,18.2,17.9,18.1,17.6,17.8,18.4],"script":[3.1,3.1,3.4,3.1,3.3,3.1,3.2,3.1,3.1,3.3,3.3,3.1,3.1,3.1,3.2],"paint":[14.7,14,14.4,14.4,14.4,14.1,14,14,13.6,14.4,13.7,14.4,13.9,14,14.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[270.7,269.3,269.2,267.7,268.7,266.7,268.8,267.7,272.5,269.1,268.2,268,268.2,271.4,269.2],"script":[37.7,38.2,36.2,37.1,36.2,35.5,37.4,35.8,39.3,37.3,36.8,36.2,37,36.8,36.6],"paint":[225.7,223.8,225.8,223.3,225.2,223.6,223.9,224.6,225.8,224.3,224.1,224.4,223.8,227.2,225.4]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.9,31.2,31.1,31.5,31.6,31.8,31.6,31.8,31,31.3,31.6,31.8,31.5,32.1,31.1],"script":[4.3,4.1,4.3,4.3,4.2,4.4,4.4,4.3,4.1,4.2,4.4,4.6,4.4,4.3,4.4],"paint":[26.8,26.3,26,26.3,26.6,26.6,26.4,26.7,26.1,26.2,26.4,26.4,26.3,27,26]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.8,10.8,11,10.4,10.7,12.2,10.1,10.5,10.7,12,11,10.6,10.8,10.6,10],"script":[8.9,8.5,9.1,8.2,8.2,8.7,8,8.2,8.8,9.2,8.8,8.3,8.7,8.7,8],"paint":[0.5,0.9,1.7,1.6,2.2,2.3,1.3,1.3,0.3,1.8,2.1,0.9,1,0.3,1.6]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184892654418945]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3724746704101562]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3656005859375]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7752017974853516]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.36058521270752]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"cydon-v0.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"01_run1k","values":{"total":[70.2,72.9,70.8,70.5,70.5,70,71.3,69.8,71.3,70.1,70.3,71.2,70.7,70.4,70.6],"script":[51.2,53.7,51.6,51.6,51.3,50.9,52.2,50.7,52.1,51.1,51.5,52.2,51.7,50.9,51.4],"paint":[18.6,18.7,18.7,18.5,18.7,18.6,18.7,18.7,18.7,18.6,18.4,18.6,18.6,19.1,18.8]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"02_replace1k","values":{"total":[78.7,79.7,79.7,80.8,77.7,82.1,78.8,80.6,80.7,80.3,81.7,80.3,80.6,79.5,79.9],"script":[58.7,59.5,59.8,60.4,57.6,62.9,58.8,60.5,60.3,60.3,62.7,60.2,60.5,59.3,60.3],"paint":[19.5,19.8,19.4,19.9,19.6,18.7,19.5,19.7,20,19.5,18.5,19.6,19.7,19.7,19.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[265.6,259.2,257.9,258.3,263.7,268.6,263.2,277.2,262.2,260.4,267.6,266,259,265.1,264.9],"script":[186.3,180.9,181.1,179.8,184.3,185.7,186.7,193.5,185.3,187,192.4,186.6,179.9,187.2,186.7],"paint":[76.9,76,75.3,77.1,76.7,80.6,75.4,82.2,74.9,70.8,72.5,77.4,76.9,75.8,76]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"04_select1k","values":{"total":[13.2,11.3,9.7,13.1,13,14.5,10,13.9,13.6,10.9,13.1,10.6,13,10.9,13.7,12.5,10.7,12.6,10.6,10,10.8,13.4,10.3,13.4,12.5],"script":[10.4,8.8,7.7,10.6,10.5,10.8,7.5,11.2,10.4,8.2,9.9,8,10.1,8.3,11.3,10.3,8.5,10.5,8.3,7.7,8,10.8,7.6,10.8,10.2],"paint":[1.8,1.7,1.1,1.4,1.7,2.7,1.5,1.6,3,1.9,2.7,2.5,2.8,1.9,2.3,1.4,1.7,1.3,2.2,2.1,2,1.7,1.9,2.4,1.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"05_swap1k","values":{"total":[261.3,284.3,270.5,272.6,266.9,269.2,261.8,277.8,286.3,263.8,278.7,263.3,274.1,263.7,276.7],"script":[181.2,200.9,185.3,193.8,184,187,179.4,195.2,202,182.3,196.6,181.5,191.9,183.5,194.8],"paint":[78.4,81.6,82.9,76.6,81,80.8,80.8,80.8,82.9,78.9,80.4,79.9,80.9,78.3,79.7]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[155.1,157.7,154.1,155.4,155.1,154.7,155.8,154.4,147.2,158.6,154.7,153.9,155.1,153.6,156.1],"script":[115,115.7,115.4,114.4,114.8,114,114.5,116,107.2,116,112.3,112.6,113.8,112.8,114.4],"paint":[39,41.2,37.7,39.7,39.3,39.8,39.9,37.5,39.1,41.5,41.3,40.2,40.5,40,40.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"07_create10k","values":{"total":[1227.4,1220.9,1248.5,1239.7,1249.8,1230.9,1236,1237.2,1274.4,1244.5,1235.8,1239.9,1236,1236.7,1236],"script":[1010.6,1006.8,1033.3,1022.7,1034.4,1014.1,1019.8,1020.6,1051.4,1026.5,1018.2,1022.4,1017.7,1019.2,1019.7],"paint":[209.7,207,208,209.8,208.2,209.1,209.1,209.5,215.1,210.6,210.5,210.3,211.2,210.3,209.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[149.5,146.6,147.8,147.6,151.1,148.5,148.4,149.2,150.6,149,148.3,150.4,151.3,150.4,151.4],"script":[109.8,107.4,108.6,108.5,111.3,108.9,109,110.1,110.9,109.5,109.2,110.5,110.9,110.1,110.3],"paint":[38.8,38.3,38.3,38.3,39,38.8,38.6,38.2,38.9,38.6,38.3,39,39.5,39.5,40.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[47.3,48.7,45.6,48.1,46.7,45.9,44.2,45.5,48.2,46,49.1,45,43,44.8,44.8],"script":[45.2,47,43.5,45.5,45,44.2,42.2,43.5,45.7,43.7,46.9,42.8,40.8,42,42.7],"paint":[1.9,0.8,1.2,2.5,0.7,0.5,1,1.8,1.3,1.4,1.2,2.1,1.2,2.6,1.2]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9189090728759766]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[29.282416343688965]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[29.73321533203125]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6006050109863281]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[615.4609441757202]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[95.1]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"deku-v0.12.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.7,23.6,23.5,23.6,23.9,23.7,23.7,23.8,23.7,23.5,23.8,23.5,23.6,23.7],"script":[1.7,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8],"paint":[21.6,21.5,21.4,21.3,21.4,21.7,21.5,21.6,21.6,21.6,21.3,21.6,21.3,21.3,21.5]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.7,10.7,10.4,10.6,10.7,10.8,10.2,10.7,10.6,10.7,10.6,10.7,10.8,10.6],"script":[1.2,1.3,1.2,1.2,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3],"paint":[8.8,9.1,9.2,8.9,9.1,9.1,9.1,8.7,9.1,9.1,9.1,9,9.1,9.2,9]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11.3,10.7,10.3,11.2,10.7,10.4,10.6,10.4,10.6,10.3,10.9,10.9,10.2,10.4],"script":[0.1,1.1,0.1,0.5,0.5,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.7,9.3,8.5,8.7,9.6,8.7,9.4,9,9,9.4,9.3,9.6,9.2,8.9,8.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.1,2.4,1.9,2.3,2.7,2.3,2.7,2.3,2.8,2,1.8,2.7,2.1,2.6,1.9,2.1,2.4,2.1,2.5,2.3,2.6,2,2.9,2.2],"script":[0,0,0.7,0,0,0,0.4,0.7,0,0,0,0,0.8,0,0.6,0,0.1,0,0.1,0,0,0.9,0,0.8,0],"paint":[2.1,1.9,1.6,1.1,2.2,2,1.8,1.8,1.7,2.6,1.2,1.6,1.3,1.9,1.8,1.7,1.9,1.4,1.8,1.6,1.5,1.2,1.5,1.7,2.1]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"05_swap1k","values":{"total":[7.8,7.9,7.3,7.5,7.4,8,7.4,7.4,7.4,7.3,7.6,7.3,7.6,7,7.4],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[6.7,7.1,6.3,6.5,6,7.1,6.2,6.8,6.2,6.3,6.4,6.1,6.3,5.9,6.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.2,10,10.3,10.1,10.1,10.2,9.9,10.6,10.1,10.3,10.2,10.4,10.3],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1],"paint":[9.8,8.9,9.3,9.3,9.5,9.6,9.5,9.3,9.2,9.6,9.6,9.7,9.6,9.5,9.7]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"07_create10k","values":{"total":[252.2,254.3,254.2,252.7,252.5,254.2,255.7,253.2,254.7,252.4,252.9,252.4,252.7,254.3,253.1],"script":[19.9,20.2,19.8,19.5,19.8,20,20,19.6,19.8,19.9,19.7,20.1,20,19.9,20],"paint":[225.2,226.8,227.1,226.1,225.6,227.1,228.4,226.4,227.4,225.4,226,225.1,225.5,227.2,225.6]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.7,27.2,28.1,27.3,27.2,26.5,27.1,27.6,27.2,28.3,27.4,27.1,27.3,27],"script":[1.8,1.8,1.8,1.9,1.8,1.8,1.7,1.8,2,1.8,2.3,1.7,1.7,1.8,1.8],"paint":[24.8,25.2,24.7,25.4,24.7,24.7,24,24.6,24.9,24.7,25.3,24.9,24.6,24.8,24.4]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.5,9.3,8.7,9.5,10,9.8,9.1,9.6,9.5,10.6,9.2,9.9,8.9,9.6],"script":[7.7,7.4,6.9,7.4,7.1,8.2,8,7.2,7.9,7.2,8.8,7.4,7.8,7.3,7.6],"paint":[0.6,1.9,1.7,1.1,1.4,0.4,1.4,1.1,0.7,1.2,0.5,0.9,1.4,0.6,0.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.554840087890625]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8832197189331055]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8928709030151367]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6064558029174805]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.304900169372559]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"deleight-v5.5.10-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,25.1,25.7,26.3,25.7,26,25.7,25.4,25.4,25.3,26.2,26.2,25.8,26],"script":[3,3.3,3,3.1,3.5,3.2,3.4,3.5,3.1,3,3,3.5,3.3,3.1,3.1],"paint":[21.9,22.1,21.7,22.2,22.5,22.1,22.3,21.9,21.9,22,21.9,22.4,22.5,22.3,22.5]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.3,13.4,13.5,13.4,13.6,13.5,13.6,13.3,13.4,13.5,13.7,13.6,13.4,13.2],"script":[3.5,3.3,3.4,3.6,3.6,3.6,3.5,3.7,3.4,3.4,3.6,3.7,3.7,3.7,3.6],"paint":[9.5,9.6,9.6,9.5,9.4,9.4,9.6,9.5,9.6,9.6,9.5,9.6,9.5,9.4,9.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.8,12.1,12.2,13.5,11.7,12,12.1,12.5,12.1,11.8,11.9,13.1,11.9,11.9],"script":[1.9,1.1,1.7,1.9,2.1,1,1.4,1.8,1.8,1.8,1.9,1.7,2.1,1.8,2.1],"paint":[9.7,10,9.4,9,9.4,9.7,9.2,9.1,9.7,9.4,8.9,9.6,9.7,9,8.8]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.5,3.4,3.6,3.4,3.4,3.3,3.5,2.9,3.2,2.8,3.4,3,2.9,3.3,4,3.1,3,3.1,3,3.3,2.7,3.8,3.1,3.9],"script":[1.4,1.1,0.9,1.2,1.2,1.3,1.1,1.2,1,1.1,1.2,1.5,0.6,1.2,1.1,1.5,0.9,1.3,0.9,1.3,1.1,0.8,1.2,1.1,1.2],"paint":[1.1,1.4,2.1,2.3,1.4,1.5,1.7,2.2,1.2,2,1.1,1.6,0.9,1.6,2.1,2.3,1.5,1.5,1.3,1.5,2.1,1.1,2.3,1.8,1.7]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10,10,9.8,9.7,9.7,9.3,9.9,10.4,9.9,9.6,10.7,10.3,10.2,9.8],"script":[1.9,1.7,1.5,1.6,1.6,1.3,1.1,2.1,2.3,2,1.7,2,1.9,1.9,1.8],"paint":[7.9,6.9,6.5,7,6.9,7.3,6.8,6.8,7.2,7.6,6.3,6.9,7.4,7.2,7.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,11,10.7,10.5,10.4,10.9,10.4,10.8,10.3,11.5,10.9,10.8,10.6,10.5,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.5],"paint":[8.9,9.5,9.7,9,9.5,9.4,9.5,9.6,9.4,9.8,9.5,9.6,9.3,9.1,9.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[269.5,270.4,269.3,269.4,271.2,267.9,269.1,266.3,271.3,267.5,269.5,268.8,268.6,270.2,268.9],"script":[33.2,33.3,33.7,33.5,33.3,32.8,33.5,32.4,33.7,32.6,32.9,33.2,33.6,34,33.1],"paint":[229.2,229.2,228.5,228.5,230.5,227.7,228.4,226.7,230.3,227.6,229.2,228.4,227.6,228.9,228.4]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.5,30.6,30.9,30.6,30.3,31.6,30.4,30.4,30.4,31.3,29.9,30.4,30.5,30.9,31],"script":[3.6,3.3,3.2,3.2,3.2,3.3,3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.6,3.3],"paint":[26.2,26.6,26.9,26.6,26.4,27.5,26.5,26.4,26.5,27.3,26.1,26.4,26.5,26.6,27]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,10.5,10.6,10.5,10.2,9.5,10.6,11.2,12,12.3,11.4,11.8,10.8,10.4,10.3],"script":[9.9,8.9,8.4,8.6,8.7,7.7,8.4,9.9,10.1,9.9,9.3,8.7,9.4,8.8,8.5],"paint":[0.7,0.7,1.1,0.8,0.6,1.2,1.2,1.2,1.7,1,1.2,2.8,0.3,0.2,0.9]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7556791305541992]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3518762588500977]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.403101921081543]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9692201614379883]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.032843589782715]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[31.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.2,24.2,24.4,24.1,24,24.2,23.9,24.4,24.1,24.8,24.1,24.6,25.2,24.4],"script":[2.4,2.4,2,2.2,2,2,2.3,2,2.3,2,2.4,2.3,2.3,2.4,2],"paint":[21.8,21.5,21.9,21.8,21.8,21.6,21.6,21.6,21.7,21.7,22,21.5,21.9,22.3,22]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.9,11.1,10.5,11.2,10.7,10.7,10.8,10.6,11.3,10.7,10.5,10.7,10.8],"script":[1.6,1.5,1.6,1.5,1.5,1.6,1.4,1.5,1.5,1.5,1.8,1.4,1.4,1.5,1.6],"paint":[9,8.9,9,9.3,8.7,9.2,8.9,8.9,9,8.8,9.1,8.9,8.7,8.9,8.8]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.1,12,13.2,11.9,12.3,11.9,12.3,12.7,12.7,11.9,11.7,12.8,13.2,12.3],"script":[2.3,1.6,1.9,2.4,1.5,1.4,2.2,2,2.1,1.8,1.9,1.5,1.8,2.4,2],"paint":[9.5,8.7,9.1,10,8.7,8.9,8.3,9.3,9.5,9.8,9.2,9.1,9.6,10.5,8.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.5,2.7,2.7,1.9,1.9,2.1,2.1,2.2,1.7,2.5,2.7,2.7,2.7,3.3,2.4,2.2,2.4,2.4,3.1,2.1,2.2,2.7,2.4,2.4],"script":[0.1,0.4,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1,0.1,1,0.7,0.1,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.9,0.7,0.6],"paint":[2.3,1.9,2,1.8,1,1.5,1.3,1,1.8,1.5,1.3,1.6,1.9,0.7,1.1,1.6,2,1.3,1.8,2.9,1.3,1.3,1.2,1.6,1.2]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.2,9.4,9.8,16.5,10.4,10.9,9.7,9.6,9.5,9.1,10,9.8,10.1],"script":[1.6,1.4,1.8,1.7,1.8,2.7,1.1,1.3,1.9,1.4,1.7,1.6,1.5,1.1,1.8],"paint":[6.8,7.7,6.3,7,7.1,11.5,7.6,7.9,6.9,6.9,6.2,6.6,7.5,6.8,7.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.9,18,18.1,18.2,18,17.7,17.7,17.7,18,17.7,18.2,17.7,17.6,18.2,17.7],"script":[2.4,2.5,2.4,2.6,2.5,2.4,2.6,2.5,2.5,2.5,2.4,2.5,2.4,2.5,2.4],"paint":[14.9,14.7,15,14.9,14.9,14.7,14.5,14.5,14.9,14.6,15.1,14.5,14.6,15.1,14.7]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[257.6,257.9,257.1,256.1,255.5,256.2,256,258.4,255,254.7,256.9,257.9,258,259,256.7],"script":[25.9,24.9,25.4,24.7,25.2,25.1,24.7,25.1,25.3,24.8,25.5,25.8,25.7,25.8,25],"paint":[224.5,225.7,224.5,224.4,223.2,224,224.2,225.6,222.7,222.7,224.3,224.8,224.5,226,224.6]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,28.8,29.1,29.5,29.1,29.2,29.6,29.5,29.5,29.4,29.8,29.6,29,29.6],"script":[3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.3,3.3,3.3,3.4,3.6,3.3,3.3,3.3],"paint":[25.1,25.5,24.8,25,25.4,25,25.2,25.5,25.4,25.4,25.3,25.5,25.6,25,25.5]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,14.8,11.9,11.4,10.9,11.3,10.9,10.2,11,11.7,12.2,11.5,11.9,10.9],"script":[9.2,10,12.4,9.2,9.3,9.1,9.6,9.1,8,9.7,9.6,9.6,9.1,10,9.1],"paint":[1.8,0.2,1.5,0.9,1.3,0.3,1,0.9,1.6,0.5,0.9,1.5,2.2,1.2,1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5912494659423828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.21185302734375]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.2321176528930664]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7253131866455078]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.117511749267578]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.3]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"01_run1k","values":{"total":[35.8,36.5,36.5,36.5,36.3,36.7,36.2,36.5,36.4,36.7,36,36.5,36.4,36.3,36.2],"script":[14.2,14.4,14.4,14.5,14.3,14.5,14.2,14.5,14.6,14.4,14.1,14.3,14.4,14.2,14.4],"paint":[21.1,21.6,21.6,21.5,21.4,21.6,21.4,21.5,21.3,21.7,21.3,21.6,21.4,21.6,21.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.7,23.4,23.9,23.4,23.5,24.1,24.3,23.9,23.9,23.2,23.7,23.6,23.7,23.7,24],"script":[13.9,13.6,13.8,13.6,13.6,13.7,13.8,13.9,13.8,13.5,13.7,13.7,13.5,14,13.8],"paint":[9.2,9.2,9.5,9.3,9.3,9.7,9.9,9.5,9.6,9.2,9.4,9.3,9.6,9.2,9.6]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18,17.6,18.8,18.1,18.1,18.1,18.6,18,18.8,17.7,19,17.4,19,18.1,18.5],"script":[7,6.7,7.8,6.5,6.9,7.4,7.2,7.2,7.1,6.7,7,6.7,7.1,6.9,6.8],"paint":[9.6,9.1,9.5,10.1,9.5,8.8,10.3,9.4,9.7,10.1,9.8,9.3,9.9,8.5,9.3]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"04_select1k","values":{"total":[5.9,6,6.9,5.6,5.8,5.9,6,6.1,5.9,5.8,5.8,5.4,6.1,6,6.1,5.2,6.1,5.8,5.9,6.1,5.8,6.5,6.2,5.5,6],"script":[4.1,3.3,4.7,3.2,3.6,3.3,3.5,3.7,3.5,3.1,3.6,3.4,3.6,3.2,3.6,2.8,3.6,3.7,3.6,3.5,3.6,3.9,3.7,3.4,3.9],"paint":[1.6,2,1.4,1.4,1.3,2.4,1.8,1.6,1.9,2.4,1.6,1.5,1.5,1.7,1.5,2.3,2.3,1.8,2.2,1.8,1.6,2.4,2.4,1.5,1.5]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.1,13.6,11.8,12.2,12.1,12.4,12.2,12.7,11.7,12.2,11.4,11.7,11.5],"script":[3.6,3.6,3.3,4,3.7,4.2,3.7,3.2,3.9,4.5,3.9,3.6,3.3,3.6,3.3],"paint":[6.8,8.2,7.5,8.5,6.6,7,7.2,8,7.2,7.3,6.5,7.3,7.2,5.9,7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.7,28.4,27.9,28.5,29.5,28,28.4,28.5,27.9,31.6,28.2,29.4,27.7,29.2,27.9],"script":[11.7,12.1,12,12.4,12.8,11.9,12.1,12.1,12,12.3,11.9,12.1,12,12.9,12],"paint":[15.9,15.4,14.5,15.1,15.3,14.9,14.8,15.3,14.8,18,14.9,16.2,14.8,15.2,15]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"07_create10k","values":{"total":[407.6,404.3,403.2,404.2,406.2,402.3,403.2,414.4,405.9,406.2,404.2,406.4,402.9,404.4,402.8],"script":[178.6,176.9,176.9,177.8,179.8,176.7,176.9,178.8,179.6,178.4,176.6,178.1,177.2,177.8,176.8],"paint":[221.1,220.5,219.1,219.4,219.2,218.6,218.8,226.8,219,220.6,220.3,220.3,218.5,219.5,218.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.8,53.2,52.6,53.5,53.3,52.8,53.4,53.7,52.9,52.9,52.9,52.6,52.8,52.9,53.5],"script":[26.8,26.3,26.4,27,26.8,26.6,26.8,27,26.6,26.6,26.4,26.4,26.3,26.2,26.8],"paint":[26.1,25.9,25.3,25.6,25.6,25.3,25.6,25.7,25.3,25.3,25.5,25.3,25.5,25.8,25.8]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,16.4,16.3,16,15.7,14.5,15.1,15.6,15.4,16.4,16.8,15.1,15.6,15.1,15.4],"script":[13.5,14.4,14.8,13.8,13.7,12.7,13.3,13.6,13.5,14.3,15.1,12.7,13.4,13.2,13.2],"paint":[0.5,0.8,0.3,1.4,0.3,1.6,1,0.3,1.1,0.9,0.6,1.1,1.8,1.7,2]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8239517211914062]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32576847076416]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.9292497634887695]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.437203407287598]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.644211769104004]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.7]}},{"framework":"doz-v5.2.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.9]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,24.3,23.8,23.4,23.9,23.6,24.6,25,24,23.9,25.1,24.4,23.8,24,23.8],"script":[1.8,1.8,1.8,1.8,1.8,1.8,1.8,2,1.8,1.8,2,1.8,1.8,1.9,1.8],"paint":[21.4,22.1,21.6,21.3,21.6,21.4,22.4,22.7,21.9,21.8,22.8,22.2,21.6,21.8,21.6]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[9.6,10.3,9.8,10.2,9.6,9.5,9.6,9.6,10.2,10.3,10.1,9.7,9.6,9.6,9.6],"script":[1,1.1,1.1,1.1,1.1,1,0.9,1,1.1,1.1,1.1,1.1,1,1,1],"paint":[8.3,8.9,8.4,8.8,8.2,8.1,8.3,8.3,8.8,8.8,8.7,8.3,8.3,8.3,8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11,11.4,10.1,11,10.7,10.2,10.7,11,11.3,10.4,11.1,12,10.7,11.2],"script":[0.6,0.8,1.1,0.2,1.2,0.2,0.2,1,0.9,0.9,1,0.5,0.5,0.5,1],"paint":[9.5,9.5,9.1,8.9,8.7,9.6,9.4,8.5,8.9,9.3,8.2,8.6,10.6,8.6,9.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.4,2.2,2.1,3,2.4,1.9,2.4,2.2,1.9,2.4,4.1,2.1,2.4,1.6,2.9,1.8,2.7,3,2.2,2.6,2,2.6,2.3,2.8,1.9],"script":[0.9,0.1,0.3,0.9,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1],"paint":[1.2,2,1.3,1.7,1.7,1.7,1.2,1.3,1.7,0.9,3.1,2,2.2,1.4,2.3,0.9,2.3,2.7,1.5,2.5,0.9,1.8,1.4,2.5,1.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[8,7.4,7.5,8.2,8.2,8.2,7.7,8,8.1,8,8.6,8.3,8.8,9.3,8.7],"script":[0.7,0.1,0.1,0.1,0.6,0.4,0.1,0.1,0.1,0.1,0.6,0.1,0.5,0.7,1],"paint":[6.4,6.6,6.3,6.8,6.6,6.5,6.6,6.6,7.2,6.1,6.9,7,7.2,7.4,5.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.1,10.2,10.4,10.6,10.2,10.2,10.5,10.1,10.1,10.4,10.2,10.2,10.8,10.3],"script":[0.3,0.3,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.7,9,9.5,9.4,9.8,9.5,9.2,9.9,9.3,9.6,9.7,9.5,9.6,9.8,9.5]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[325.3,321.1,324,325.8,323.1,325.6,326.6,326.3,326.1,327.8,324.1,324,326,326.3,323.3],"script":[98.8,98.5,99.6,99.5,99,100.7,99.9,99.9,101.2,100.8,99.8,99.3,99.5,98.5,99.3],"paint":[218.8,215.3,217.1,219.1,217,217.7,219.2,219,217.6,219.7,217.1,217.5,219.3,220.2,216.8]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.2,36.7,36.4,36.4,36.7,36.6,36.9,36.2,36.6,36.5,36.9,36.5,36.3,36.4,36.7],"script":[9.6,9.8,9.8,9.7,9.9,9.8,9.9,9.6,9.8,9.7,9.9,9.8,9.7,9.7,9.7],"paint":[25.6,25.9,25.6,25.7,25.9,25.8,26.1,25.6,25.8,25.8,26.1,25.8,25.6,25.7,26.1]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.6,13.8,12.9,13.8,12.9,12.7,14.4,13.6,14.9,14.2,13.3,13.3,15.5],"script":[11.5,11.4,11.6,11.8,11.3,11.8,11.2,11.2,12.3,11.2,12.8,12.3,11.3,11.8,13.1],"paint":[2,1.1,1.1,1.2,0.7,1.3,1,0.7,1.1,2.1,1,0.9,0.7,0.4,0.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6649494171142578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.742987632751465]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.677057266235352]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.68896484375]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.78525447845459]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.4]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.5]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[33.2,31.2,31.2,33.4,33.6,32,31.6,31.6,30.2,33.8,33,31.3,32.5,31.8,31.8],"script":[5.2,5.6,5.3,5.7,5.5,5.5,5.6,5.6,5.7,5.6,5.7,5.2,5.6,5.7,5.7],"paint":[21.2,21.8,21.8,21.7,21.4,21.8,22.4,21.6,22,22.5,21.7,21.8,22.1,21.9,21.9]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[15.5,14.6,15.1,14.5,15.9,16.6,14,14.9,20,21.4,14.7,14.6,16.8,15.5,15.7],"script":[5.4,4.7,4.8,4.9,4.8,4.7,4.7,5.2,4.8,4.5,4.8,4.8,4.9,5,5.2],"paint":[9.2,9.6,9.3,9.2,9.2,9.3,8.8,9.3,9.1,9.1,9.5,9.4,10,10.1,10.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.1,13.6,13.6,12.9,14.9,27.8,28.6,30.3,29.2,13.9,13.7,11.9,13.8,30.4,14.4],"script":[2.8,2.3,2.6,3.3,3.7,2.4,3,2.2,2.5,2.5,2.6,3,3.9,4,1.6],"paint":[11.3,9.7,9.7,8.9,10.5,9,8.9,10.1,9.5,9.1,9.7,8.4,9.6,8.8,10.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,6.6,7.8,5,3.8,3.2,3.1,3.4,6.6,8.5,3.7,4.4,7.7,4.2,5.7,4.4,6.4,3.1,3.7,13,5.5,3.4,3.1,2.7,6.4],"script":[0.2,0.9,0.9,0.9,0.5,1,1.1,1.2,1.1,1.3,1,1,0.9,1.5,1.2,0.2,1.2,0.8,1.2,0.4,0.7,1.7,1.1,0.2,0.2],"paint":[2.4,1.1,1.3,1.6,2,1.6,1.8,1.3,1.6,1.8,2.1,1.2,1.7,1.6,1.8,1.3,1.5,2.1,1.1,1.5,2.1,1.6,1.8,1.4,1.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[24.5,8.7,9.3,24.6,25.2,25.1,10.1,24.9,9.6,10.1,24.4,8.7,24.9,9.3,9.5],"script":[1,0.9,0.2,1,0.6,0.9,1.2,0.9,1.8,2.3,0.9,0.6,0.7,0.2,0.8],"paint":[7.2,6.8,7,7.4,6.8,7.4,7.8,7,6.2,5.7,8.1,6.8,6.4,7.2,7.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.2,22.4,22,21.9,22.5,23,22.8,22.7,22.7,22.3,26.2,22.1,23.1,22.3,22],"script":[6.4,6.5,5.7,5.9,6.5,6.5,6.2,6.7,6.5,6,7.9,6.1,6.8,6.1,5.8],"paint":[14.9,14.9,14.5,15.3,14.9,15.5,15.4,14.6,14.8,15,15.1,15.1,15.5,15.4,14.7]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[740.1,718.9,279,731,279.3,714,280.5,279.9,277.3,281,735.6,722.2,281.5,279,279.1],"script":[57.1,57.9,57.9,57.6,57.5,57.1,57.8,58.1,57.1,58.5,57.4,56.7,60.2,57.8,57.3],"paint":[220.4,217.3,213.5,219.9,214.1,217.8,215,214.3,212.6,215,220.7,220.9,213.7,213.7,214]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,32.2,32.3,38.1,32.4,37.4,37.9,37.8,38,56.5,37.9,38.5,39.2,32.5,38.2],"script":[6,5.6,5.8,6.3,5.8,6.1,6.1,5.9,6.2,6.1,5.9,6.1,6.3,5.7,6],"paint":[24.9,25.5,25.6,25.3,25.7,24.8,25.2,25.1,25.1,24.9,25.4,25.7,25.3,25.6,25.6]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.8,31.9,10,9.9,11.1,10,31.5,31.3,9.9,31.1,9.5,9.9,31.6,32.4,10],"script":[8.8,7.9,7.8,7.1,7.9,8.4,8.5,8,7.7,7.4,7.5,7.7,8.3,9.7,7.5],"paint":[2.2,1.9,0.9,1,0.7,1.3,0.9,1.1,0.7,1,0.4,1.4,0.7,1.4,2.1]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6475505828857422]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6502647399902344]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.714531898498535]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9943656921386719]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.85181999206543]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.4]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.4,25.3,30.1,32.9,24.4,32.7,33,30.8,30.7,27.4,25.2,32.7,24.8,26.8,31.4],"script":[2.1,2.2,2.1,2.1,2.1,2.1,2.1,2.1,2.2,2.2,2.2,2.1,2.2,2.2,2.1],"paint":[21.7,22.2,22.4,21.9,22.1,22,22.6,22.6,22.1,22.4,22.3,21.7,22.4,22.5,22.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[12.8,19.3,12.5,18.3,19.3,14.4,13.5,13.1,17.6,12.3,14,17.4,12.6,12.8,13.9],"script":[3.1,3,3.4,3.2,2.9,3,3,3,3.3,3.3,3,3,3.1,3.4,3],"paint":[8.6,8.5,8.9,8.9,8.6,8.9,8.8,8.8,9,8.8,8.9,9,8.7,9.2,8.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.4,13.2,14.2,32.1,13.7,27.7,13.4,30.2,14,14.1,31.3,12.1,13.4,28.8,30.2],"script":[2.7,2.7,2.8,3.7,2.9,2.2,2.8,3.1,2.4,2.2,3.4,2.4,2.5,2.6,2.8],"paint":[10,9,9.7,11.6,10.1,8.6,9.8,10.9,11.4,11.7,11.4,9.1,10.8,10.1,10.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[8.4,6.4,7,6.9,6.1,7.3,7,9.2,10.6,6.3,7,6.3,6.8,7,6.9,7.4,6.7,7.2,8.3,7,7,7,8.3,7,6.3],"script":[4.1,4.2,4.5,3.9,4.5,4.8,4.2,3.5,3.5,4.3,4.3,4.5,3.8,4.4,4.4,3.9,3.7,4.9,5.4,3.5,3.3,3.9,4.6,4.8,4.5],"paint":[1.5,1.5,2.1,2.8,1.1,2.3,1.9,2.2,1.3,1.1,1.2,1.6,2.5,2.5,1.2,2.4,2,2,2.2,2.6,1.4,2.1,1.3,2.1,1.6]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[24.3,8.3,9.2,26.7,9.4,8.9,8.7,24.4,9.1,8.7,24.4,9.4,8.8,8.3,8.5],"script":[0.2,0.5,1,0.8,0.7,1.4,0.6,0.2,0.6,0.2,0.2,1.3,1.4,0.5,1],"paint":[8,6.3,7.6,9.2,7.7,6.5,6.1,8.1,7.8,6.9,8,7.2,7.2,6.5,6.7]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,10.6,12.1,11.7,11,10.8,10.3,10.4,11.4,11.2,12.5,10.3,10.4,10.8,10.2],"script":[1.2,1,1,0.9,1.1,1.1,1.1,0.9,0.8,1.4,0.9,1.1,0.9,1.1,0.9],"paint":[9.9,9.3,9.3,8.9,9.2,9.5,9,9.2,9.3,9.7,9.6,9,9.1,9.4,9.1]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[310.2,304.5,305.4,302.3,308.9,307.1,308.1,308.2,305,308.5,311.3,306,306.7,307.1,308.3],"script":[75,76.2,75.5,75.7,75.5,75.2,75,76.8,74.6,74.8,75.2,75.1,75,75.7,75.1],"paint":[220.9,223.2,219.2,221.8,222.8,222.8,220.7,220.4,220.3,221.9,225.5,221.8,219.8,220.2,221.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.1,33.7,44.6,34.2,33.1,46.1,44.5,46.4,45.9,45.8,44.6,44.6,45.2,45.1,44.8],"script":[6.5,6.5,6.3,6.8,6.5,6.3,5.9,6.5,6.2,6.3,5.8,6.3,6.3,6.4,6.3],"paint":[26.5,26.5,25.9,26.8,26,25.7,25.2,25.9,25.7,25.6,25.3,25.7,25.5,26.1,25.9]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.2,13.4,11.6,11.9,13,11.8,28.6,12.2,29.6,12.6,28.7,28.4,13.1,29.4,13.6],"script":[10.1,11.1,9,9.3,11,10.1,10.6,10.4,11.2,10.8,10.7,10.8,10.5,11.4,9.6],"paint":[1.9,1.3,1.2,2,0.8,1.7,1.8,1,1.2,1.2,1,0.3,1,0.9,2.5]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741670608520508]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.3793487548828125]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.447455406188965]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.195226669311523]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.441566467285156]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.8]}},{"framework":"fast-v2.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.9]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[44.4,33.7,37,37.2,42.7,31.4,42.4,44.1,32.7,37.1,35.6,37.7,43.9,32.5,43.3],"script":[7.6,8.6,7.9,7.9,7.8,8,8.2,7.8,8,8,7.9,8.1,7.7,8.3,7.9],"paint":[21.1,21.5,20.8,21.1,20.4,21.2,20.9,20.9,21.3,21.5,20.9,20.9,21,21.2,20.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,16.5,23.8,18,22.6,22.7,23.5,21.7,22,21.7,23.5,22.4,22,24.9,15.8],"script":[5.8,5.7,5.6,5.7,5.6,5.7,5.7,5.7,5.7,5.9,5.6,5.6,5.7,5.7,5.8],"paint":[10,9.7,9.9,10.6,10,10.3,9.8,9.7,10.2,9.7,9.8,9.6,9.5,10.2,9.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[48.7,48.9,17.9,46.6,48.7,47.8,17,17.1,46.9,49,48.4,47.5,48.1,49.6,49.8],"script":[5,4.3,3.8,4.4,4.5,5.6,4.2,4.5,4.4,4.5,4.3,4.7,4.8,4.5,5.1],"paint":[10.5,12.9,12,11,12.7,10.5,10.5,10.7,11.1,12.1,11.8,10.7,11.6,12.8,11.6]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.6,13.3,7.6,9.8,5.3,12,10.4,8.7,5.5,8.3,6.5,6.9,10,6.9,6.6,6.5,9.4,11.6,12.8,5.6,11.2,6,7,5.4,11.5],"script":[3.2,2,1.9,3.6,2.1,2.3,2.7,2.9,1.9,2.8,2.2,3.5,2.1,2.9,1.7,3,2.5,2.9,2.6,3.2,3,1.9,2.7,2.6,3],"paint":[2.8,3.9,2.2,3.6,1.6,2.9,3.5,3.1,3.5,3.4,2.6,2.6,3.2,3.3,3.1,2.6,3.6,2,5.1,2.5,3,2.8,3.3,1.5,3.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[46.2,42.4,43.1,43.5,42.7,10.5,43.4,10.8,43.9,42.8,10.7,43.9,44.4,42.7,42.5],"script":[2.2,2.2,2.1,2.7,2.2,2,2.2,1.9,2.7,2.6,2.4,2.5,2.6,2.7,2.1],"paint":[9.7,8.5,9.7,9.1,8.7,8.2,8.4,8.3,9.1,8.2,8.1,8.9,9.3,8.7,8.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31,27.4,27.9,28,28.7,28.8,27.7,30.6,29.1,30,29.3,28.2,27.3,27.6,27.9],"script":[21.2,20.8,21.2,21.2,21.5,21,21,21.3,22.2,20.6,20.9,21.2,20.6,20.9,20.9],"paint":[16.8,16.5,16.7,17,18.1,17.2,16.8,17.3,17.9,16,16.9,16.3,16.7,16.6,16.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[304.4,294.7,298.2,290.8,301.9,290.7,293.2,294,297.9,294.4,293.3,297.6,298.9,292.7,295.1],"script":[81.3,82.2,83.1,82.5,83.6,80.3,82.1,84.3,83.9,82.1,84,84.5,82.9,81.9,84],"paint":[205.6,205,203.4,203.3,205.2,204.8,204.9,201.5,201.7,204.9,200.9,201.1,205.8,203.9,200.2]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,36.2,36.3,43.6,36.2,44.5,36,35.9,44.5,35,43.1,36.1,43.9,35.4,37],"script":[9.3,9.6,9.6,9.2,9.4,9.3,9.6,9.3,9.4,8.8,9,9.7,9,9.5,9.9],"paint":[25.8,26.1,26.3,25.2,26.3,25.7,25.9,26.1,25.5,25.8,25.2,25.8,25.5,25.3,26.7]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.9,12.8,11.7,46.1,11.3,13,12.2,13.1,11.9,11.7,11.3,12.2,12.8,11.2,11.8],"script":[9.1,9.1,8.1,8.7,8.4,8.9,9.2,10.3,8.2,8.5,8.3,8.5,9,8.3,7.7],"paint":[2.9,1.5,2.5,2.4,2,2.7,1.7,1.3,2.2,2,2,3.4,2.6,1.2,2.5]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6582546234130859]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.616334915161133]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.617406845092773]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9659233093261719]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.44912242889404]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.7]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[32,32.5,32.7,32,31.7,32.7,32.5,33,32.6,32.2,32,31.9,32.3,32.1,32.2],"script":[9.5,9.6,9.5,9.5,9.3,10,9.4,9.9,9.8,9.3,9.3,9.5,9.4,9.6,9.5],"paint":[21.9,22.4,22.5,22,22,22.1,22.5,22.6,22.3,22.4,22.2,21.8,22.4,22,22.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[16.7,16.9,17.1,16.9,16.6,15.9,16.7,16.7,16.7,16.8,17.3,16.7,16.9,16.7,17.1],"script":[6.1,6.3,6.5,6.3,6.3,5.5,6.2,6.2,6.3,6.3,6.4,6.3,6.3,6.4,6.5],"paint":[9.9,10,10,10.1,9.8,9.9,9.9,9.9,9.8,9.9,10.3,9.9,10.1,9.8,10]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.8,18.9,19.2,19.3,19.6,18.7,20.3,21,18.7,18.6,18.4,17.6,21.8,19.9,18.5],"script":[7.1,7,7.6,7.6,8.2,7,7.5,8.1,6.4,6.5,6.8,6.3,9.2,7.9,7.4],"paint":[10,8.9,9.5,9.2,10.5,9.2,10.1,10.2,10.8,8.9,10.3,8.7,10.9,10,9.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.6,6.9,6.3,6.6,7,6.5,6.4,6.8,6.9,6.6,6.5,6.5,6.8,6.3,6.1,6.1,6.8,6.3,6.9,6.3,6.4,6.3,6.1,6.2],"script":[3.8,4.2,4.4,4.1,3.7,3.7,3.4,3.6,3.9,4.2,4,3.6,3.8,3.5,3.9,3.4,4,4.2,3.9,4.7,3.4,4.1,3.6,3.6,3.3],"paint":[2.1,1.9,2.4,1.5,2.2,1.4,2.9,1.8,1.8,1.6,1.6,1.6,1.6,1.7,1.8,1.8,1.6,1.7,1.5,2,2.1,1.6,1.7,1.4,2.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.3,12.2,12.7,12.7,12.1,12.7,11.9,12.5,12.7,11.8,12.8,12.6,13.6,12.3],"script":[3.4,3.4,4.1,4.1,4.2,3.9,4.1,3.8,3.2,4.4,3.4,4.3,4.4,4.1,4],"paint":[7.7,7.5,7.2,8,7.3,7.3,7.5,7.1,8.3,7.2,7.3,7.6,7.1,8.4,6.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.3,30.4,28.4,31.5,32.1,30.1,30.5,28.9,31.2,30.9,29.5,31.4,31.3,31.2,31.9],"script":[12.6,12.4,11.6,12,12.7,11.7,12.2,12.1,12.5,12.2,12,12.3,12.1,11.8,12.6],"paint":[16.6,16.7,15.6,18.3,18.2,17.3,17,15.8,17.5,17.5,16.3,17.9,18,18.2,17.8]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[328.9,328.9,328.3,329.2,329.5,326.7,330.9,326.6,327,330,330.3,327.6,328.7,327.2,331.1],"script":[98.7,97.7,98.8,99.3,99.7,98.1,102.4,98.8,98.5,98.3,98.9,98.8,99.2,98.1,101.4],"paint":[222.5,223.4,221.8,222,222.1,221.1,221,220.3,220.7,224.1,223.7,221.1,221.8,221.3,222]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.4,38.8,39.5,39.8,38.8,38.6,39.5,38.8,38.9,38.9,39,38.9,39,39],"script":[11.6,11.7,11.8,12.1,12,11.9,11.7,11.9,11.9,11.9,12,11.8,12,12,11.8],"paint":[26.2,26.7,25.9,26.4,26.6,25.9,25.8,26.2,25.9,25.9,25.7,26.2,25.9,26,26.2]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.2,16,16.5,15.9,16.9,16.2,17.3,16.3,16,16,17.2,17,16.3,15.6,16.4],"script":[13.9,13.5,14.2,13.5,14.2,14.8,15.3,14.1,13.9,14.7,15.3,14.7,14.8,13.2,14.3],"paint":[0.4,2.3,2,1.5,1.4,0.3,1.8,1.5,0.2,0.3,1,2,0.3,1,0.6]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7284231185913086]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9187450408935547]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.177557945251465]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2905149459838867]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.940454483032227]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.2]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[31,30.5,29.9,30,30.2,30.6,30.6,30,30.1,29.5,30.1,30.2,30.5,30.7,30.6],"script":[7.4,7,7,6.9,6.9,7.4,7,6.9,6.8,6.9,7.1,7.1,7.1,7.4,7.1],"paint":[23.1,22.9,22.3,22.5,22.7,22.6,23.1,22.5,22.7,22,22.5,22.5,22.8,22.7,22.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[14.6,14.1,15.2,15.6,14.8,14.9,14.4,14.8,14.5,15.1,14.7,14.6,15.2,15.3,15.3],"script":[5,4.6,5.2,5.2,4.9,5.1,4.5,4.9,4.5,5.1,5,4.6,5.2,5.1,5.1],"paint":[9.2,9.2,9.5,9.9,9.5,9.3,9.5,9.4,9.6,9.4,9.3,9.6,9.4,9.6,9.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30,28.6,27.7,27.6,27.3,28.7,28.2,28.7,29,27,28.3,29,28.6,29.2,28.3],"script":[15.2,15,14.7,14.6,15.7,15.3,15.4,15.7,15.6,14.2,15.9,15.6,16.1,16.4,14.9],"paint":[12.5,11.5,10.4,11.5,9.7,11.8,10.6,11,11.8,10,10.3,11.1,10,10.8,10.6]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[16.9,16.9,20.7,16.7,18.6,16.8,17.3,16.4,16.8,19.1,16.9,16.5,16.7,18.2,17.6,16.4,15.7,16.4,16.8,17,17,17.2,17,17.5,16.8],"script":[12.8,13,16,13.1,14.1,12.8,14,12.5,12.9,15.2,13,13,13.3,14.6,13.9,12.3,12.6,12.7,12.7,13,13.7,13.7,13.7,13.7,13],"paint":[2,2,2.2,3.3,3.3,2.1,1.3,2.4,1.9,2.7,2.4,2.3,3,2,2.5,3.2,1.6,1.2,2.3,2.7,1.7,1.6,1.5,2.6,2.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[23.9,23.3,24.5,24.3,23.6,21.3,23.2,23.9,23.7,24,24,23.4,24.8,21.9,23.2],"script":[13.3,12.3,13.9,13.4,13,11.4,12.5,13.8,12.2,13.7,13.1,12.9,14.6,12.2,12.9],"paint":[8.2,9.5,7.2,8.9,8.2,8.7,9.6,7.5,8.9,8.5,9.1,8.3,8,8.3,8.4]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.6,26.8,28.3,28.7,29.4,27.1,28.7,27.3,29.2,26.7,27.2,28,26.2,28.9,29.1],"script":[9.1,7.9,9.1,9.2,10,7.8,9.5,8.4,9.9,7.2,7.9,8.8,7.3,9.7,9.5],"paint":[18.3,17.7,18,18.4,18.1,18.1,18.1,17.7,18.1,18.4,18.1,17.9,17.7,18.1,18.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[313.9,314.5,314,313,315.3,314.2,313.6,312.5,313.2,316,313.6,313.7,316.1,312.5,315.5],"script":[82.5,82.9,84,83.1,83.6,84,83.5,83,83.2,82.9,83.2,83.5,80.9,82.5,84.4],"paint":[222.6,223.5,222,221.8,222.3,221.7,221.9,221.4,222,225,222.3,222.1,227.1,222,222.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.4,39.5,39.1,39.3,38.5,39.2,39.5,39,39.4,39.3,38.8,39.5,39.5,39.7],"script":[10.6,10.8,10.8,10.3,10.8,10.1,11,11.8,11.1,11.4,10.9,10.3,11.8,11.2,11.7],"paint":[27.5,27.5,27.7,27.7,27.5,27.3,27.2,26.7,26.9,27,27.4,27.4,26.7,27.2,26.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20,20.3,20.2,19.2,21.1,19.9,21.6,19.6,19.2,19.9,20.5,20.2,20.5,20,19.7],"script":[18.3,18.6,17.9,16.8,18.2,18,19.3,17.5,17.1,17.6,19,18.1,18.5,18.1,17.9],"paint":[0.5,0.5,1.4,1.5,2.1,0.3,0.9,1.7,1.1,2,0.3,0.8,1,0.3,1]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8502740859985352]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.832951545715332]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.212776184082031]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.941891670227051]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.32406997680664]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[127.3]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.9]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[131.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"01_run1k","values":{"total":[37.8,38.6,37.5,39.1,38.2,37.3,37.6,37.1,37.4,37.9,38.5,38.5,38.4,38.8,38.4],"script":[15.3,15.8,15.2,15.8,15.4,14.9,15,15.1,15.1,15.2,15.4,15.7,15.8,15.7,15.7],"paint":[22.1,22.4,21.7,22.9,22.4,21.9,22.2,21.6,21.8,22.2,22.7,22.4,22.2,22.7,22.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"02_replace1k","values":{"total":[16.6,16.7,16.8,16.6,16.6,16.6,16.5,16.8,16.8,16.6,16.3,16.4,16.6,16.5,17.1],"script":[7.8,7.7,7.7,7.9,7.8,7.8,7.7,7.9,7.9,7.8,7.5,7.6,7.8,7.7,7.9],"paint":[8.5,8.6,8.6,8.4,8.4,8.4,8.5,8.5,8.5,8.4,8.4,8.5,8.4,8.4,8.9]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.9,11.3,11.8,11.6,12.1,11.8,10.4,11.1,10.4,11.8,12.3,13.2,12.1,11.9],"script":[1.3,1.4,0.7,1.6,0.9,1.5,1.2,1.4,1,0.9,1.3,1.2,1.5,1.7,1.5],"paint":[9.6,8.6,8.6,8.9,9.5,9.1,9.4,8.3,8.3,8.4,9.3,10.1,10.7,9.1,9.4]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.2,4.2,4.9,5.1,4.7,4.3,5,4.3,4.1,5.1,5.1,4.7,5,4.8,4.9,4.6,4.9,5.1,5.5,4.9,5.1,5.2,4.9,4.6],"script":[2.3,2.7,2.3,2.2,3.2,3.1,2.4,2.5,3,2,3.3,2.7,2.1,2.7,2.7,2.9,2.5,2.3,2.7,3.6,2.7,3,2.9,3.1,2.8],"paint":[2.3,1.5,1,2.6,1,1.2,1.1,1.3,0.7,1,1.2,1.5,1.7,0.4,1.5,1.9,1.5,2.5,2.3,1.2,1.3,1.6,1.3,1,1.7]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"05_swap1k","values":{"total":[9.8,8.2,8.1,8.3,8.2,8.5,8.2,9,8.4,7.9,7.8,8.3,8.7,8.8,8.5],"script":[0.1,0.1,0.2,0.1,0.3,0.7,0.1,0.1,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.8,6,6.8,7.2,6.9,6.5,6.3,8,7.7,7.3,7,6.7,6,7.7,7.2]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.8,10.7,10.4,10.4,10.7,11,10.5,10.4,10.7,10.8,10.4,10.6,10.4,10.3],"script":[0.1,0.3,0.3,0.3,0.1,0.3,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.4,0.1],"paint":[9.6,9.7,9.8,9.7,9.8,9.8,10.3,9.7,9.4,9.6,9.9,9,9.8,9.3,9.8]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"07_create10k","values":{"total":[381.9,383,391.4,383.7,383.4,381.2,381.1,392.1,381.8,383.5,381.5,382.9,384,384.5,384.3],"script":[151.3,152.8,153.2,152.2,152,150.5,151.6,154.5,151.5,152.1,151.6,150.9,151.1,153.9,150.5],"paint":[223.4,223.1,231,224.5,224.5,223.9,222.7,228.8,223.5,223.7,223,225,226,223.7,226.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,46.6,47,46.2,46.7,46.4,46.9,46.8,45.6,46.6,46.5,46.7,47.6,46,46.3],"script":[19.6,19.4,19.5,19.1,19.7,19.3,19.4,19.5,19.3,19.6,19.9,19.3,20.1,19.6,19.5],"paint":[25.8,26.4,26.5,26.3,26.1,26.3,26.6,26.4,25.6,26.1,25.8,26.6,26.6,25.6,26]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,10.8,11.5,10.7,11.3,9.8,11.1,11.1,10.5,11.9,12.2,10.6,10.4,11.3,10.4],"script":[9.8,9.3,10.3,9.1,9.8,8.6,9.6,9.8,9.2,10.4,11.2,9.3,9.1,9.6,9],"paint":[1.1,0.6,1.2,0.8,1,1.1,1.4,0.2,0.7,1.4,1,1.2,1.2,1.1,1.3]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6084270477294922]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.09062385559082]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.118589401245117]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2077388763427734]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.88510036468506]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[23.6,28.8,31.8,32.1,23.3,22.9,23.5,24,30.3,23.1,31.6,24.4,23,29.9,24.4],"script":[1,1,1.1,1.1,1.1,1.1,1,1.8,1,1.1,1,1.2,1.1,1,1.1],"paint":[21.4,21.4,21.6,21.5,22,21.6,22.2,21.7,21.4,21.9,21.6,21.8,21.7,21.4,21.9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[14.9,11.8,12.9,15.9,16,9.8,9.8,10.5,9.9,15.9,10.2,15.5,14.9,10.3,10.4],"script":[1.4,1,1,1.2,1,1.1,1,1.2,1.1,1,1,1,1,1.3,1.3],"paint":[8.7,8.7,8.7,9.4,8.9,8.6,8.7,9.2,8.6,9,8.7,8.7,8.6,8.7,8.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.6,26.9,26.3,12.1,10.9,26.6,10.9,10.9,26.2,28.3,26.5,12,11.6,26.3,27.7],"script":[1.1,1.2,0.9,0.7,0.9,1.3,1.3,1.3,0.7,2.1,0.7,1,2.1,0.7,1.6],"paint":[9.8,9.3,9.3,9.5,8.6,8.9,9.3,8.9,9.2,9.3,9.2,9.1,9.4,9.3,9]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.3,3.9,2.8,3.3,2.7,6.6,3.8,5.6,6.5,3,5.9,4.8,3.2,3,2.6,3.2,2.6,3.4,2.9,3.7,8,2.7,3.3,2],"script":[0.2,0.9,0.6,0.8,1,0.2,0.2,1.1,0.6,0.2,0.2,0.9,1.1,0.5,0.2,0.2,0.2,0.2,1.4,0.3,0.3,0.5,0.9,1,0.2],"paint":[1.5,1.6,1.3,1,1.8,1.6,1.6,1.5,2,1.1,1.7,1.5,2.4,2.2,2,0.8,1.6,2.1,1.1,1,1.4,1.8,1.7,1.8,1.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,8,8.8,24.4,9,22.8,23.4,8.4,8.6,8.5,9.4,23.3,24.1,22.7,22.6],"script":[1.6,0.2,0.2,0.8,1.2,1.3,0.6,0.3,0.8,0.2,1.4,0.8,0.5,0.8,1.2],"paint":[7,6.3,7.5,7.6,7.2,7,7.3,7,7.5,6.4,7.3,6.5,7.5,6.8,6.8]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,19.8,16.4,16,16.5,15.9,16.4,16.1,16.7,18.1,16.1,18.2,17.7,16.2,16.2],"script":[1.3,1.3,1.6,1.6,1.7,1.3,1.6,1.4,2.1,1.6,1.8,1.3,1.9,2,1.3],"paint":[14.5,14.6,14.4,13.9,14.7,14.2,14,14.1,14.2,14.3,13.8,14.3,15.4,14,14.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[286.7,287.6,290.6,291.9,292.5,292.6,293.2,287.3,290.2,292.6,285.7,296.2,294.4,291.7,284.8],"script":[66,66.8,63.8,67.3,65.7,65.8,66.2,66.9,65.5,65.4,65.4,67.6,65,66,65.1],"paint":[216.9,217.3,217.5,216.6,218.6,218.1,217.7,216.9,215.6,217.2,216.8,219.9,220,216.4,216.3]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,32.4,33.2,36.1,39,35.9,32.3,38,39.2,36.5,32.6,33.1,39.3,38.1,35.8],"script":[6.1,6.5,6.9,6.7,6.8,6.5,6.6,6.6,6.5,6.8,6.8,6.9,6.9,6.4,6.6],"paint":[24.9,25.4,25.7,24.6,24.8,24.8,25.2,25.6,24.8,24.9,25.3,25.7,24.4,24.3,24.6]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.8,26.4,11.5,26.9,11.2,26.9,11.5,27.5,27,27.6,11.7,10.9,11.1,10.5,27.6],"script":[10.1,9.1,9.5,9.9,9.7,9.8,9.4,9.9,9.5,10.1,9.7,9.6,8.8,9.2,9.6],"paint":[1.4,1,0.7,0.9,0.7,0.5,2,0.9,0.9,0.3,1.1,0.8,2.1,0.4,1.4]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8438358306884766]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634610176086426]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.601742744445801]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.4910831451416016]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.837151527404785]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.7]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[139.4,148.7,148.7,149.1,151.1,149.2,148.7,150.7,140.9,148.6,148.9,152.4,140.9,147.6,138.4],"script":[12.8,12.9,13.5,13.3,13.4,13.6,12.8,13.3,13.2,13.4,12.7,12.9,13.2,13.3,13.1],"paint":[20.6,21.2,20.5,21.2,20.7,20.8,21,21.2,20.7,20.5,20.8,21.2,20.7,21.1,20.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[131.4,132.4,130.1,131.5,129.7,130,129.4,122.8,129.5,132.3,132.8,131.5,129.5,131.6,131.3],"script":[14.7,14.3,14.3,14.3,14.3,14.3,14,14.4,14.2,14.2,14.2,14.3,14.1,14,14.1],"paint":[9.8,10,9.5,9.4,9.5,9.5,10,9.5,9.3,9.5,9.2,9.6,9.6,10,9.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[180,177.7,179.1,176.2,177.1,177.9,176.5,178,177.8,177.1,178,184.9,178.6,176.4,182.9],"script":[50,50,50.9,49.9,50.3,49.6,51,50.8,49.2,50.3,48.6,50.2,49.7,49.3,49.5],"paint":[13.5,15,13.9,14.7,14.2,12.5,13.4,14.2,14.4,13.4,13.6,15.1,14.1,14.8,14.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[155.8,150.5,156,156.1,148.4,157.2,159.1,157.3,155.7,157.8,155.5,154.7,160.4,151,158.3,154.7,151.4,151.3,157.9,155.4,159,155.7,150.4,150.7,157.8],"script":[51.8,48.4,50,50.2,48.1,50.7,52.5,49.6,49.9,50.8,48.1,48.6,49.6,48.4,50.2,48.7,49.5,48.8,49.7,50,51,48.3,48.4,49,48.9],"paint":[3.5,4.4,2.2,2.9,3.2,2.7,1.6,4.8,3.7,3.1,1.8,4.6,4,1.9,4,3.6,2.3,2.4,3.9,2.1,3,2.9,2,3,4.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[177.9,183.7,177.4,176.5,184.1,179.4,176.6,181.3,177.7,177.1,177.3,176.1,180.1,178.5,176.7],"script":[46.4,50.3,49.6,48.6,49.9,47.8,47.1,49.2,50.6,47.6,47.5,48.1,48.1,47.6,48.9],"paint":[11.4,10.4,11.6,12.3,10.5,9.4,11.7,7.9,10.9,7.8,11.4,10.7,9.8,9.9,9.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[151.5,152.4,151,150.1,153.1,150.3,150.6,152.1,150.9,142.5,142.9,144,146,152,149.3],"script":[28,28.6,27.2,28.6,27.3,28,27.6,28.2,27.3,28.2,26.8,26.7,27.6,27.4,27.1],"paint":[16.6,18.3,18.2,17.8,20.6,22,20.9,20.5,18.6,17.6,17.9,17.1,18.2,20.7,18.3]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[881.3,873.2,875.1,882,890.6,881.5,889.5,899.2,874,883.6,871.9,881.5,904.1,904.9,916.9],"script":[119.6,120.6,120.8,121.8,122.2,122.7,122.4,129.4,122.9,121.1,120.5,122.6,120.8,122.5,129.3],"paint":[216.9,221,223.2,221.8,223.8,223,226.1,229.7,223.9,222.6,222.8,222.6,224.1,226.6,230.6]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[175.2,170.6,181.1,172.9,171.1,172.5,170.6,170.8,175,172,181.6,173.1,169.8,173.8,172.5],"script":[24,24.5,24.6,24.7,24.6,24.3,24,24.4,24.7,24.5,24.6,24.2,23.9,24.9,24.4],"paint":[25.8,26.1,26,25.8,25.7,25.9,25.6,25.7,25.9,25.5,26,25.6,25.5,25.8,26.1]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[145,142.2,115.2,111.6,109.6,115.6,109.3,143.3,141.9,150.2,108.4,112.4,143.4,142.1,144.9],"script":[12.7,14.1,13.7,12.4,12.7,12.8,13,13.7,14,13.9,13.2,12.9,13.1,14.7,12.6],"paint":[0.4,1.7,1.1,0.7,1.3,1.4,1.6,1.6,1.9,1,1.1,1.9,1.5,0.4,1.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[4.381065368652344]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.913834571838379]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.110092163085938]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.658964157104492]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.854068756103516]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.8]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.2]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1073.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24,24.7,24.3,24.7,24.7,24.8,24.5,24.5,24.6,25.8,24.6,24.7,24.4,24.4],"script":[2.8,2.7,2.9,2.9,2.8,2.9,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.6,21,21.4,21,21.5,21.4,21.5,21.2,21.3,21.4,22.6,21.4,21.5,21.2,21.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.5,10,10,9.8,10.8,10.4,10.1,10,9.8,9.8,9.9,10.2,9.9,10.1],"script":[1.3,1.2,1.3,1.1,1.1,1.3,1.2,1.2,1.1,1.1,1.1,1.1,1.2,1.1,1.1],"paint":[8.9,8.9,8.4,8.5,8.3,9.1,8.6,8.6,8.5,8.4,8.3,8.4,8.6,8.4,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.4,10.9,11.3,11.1,11.3,10.3,11.7,11.1,11.4,11.3,10.7,14.7,10.6,11.4],"script":[0.9,0.7,0.6,1.4,1.3,1.3,0.9,1.2,0.9,1.7,0.9,0.9,2,1,1.4],"paint":[9.5,8.7,9,8.6,8.8,8.6,8,8.4,9.2,7.9,9,8.3,11.8,8.5,8.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.3,2.9,2.3,2.4,2.7,2.7,2.2,2.3,2.5,2.8,2.5,2.7,2.7,2.9,3,3.1,2.6,2.5,3,3,2.9,2.6,2.6,3.4],"script":[0.6,0.5,0.6,0.8,0.5,0.3,0.7,0.6,0.6,0.1,1,0.1,0.3,0.5,0.7,0.8,0.8,0.7,0.7,1,1,0.8,0.1,0.8,1.1],"paint":[1.3,1.1,2,1,1.1,2.2,1.9,1,1.6,2.3,1.4,1.5,1.8,1.4,2.1,1.5,1.5,1.1,1.6,1.4,1.9,1.3,1.5,1.1,1.7]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.6,9.4,8.4,8.4,8.5,9.1,8.7,8.4,9,7.9,8.2,8.9,8.8],"script":[0.6,0.8,0.7,1.1,0.1,0.5,1,1.1,0.3,1.3,1.3,0.3,0.6,0.6,0.1],"paint":[6.5,6.5,6.5,7.3,7,6.2,6.4,6.5,7.5,6.3,6.7,6.4,6.4,7.6,7.3]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.9,17.3,16.4,16.9,16.5,17,16.4,17.1,16.6,16.9,16.9,17.2,18.4,18.4],"script":[1.9,2,2.2,1.9,1.8,1.9,2,1.8,1.9,1.9,2.1,2,2,2.1,2.1],"paint":[14.4,14.3,14.3,13.7,14.2,13.8,14.4,13.9,14.5,14,14.1,14.1,14.5,15.6,15.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[261.2,262.1,261.2,262,260.8,263.2,264.7,262.2,260.2,263.3,260.5,260.6,261.3,262.4,260.3],"script":[32.1,31.9,31.7,32.1,32.7,32.5,32.6,32.4,32.3,32.2,32.4,32.7,32.6,31.6,32.4],"paint":[222,222.9,222.4,222.7,220.7,223.5,224.6,222.8,220.7,223.7,220.8,220.7,221.6,223.3,220.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.4,28.4,28.7,29.2,28.6,28.7,29.2,28.3,28.3,28.8,28.9,28.9,28.8,28.4,29.2],"script":[4,3.1,3.2,3.4,3.2,3.2,3.8,3.3,3.2,3.2,3.4,3.5,3.2,3.4,3.4],"paint":[24.7,24.6,24.7,25.1,24.6,24.7,24.7,24.3,24.3,24.8,24.8,24.7,24.8,24.3,25.1]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.6,9.6,10,10.3,9.9,9.7,10,9.9,10.6,11.3,9.5,10.1,9.2,10.1],"script":[8.5,8,7.6,8.1,8.2,8.2,7.4,7.8,7.5,8.9,9.2,7.7,8,7.9,7.9],"paint":[1.3,0.2,1.1,0.9,0.3,0.7,1.9,1.9,1.5,0.2,1.9,1.1,1.1,0.2,2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5340757369995117]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7833290100097656]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8382272720336914]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.783665657043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.119430541992188]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[26.5,26.3,26,26.2,25.6,26.3,26.2,25.6,25.6,25.6,26.3,25.9,25.6,26.6,26],"script":[3.2,3.5,3.5,3.2,3.2,3.6,3.5,3.2,3.3,3.2,3.5,3.3,3.2,3.5,3.5],"paint":[22.9,22.5,22.2,22.6,22.1,22.4,22.3,22,21.8,22.1,22.4,22.2,22.1,22.8,22.2]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,10.1,9.8,9.8,9.8,9.7,9.9,10,9.9,9.6,9.4,10,9.6,9.7,9.7],"script":[0.9,1,1,0.9,1,1,1.1,1.1,0.9,0.9,0.9,1.1,1.1,0.9,1.1],"paint":[8.1,8.9,8.4,8.5,8.5,8.4,8.5,8.5,8.6,8.3,8.2,8.6,8.2,8.4,8.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.9,11.9,11.7,11.6,11.3,12.7,12,11.7,13.3,11.6,11.4,11.6,12.1,11.4],"script":[2.2,1.9,1.1,1.2,1.5,1.6,1.7,1.8,1.6,1.4,1.7,1.1,1.5,1.3,1.2],"paint":[9,8.9,9.8,8.9,9.1,9.1,9.6,8.8,9.2,10.4,9.3,9,9.4,9.2,9.5]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.1,3.7,2.7,2.7,2.8,2.7,2.7,2.2,2.7,2.5,3,2.4,3.6,2.1,3,2.3,2.7,2.8,2.5,2.8,2.7,3,3,3.1,3.4],"script":[0.6,0.9,0.1,0.7,0.8,0.5,0.8,0.2,1,0.1,0.8,0.3,1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.8,0.6,1.2,1,0.4],"paint":[2.3,1.3,2.1,1.9,1.2,1.2,1.2,1,1.6,1.3,1.3,1.9,1.8,1.9,1.8,1.1,2.4,2,1.3,1.5,1.1,2,1.7,2,1.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9,8.7,8.5,7.8,8.3,8.2,9.7,8.4,8.2,8.6,8.3,7.7,8.6,7.9],"script":[0.9,1.2,0.2,1,0.8,0.7,0.2,0.9,0.2,1.2,0.2,0.8,0.7,0.9,0.5],"paint":[6.7,6.5,7.3,6.3,6.2,6.2,6.4,7.8,7.4,5.8,7.4,5.8,6.1,7,6.4]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.6,16.4,16.4,16.1,16.5,16.2,16.9,16.7,16.8,16.4,16.5,16.3,16.3,16.5,17.3],"script":[1.7,1.7,1.7,1.5,1.7,1.7,1.8,1.8,1.8,1.7,1.5,1.6,1.7,1.7,1.4],"paint":[14.2,14.1,14,13.9,14,13.9,14.5,14.3,14.4,14.1,14.3,13.9,13.9,14.2,14.8]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[271.1,270.9,273.5,272.3,271.9,269.9,272.6,271.3,271.3,270.7,271,271,273,269.7,270.4],"script":[37.4,37.6,37.7,38.1,37.1,37.2,37.9,37.1,37.1,37.5,37.5,37.5,38.4,36.9,37.1],"paint":[226.5,225.7,228.1,226.9,227.4,225.3,227.3,226.8,226.9,225.9,226.1,226,226.5,225.5,225.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.6,30.3,30.5,30.2,30.1,29.8,29.9,30.3,30.3,29.8,30.1,30.6,30.1,30.3,30],"script":[3.3,3.4,3.2,3.4,3.3,3.2,3.2,3.1,3.2,3.3,3.2,3.4,3.3,3.2,3.3],"paint":[26.5,26.1,26.5,26,26,25.9,25.9,26.4,26.3,25.8,26.2,26.5,26.1,26.2,25.9]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11,11.5,10.7,11.5,10.7,12.2,10.5,11.3,12.1,11.6,11,10.6,11.7,11.2],"script":[9.4,9.2,9.6,9.3,9.6,8.8,10.4,8.9,9.1,9.8,9.5,9.3,8.8,9.7,8.9],"paint":[1.9,0.4,1.7,0.6,0.8,0.5,0.8,0.8,0.7,0.7,1.5,0.9,0.9,1,1.3]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7088127136230469]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.159454345703125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.144804000854492]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8786163330078125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.776725769042969]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.6,37.5,37.8,37.1,37.6,37.2,38.1,37.3,37.5,37.3,37.4,37.3,37.4,37.4,37.5],"script":[15.3,15.4,15.7,15.2,15.6,15.2,15.2,15.2,15.5,15.3,15.2,15.6,15.2,15.6,15.3],"paint":[21.7,21.6,21.8,21.5,21.6,21.6,22.5,21.7,21.6,21.6,21.8,21.4,21.8,21.4,21.8]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.7,25.2,25.6,24.9,25.6,25.6,25.2,25.5,25.5,25.3,25.9,25.7,25.5,25.5,25.5],"script":[15.4,15.2,15.4,15.1,15.6,15.4,15.2,15.5,15.5,15.4,15.6,15.6,15.4,15.4,15.5],"paint":[9.8,9.7,9.8,9.5,9.6,9.8,9.6,9.7,9.6,9.6,9.8,9.7,9.7,9.7,9.7]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.6,52.7,51.5,55.3,52.9,52.3,51.9,52.1,51.9,50.9,52.6,51.7,52.2,51.3,52.7],"script":[40.6,40.5,40.5,41.6,39.5,40.2,39.4,40.6,39.8,39.5,40.7,40.3,39.8,39.1,41],"paint":[9.6,10.6,9.8,11.9,12,11,10.8,10.6,11.1,9.9,10,9.6,10.1,11.1,10.3]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[39.6,38.9,39.2,38.8,38.1,38.2,38.2,38.3,39,38.8,37.9,39.3,39.9,38.2,39.1,39.4,38.2,38.4,38.7,38.2,38.9,39.6,39.6,38.9,39.1],"script":[36.4,36.3,36.5,36,35.9,35.6,35.9,36.2,36.4,36.2,35.3,36.6,37.1,35.6,36.1,36.7,35.9,35.5,36.2,35.9,36.3,36.9,36.7,36.2,36.5],"paint":[1.4,2,2.2,1.6,1.1,2.5,1.3,2,1.6,1.6,1.6,1.8,1.4,1.8,1.7,1.8,1.1,1.6,1.8,1.5,1.5,1.9,2.4,1.3,1.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[47.5,48.1,46.4,48,46,46.7,46.3,48.4,46.8,46.8,46.1,45.9,46.8,47,47.2],"script":[38.2,38.3,38,38.8,37,37,37.2,38.5,38.1,37.5,36.8,37.1,37.8,38,37.2],"paint":[7.7,8.6,7,8.3,8,8.6,7.9,8.6,7.2,8.8,7.2,7.1,7.5,8.4,7.6]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[48.4,47.5,45.4,47.1,47.7,46.4,47.3,47.6,48.6,47.1,47.2,46.6,47.7,47.1,46.8],"script":[29.4,28.4,27.5,28.1,28.4,28,28,28.6,29.6,28.7,27.9,28.2,28.5,28.3,27.9],"paint":[18,18.4,17.3,18.2,18.2,17.6,18.6,18.3,17.8,17.8,18.5,17.3,18.5,18.1,18.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[502.8,482.5,476.9,483.5,486,491,483.8,477.6,483.6,489.8,484.3,496,489.4,480.2,475.4],"script":[256.8,237.4,230.4,237.6,239.9,243.6,237.1,232.3,236.6,243.7,238.9,243.2,242.2,233.6,230.3],"paint":[238.9,238,239.6,238.9,238.8,240.3,239.4,238.1,239.9,239.2,238.5,245.8,240,239.7,238.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.5,53.1,54,53.4,53.9,54.2,53.2,53.7,53.5,53.5,53.1,54,53.8,53.8,53.5],"script":[25.9,25.8,26.1,25.9,26.3,25.6,25.6,26.3,26.2,25.8,26,26.4,26.2,26.3,26.1],"paint":[26.6,26.4,27,26.6,26.7,27.7,26.7,26.5,26.4,26.8,26.3,26.8,26.7,26.7,26.5]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.4,22.7,21.9,21.4,21.6,21.3,23.1,21.3,21.8,21,23.4,21.6,23.2,21.4,21.8],"script":[19.9,21.6,20.4,19.9,20.2,20.2,21.6,20.1,20.1,19.4,21.6,20.3,21.6,19.6,19.8],"paint":[0.6,1,1.4,1.4,1.3,1,1.1,1.1,1.7,1.4,0.9,0.3,0.8,1.7,1.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.764277458190918]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.491896629333496]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.561244010925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9316511154174805]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64506435394287]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[282.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,31.9,33.3,33.9,32.8,33,32.4,32.1,31.8,32.5,33.1,32.7,32.7,32.3],"script":[11.5,10.6,11.1,10.9,11.5,11.6,11.5,11.4,11,11,11.3,11.5,11.3,11.3,11.2],"paint":[20.7,20.5,20.2,21.8,21.8,20.6,20.9,20.5,20.5,20.3,20.6,21,20.8,20.9,20.6]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.3,15.6,15.9,15.8,15.8,15.7,16,15.6,15.9,16.3,15.7,15.8,15.6,16,15.8],"script":[6.1,6.1,6.4,6.4,6.3,6.4,6.6,6.4,6.5,6.5,6.4,6.5,6.4,6.4,6.5],"paint":[8.6,8.9,8.9,8.8,8.9,8.8,8.8,8.7,8.9,9.2,8.8,8.8,8.7,9,8.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.7,16,16.9,15.3,17.1,16.1,16.4,15.5,17.6,15.9,17.1,17.5,17.6,15.4,15.9],"script":[4.8,4.7,5.2,4.7,6,5.5,5.1,4.3,5.8,4.7,5.2,5.6,5.8,4.8,5],"paint":[9.4,10.2,9.5,9.7,8.7,8.7,9.9,9.9,9.8,9.8,10.3,10.1,9.4,9.6,9.9]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.4,4.2,3.5,3.9,4.1,4.2,4.3,4.3,4.7,4.3,4.7,3.9,4.8,3.6,4.5,4.1,4.5,4,5.2,4.1,4.3,4.4,4.9,4.1],"script":[1.5,1.5,2.2,1.1,1.8,1.6,1.5,1.7,2,1.8,2.1,2.2,1.9,2.2,1.7,2.3,2,1.4,1.8,2.4,1.9,1.9,2.4,2.2,2.3],"paint":[2.6,1.7,1.9,1.3,2,1.7,0.9,2.4,1.5,1.7,1.5,1.6,1.8,2.3,1,1.3,1.3,3,2.1,1.7,2.1,1.9,1.9,1.7,1.1]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[9.2,10,10.2,10.2,9.7,10.3,9.9,10.3,10.3,9.9,10.1,9.8,9.6,10,10],"script":[1.3,1.8,2.1,2.2,2,1.6,1.4,1.9,1.6,2.1,2.2,1.7,2,1.3,1.8],"paint":[6.9,7.3,7.2,7,6.6,7.1,7.4,7.8,7.1,6.7,6.9,6.7,6.3,7.1,7.5]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.8,13.2,13.5,13.7,13.8,14.1,14.1,14,13.5,13.4,13.9,12.7,12.8,12.7],"script":[2.2,2.3,2.5,2.5,2.5,2.5,3.2,2.5,2.8,2.8,2.6,2.7,2.5,2.4,2.4],"paint":[9.9,9.9,10,10.3,10.3,10.3,9.7,10.7,10.4,10.3,10.2,10.7,9.9,9.4,9.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[413.7,419.4,416.6,416.1,413.9,411.9,419.3,419.6,411.6,413.1,407.5,410.1,415.7,416,413.4],"script":[188.1,192.8,188.2,189.8,189.4,186.9,189.7,183.9,187.5,188.2,184.9,186.6,189.5,189.4,187],"paint":[218.1,219.2,220.8,218.4,217.2,217.4,222.3,226.7,216.6,217.7,215.3,216.1,218.9,218.6,219]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.4,36.3,36.7,36.5,36.9,37,36.7,37.3,37,36.1,36.6,36.4,36.3,36.4,36.7],"script":[10.1,9.8,9.8,10,10,10,9.9,10.1,10.2,10,9.9,10.4,10.1,9.9,10],"paint":[25.4,25.5,25.9,25.6,25.9,26,25.9,26.2,25.8,25.2,25.6,25.1,25.3,25.5,25.7]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.3,16.5,16.4,13.3,13.4,13.1,13.7,12.9,13.9,15.1,15.4,12.3,13.3,13.3],"script":[10.8,11.4,14,13.9,10.9,11,11.2,11.2,11,11.8,12.7,13.2,10.4,10.9,11],"paint":[1.6,0.3,1.1,1.9,1.8,0.3,1.1,1.8,1,0.9,1,0.9,1,1.2,1.4]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615772247314453]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.752252578735352]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.325299263000488]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.695610046386719]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.64689350128174]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[174.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.7,27.6,27.9,28,27.9,27.5,27.4,27.7,27.6,27.8,27.8,27.7,27.9,27.9],"script":[4.9,4.8,5,5,5,4.8,4.8,4.5,4.5,4.9,5,4.9,4.8,4.9,5],"paint":[22.7,22.5,22.2,22.3,22.6,22.7,22.3,22.5,22.7,22.3,22.4,22.4,22.5,22.6,22.3]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.7,11,10.7,10.8,10.8,10.7,10.9,10.9,10.9,10.9,11.3,10.7,11.4,10.7,11],"script":[1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,2.2,1.5,1.8,1.6,1.6],"paint":[8.7,9.1,8.8,8.8,8.9,8.8,8.9,8.9,9,9,8.8,8.9,9.2,8.8,9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,12.6,12.4,11.9,12.5,12.1,11.9,13.1,12.3,11.8,12.2,12.9,12,12.5,12.5],"script":[2,2,1.2,1.3,1.6,1.4,1.6,1.6,1.7,1.5,1.6,2.3,1.1,1.6,1.5],"paint":[9.2,9.6,10.1,9.6,9,8.5,9.3,10.5,9.7,8.9,9.7,9.4,9.6,9.9,10.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,4.1,3.8,4.5,3.8,5.5,4.1,4.5,4.2,4.1,3.5,4.8,4.7,4,4,3.6,4.5,5.5,5.7,4.5,4.6,4.3,4,4.3,4.3],"script":[0.9,0.9,1.4,1.7,1.7,3,1,1.5,1,1.5,1,1.9,1.4,1.3,1,1.3,1.5,2.6,3.1,2.2,1.9,1.8,1.6,1.5,1.6],"paint":[1.7,3,1.9,1.5,1.5,1.9,2.6,1.4,2.6,2.2,1.8,2.4,3,2.5,2.9,1.1,2.8,2.7,1.6,2.2,1.7,2.3,1.8,2.6,1.9]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,10,10,9.7,9.6,9.6,10.3,9.8,9.7,11.2,9.8,10.3,10.8,11.8,9.9],"script":[1.6,1,1.7,1.3,1.5,1,1.2,1.5,1.1,1.8,1.5,1.7,2.4,1.3,1.3],"paint":[8,7.6,6.5,6.4,6.8,7,6.5,7.6,6.2,8.5,7.4,7.6,6.5,7.2,6.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,18.9,18.2,18,18.1,18.2,18.8,18.5,18.9,19.3,18.6,18.5,18.3,18],"script":[2.6,2.5,3,2.5,2.7,2.4,2.5,2.4,2.6,2.9,3.2,2.4,2.6,2.4,2.4],"paint":[15.4,15.2,15,15.1,14.4,14.9,15.1,15.7,15,15,15.1,15.4,15.3,14.9,15]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[280.5,279.8,280.5,280.6,280.3,279.6,279.3,281.5,281.1,281.3,279.2,282.8,281.4,279.7,278.8],"script":[45.7,45.8,45.3,46.1,45.5,45.1,46.4,45.4,45.9,46.3,45.4,45.7,46.4,45.6,45.7],"paint":[227,226.2,227.5,226.8,226.6,226.6,225.2,228.5,227.5,227.1,225.9,228.6,226.5,226.2,225.1]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31,31.4,31.7,32.1,32.2,31.5,30.8,31.5,31.4,31.1,31.6,31.1,31.1,31.9,31.7],"script":[3.8,4,3.9,3.8,3.9,3.9,3.7,3.9,3.9,3.8,3.8,3.8,3.8,3.9,4],"paint":[26.4,26.6,26.9,27.5,27.4,26.8,26.3,26.7,26.7,26.5,27,26.5,26.4,27.1,26.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,14.3,14,12.3,13.6,12.1,13,13.4,11.7,13.5,14.8,15.3,12.7,13.5,13.5],"script":[10.8,12.5,12.1,10.5,11.5,10.6,10.9,11.2,9.8,11.2,12.4,12.8,11,11.7,11.6],"paint":[1,0.7,0.7,0.9,0.7,0.6,1.6,1.9,1.6,1.8,1,0.3,0.7,1.7,1.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6857204437255859]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.820673942565918]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8494300842285156]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8222379684448242]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.926042556762695]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.6]}},{"framework":"lit-v3.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.2,26,26.2,26.1,25.7,26.3,25.6,26.4,25.9,26.6,26.1,26.5,25.9,26],"script":[3.6,3.4,3.7,3.6,3.7,3.4,3.7,3.4,3.8,3.7,3.8,3.7,3.7,3.6,3.6],"paint":[22.2,22.4,22,22.1,22.1,22,22.3,21.9,22.3,21.8,22.4,22,22.4,21.8,21.9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.2,10.5,10.6,10.4,10.3,10.2,10.4,10.4,11.2,10.4,10.4,10.5,10.4,10.4,10.6],"script":[1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.6,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[8.7,9,8.9,8.8,8.8,8.7,8.8,8.9,9.2,8.9,8.8,8.9,8.7,8.8,9]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,12.2,11.2,11.3,11.6,12.3,11.9,14,11.3,12.1,11.9,12.1,12.1,11,11],"script":[1.3,1.8,1.3,0.9,1.3,1,1.5,2.1,1.4,1.3,1.4,1.5,1,1.3,1],"paint":[10.1,9.2,8.6,10,8.7,10.3,8.3,10.6,8.8,9.1,9.8,9.3,10,8.2,9.1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[4,4,4,3.8,4.2,3.2,3.1,3.7,2.8,3,3.3,3.5,3.7,3.8,3.6,2.8,3.1,2.9,2.6,3.3,3.8,2.8,3,2.5,2.9],"script":[0.9,1.4,1.3,1,1.2,0.8,0.7,1,1,0.7,0.6,1.1,1.3,0.9,0.9,1.2,1.5,1,0.2,1.1,0.9,0.7,0.6,0.6,0.9],"paint":[2.9,2.4,1.9,2.4,2.5,1.5,2.3,2.1,1.4,0.9,2.6,2.3,1.3,2.8,1.2,1.3,0.9,1.2,1.9,1.3,2.7,1.6,1.8,1.8,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,8.5,9.1,8.5,9.7,8.6,8.3,8.3,9.5,9.3,8.7,8.8,8.7,8.6,8.8],"script":[1,1.1,0.9,0.6,1.6,1.2,0.7,0.2,1.3,1.3,1.3,0.6,0.6,0.6,0.2],"paint":[6.8,6.5,6.3,6.2,6.4,5.4,6.9,7,6.8,6.8,5.7,7.2,5.9,7,7.6]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.3,17.2,17.6,16.8,17.1,17.5,17.4,17.7,17.1,17,18.1,17.4,17.2,16.9,17.3],"script":[1.6,1.8,1.6,1.7,1.8,1.8,1.7,1.8,1.7,1.7,2.1,1.7,1.8,1.7,1.7],"paint":[14.8,14.3,15.4,14.5,14.9,15.1,15,15.2,14.4,14.7,14.8,14.7,14.7,14.3,15]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[270,268.6,269.9,270,269.2,271.5,270.3,270.6,269.7,269.5,276.1,274.5,267.4,270.3,268.5],"script":[37.8,37,38,37.4,37.8,37.7,38.2,38.1,38.2,37.5,38.1,37.5,37,38,37.7],"paint":[224.9,224.4,224.4,225.3,223.6,226.3,224.7,225.1,224.2,224.5,230.6,228.9,223,224.8,223.3]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31.1,31.4,31.4,30.6,31.5,31.6,31.4,31.2,31.6,31.1,31,31.7,31.5,31.1],"script":[4.1,4.1,4.1,4.1,3.8,4.2,3.8,4,4.2,4.2,4,4,4.1,4.2,4.1],"paint":[26.5,26.2,26.5,26.6,26,26.5,26.9,26.5,26.2,26.6,26.3,26.3,26.7,26.5,26.2]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.9,13.3,12.5,12.4,11.8,12,13.1,12.5,13,12.3,13,13.5,11.7,12],"script":[10.5,10.9,11.1,10.5,10.9,10.1,10.2,10.8,10.9,10.4,10.2,11.4,11.4,9.8,10.4],"paint":[1.2,1.2,0.7,0.8,0.3,0.2,0.9,1.3,0.7,1.3,1.2,1,1.1,1.1,1]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5542526245117188]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6002445220947266]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.618154525756836]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6867952346801758]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.815208435058594]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"lit-html-v3.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[29,28.8,29.5,28.4,29.1,28.8,29.1,28.5,29,28.9,29.2,28.9,28.9,29.2,29.1],"script":[5.9,5.9,6,5.7,5.9,6,6.2,5.8,6,6,6.1,5.9,5.9,6.2,6],"paint":[22.4,22.3,22.9,22.1,22.6,22.2,22.3,22.2,22.4,22.4,22.5,22.3,22.4,22.5,22.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[18.6,18.5,18.3,17.8,18,17.8,18.4,19.1,17.7,18.1,18,18.9,17.9,18.1,18.5],"script":[7.3,7.3,7.6,7.1,7.3,7.2,7.2,7.4,7.3,7.2,7.2,7.5,7.2,7.2,7.2],"paint":[10.7,10.6,10.1,10,10.1,10,10.6,11,9.8,10.4,10.2,10.8,10.1,10.2,10.6]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.7,31.7,34.1,31.3,31,32.1,32.2,32.5,32.8,30.7,31.5,32.4,33.6,31.9,32.6],"script":[19.8,19.1,21,18.4,18.4,18.9,18.9,19.6,19.3,18.2,17.7,18.7,19.6,18.9,20],"paint":[11.1,9.8,10.6,11.1,10.1,10.8,11.1,11,11.5,11,11.5,11.2,11.6,10.6,10]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[21.2,22.6,22.2,22,22,21.8,21.5,22,21.5,21.6,23.3,22.3,21.3,20.8,21.9,21.3,22,21.2,21.9,20.8,21.5,22.1,21.6,21.1,21.4],"script":[18.1,19.2,18.9,18.7,18.9,18.7,17.9,18.1,18.4,18,18.8,19.2,18.3,17.5,18.3,17.9,18.5,18.2,18.4,17.6,18.6,18.8,18.3,17.9,18.5],"paint":[0.9,1.8,2,1.7,1.4,1.2,2.9,2.5,1.6,2.3,2.5,2.3,1.7,1.9,1.6,2.2,2.6,1.6,3.2,1.6,1.8,1.9,1.2,1,0.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[28.7,29.5,28.5,28.4,28.4,28.9,28.5,29.1,29.1,28.4,30.6,30,31.7,28.8,27.9],"script":[18,18.3,18.1,18,18,18.3,17.9,18.4,18.5,18,20.3,18.6,18.9,18.1,17.5],"paint":[8.4,8.8,8,8.4,8.4,8.5,8,8.4,8.6,9.3,8.6,9.5,10.9,8.7,8.5]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.5,31.7,31.6,32,31.5,31.8,31.8,31.6,31.4,31.6,32.2,32.7,30.6,32.2,32.1],"script":[12.9,12.9,12.7,12.9,12.9,12.8,12.6,12.8,13.1,13.1,13.1,12.8,12,13.3,13.2],"paint":[18,17.4,17.5,17.9,17.1,18,18.1,17.2,17.2,17.4,17.8,18.5,17.3,16.4,17.7]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[301.7,303.9,301.1,300.3,302.4,307.4,301.9,302.8,303.1,301.9,302.1,303.6,303.1,301.5,300.3],"script":[66.6,67,67.7,68.1,66.9,69.4,67.8,68.2,67.4,67.6,67.6,67.1,68.4,69.5,67],"paint":[227.3,228.8,225.8,224.6,227.7,230.1,226.3,226.9,227.8,226.4,227,228.8,227,224.4,225.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.7,40.7,40.6,39.8,39.6,41,39.9,39.8,40,40.4,40,39.6,39.7,40.3,40.2],"script":[12.1,12.3,11.9,11.9,11.5,11.9,11.5,11.7,11.5,11.7,12.2,11.4,11.4,12,12],"paint":[27.4,27.3,27.4,26.8,27.1,27.9,27.3,27,27.2,27.5,26.8,27,27.1,27.2,27.2]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,14.8,15.3,15.9,16,15.8,15.3,15,14.7,15.8,17.1,14.6,14.6,15.1,15.2],"script":[12.7,13,13.2,13.6,13.9,13.3,13.4,12.9,13.3,14,14.4,12.9,12.8,12.9,13.3],"paint":[1.1,0.3,0.9,0.8,0.9,2.1,0.6,1.8,0.2,0.9,1.3,0.2,0.3,1.3,1.1]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5163745880126953]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0778989791870117]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.322443962097168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6873941421508789]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.998469352722168]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[30.9,35.6,31,33.3,32.5,32.6,33.6,31.9,31.4,36.6,33,32.8,34.3,33.6,34.4],"script":[6.2,6.1,6.2,6.2,6.2,6.2,6.1,6.2,6.3,6.4,6,6,6.1,6.1,6.2],"paint":[22.3,21.9,22.3,22.3,22.3,22.1,22.6,22.3,22.1,21.6,22.5,21.7,22.1,22.2,22.3]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[35.5,35.3,41.9,36.7,42,37.6,39.8,35.5,37.1,35.4,34.9,34.8,35,35,35.2],"script":[12.5,12.1,11.8,12.3,11.6,12.5,11.8,11.9,12,12.6,12,12.3,11.9,12.1,12],"paint":[22.6,22.6,22.2,22.8,22.3,21.8,22.3,21.9,22.1,22.4,22.5,22.1,22.5,22.3,22.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,13.4,14.3,14.5,30.2,14,29.7,13.4,13.5,29.4,29.9,30.2,13.5,13.2,29.5],"script":[3.4,3.6,3,3.1,3.3,3.6,3,2.3,2.7,2.3,3.3,3.1,2.9,2.6,2.9],"paint":[9.4,8.9,10,9.6,10.3,9.5,9.3,10,10.4,11,10.1,9.9,10.5,9.7,10.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.2,25.1,23.1,24.7,22,28.8,23.5,25.3,23.5,23.9,26.6,24.3,23,28.2,25.5,31.5,22.8,22.7,22.5,27,22.8,25.4,24.1,28,28.4],"script":[3.1,3.3,3.2,2.5,2.7,3.6,2.7,3.5,3,2.7,3.3,2.4,2.1,4.3,2.6,3.5,2.7,1.9,3.3,2.7,3.1,2.7,3.6,2.7,3.3],"paint":[16.6,13.9,13.6,15.5,14.4,14.2,16.2,14.9,15.7,15.3,16.3,14.6,15.9,17.2,14.3,17.2,14.5,15.2,14.7,16.3,13.9,14.3,15,16.4,17.6]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[135.5,135.5,118.7,118.6,136.3,132.2,121.3,135.1,123.6,116.7,132.4,135.6,136.9,118.3,132.4],"script":[31.5,30.6,30,31.2,33.4,30.4,31.2,30.8,31.1,31,30.4,31.5,31.6,31.6,30.5],"paint":[86.4,85.9,86.7,85.9,84.6,84.4,87,86.8,90.2,82.4,84.5,87.1,86.7,85.5,83.2]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.3,16,14.5,14.6,15.6,15.9,17.8,16.3,22.6,15.6,21.4,14.1,16.6,21.5],"script":[1.2,1.2,1.4,1.2,1.2,1.2,1.3,1.4,1.7,1.1,1,2,1.2,1.2,1.4],"paint":[10.7,10.4,11.1,11.4,11.4,11,11.1,10.9,11.3,11.3,10.8,10.7,11,10.6,11.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[295.6,296.1,296.8,297.8,297.2,296.5,298.6,300.4,298.8,298,296.3,301.7,300,305.6,298.8],"script":[70.7,70.1,72.7,71.3,72.7,72.5,71.7,71.1,73.6,71.3,72.1,71.3,70.8,72.7,70.3],"paint":[220.3,218.5,219.8,222.3,220.3,219.7,220.3,220.8,218.4,220.2,219.7,221.8,221.7,225.9,220.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.7,39,39.6,38.3,38.8,37.5,39.1,34.6,38.9,38,39.3,38.2,38.5,38.8,38.2],"script":[6.8,7.3,7.3,7,7,7,7.6,7.7,7.2,7.1,7,7.1,7,7.6,7],"paint":[25.4,26.1,26.8,25.6,26,24.9,25.8,26.3,26.1,25.4,25.8,25.5,26,25.5,25.5]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.6,27.5,10.9,11,10.9,27.9,27.5,27.5,11.9,27.1,27.4,27.4,10.5,11.2,11],"script":[9,9.6,9.2,9.3,8.7,10.2,9.7,10,9.8,9.5,9.5,9.6,8.7,9.2,8.7],"paint":[1,1.1,1.5,1.1,1.6,0.8,1.7,0.6,0.6,0.3,1,1.7,1,1.8,1]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5523490905761719]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8252363204956055]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.750547409057617]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8201675415039062]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.75911235809326]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.4]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8]}},{"framework":"maquette-v4.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.1,23.1,22.9,23.1,23.3,22.9,23.5,23.1,23,22.8,23.1,23.1,23.3,22.9],"script":[1.3,1.3,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.5,21.4,21.3,21.5,21.6,21.2,21.9,21.4,21.4,21.2,21.4,21.5,21.6,21.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"02_replace1k","values":{"total":[9.4,9.6,9.4,9.5,9.5,9.3,9.8,9.4,9.4,9.4,9.4,9.6,9.3,9.6,9.6],"script":[0.6,0.7,0.5,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.7],"paint":[8.5,8.6,8.6,8.5,8.6,8.4,8.8,8.5,8.5,8.5,8.5,8.6,8.4,8.7,8.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.3,10.5,9.8,10.4,10.3,10.2,9.9,9.8,10.9,10.8,10.3,10.7,10.2,10.7,10.9],"script":[0.3,0.1,0.1,0.6,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.5,0.1,0.7,1.2],"paint":[8.6,8.9,8.1,8.8,8.5,8.9,8.6,8.5,9.2,8.8,9.3,9.3,8.3,8.8,8.1]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.4,2,2.6,2.5,2.3,2.7,3,2.9,2.7,2.2,2.7,2.2,2.4,2.4,3.4,2.9,1.9,2,2.7,2.5,3,3,1.8,2.5],"script":[0.1,0.7,0.1,0.5,1,0.5,0.1,0.9,0.9,0.1,0.1,0.1,0.1,0.5,0.1,0.1,1,0.1,0.2,0.8,0.1,0.7,0.1,0.3,0.1],"paint":[1.5,1.5,1.8,1.9,0.9,1.8,2.5,1.6,1.6,2.5,2,1.7,1.1,1.8,1.8,1.9,1.8,1.3,1.2,1.8,2.2,2.2,2.4,1.3,2.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,7.5,8.1,8.2,7.6,7.7,7.6,7.8,7.5,8.1,7.9,8.1,8.1,8.8,8.2],"script":[0.1,0.1,0.1,0.8,0.3,0.1,0.3,0.3,0.3,0.1,0.5,0.6,0.1,0.1,0.1],"paint":[7.1,6.3,7,6.4,6.7,6.2,5.6,6.4,6.2,6.7,6.5,6.6,7.4,6.4,7]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,9.9,10.7,10.4,10.4,10.3,10.3,10.7,10.2,10.3,10.2,10.2,10.3,10.3,10.1],"script":[0.3,0.1,0.1,0.1,0.2,0.4,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.1,10,9.7,9.5,9,9.5,9.7,9.4,9.5,9.6,9.5,9.4,9.3,9.6]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"07_create10k","values":{"total":[245.5,246.5,246,244.2,244.4,245.3,244.5,246.2,245.1,245.3,246,243.9,244.6,247.8,246.2],"script":[15.2,14.8,14.9,14.6,14.9,15.6,14.9,15.5,15,15.4,14.7,15,14.8,16,15],"paint":[223.2,224.6,224,222.5,222.5,222.7,222.6,223.7,223.1,222.9,224.2,221.9,222.7,224.7,224.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.6,26.5,26.8,26.5,26.6,26.7,26.8,26,26.6,26.4,26.8,26.1,26.6,26.4],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.4,1.3,1.3,1.3,1.3,1.4,1.3,1.4,1.3],"paint":[24.5,24.6,24.4,24.8,24.4,24.5,24.6,24.8,24,24.6,24.4,24.7,24.1,24.5,24.3]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10,9.4,9.1,9.1,9.6,9.2,9.4,9.2,8.7,10,8.8,10,9.7,9],"script":[8.4,7.6,7.7,7.1,7.2,7.8,6.8,7,7.7,7.3,8.1,7.1,7.6,7.9,7.3],"paint":[1.2,1.6,0.6,0.2,0.2,1.6,1.9,1.4,0.6,0.6,1.1,0.6,0.7,0.7,0.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5964336395263672]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9866714477539062]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0264739990234375]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7047748565673828]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.15754222869873]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"mikado-v0.8.400-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,31.9,31.7,31.5,31,31.4,31.4,31.2,31.2,32.2,31.4,31.6,31.7,31.6,31.6],"script":[9,9.3,9.3,9,8.9,9.2,9,9,8.9,9.6,9,9.2,9.1,9.1,9.2],"paint":[22,22.1,21.8,22,21.6,21.6,21.8,21.6,21.7,22,21.9,21.8,22.1,21.9,21.9]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[20.3,19.1,19.8,19.4,20,19.9,20,20.2,20.4,19.8,19.1,19.5,19.1,19.9,19.5],"script":[10,9.5,10,9.4,10,9.7,9.8,10,10.3,9.8,9.5,9.7,9.3,9.8,9.6],"paint":[9.7,9.1,9.3,9.4,9.4,9.6,9.6,9.6,9.5,9.5,9.1,9.3,9.3,9.6,9.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.7,10.9,10.8,10.3,10.3,10.9,10.7,11.6,9.9,10.5,12,11.8,10.9,10],"script":[0.8,0.1,1,0.5,0.6,0.5,0.5,0.1,0.3,0.1,0.1,0.3,0.7,0.9,0.2],"paint":[8.5,9.5,9.5,8.6,8.5,8.8,8.8,9.5,10,8.2,8.8,11,10.2,9.1,9.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,6.3,2.4,2.6,6.1,2.2,3.9,2.3,4.8,2.6,1.9,2.2,2.1,2.3,2.7,3.1,2.3,7.1,2.6,2.4,3.7,2.4,2.8,2.7,2.7],"script":[0.1,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.7,0.9,0.1,0.1,0.7,0.1,0.1,0.9,0.3,0.7,0.1,0.3,0.1,0.1,0.1,0.7,0.5],"paint":[0.4,1.3,1.3,2.5,1.5,1.3,1.4,1.3,1,1.4,1,2,1.3,0.8,1.6,2,1.2,1.3,2.3,2,1.5,1.7,2.6,1.1,1.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.5,23.2,8.5,9.1,8.5,9,8.3,22.8,8.7,8.5,8.5,9.8,9.2,8.2,24.7],"script":[0.8,0.8,0.5,0.6,0.8,1,0.2,0.2,0.9,0.2,0.7,1.4,0.2,0.2,0.9],"paint":[6.7,6,6.5,7,6.4,6.9,6.7,6.7,6.9,6.7,5.7,7.5,8.1,7.2,7.5]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10,10.7,10.9,10.6,10.6,10.1,10.3,10.4,10.3,10.5,10.3,10.4,10.2,10.3],"script":[0.1,0.1,0.3,0.1,0.3,0.1,0.2,0.4,0.3,0.3,0.3,0.1,0.1,0.1,0.2],"paint":[9.6,9.6,9.8,10.2,9.7,10.1,9.4,9.2,9.4,9.2,9.7,9.5,9.2,9.6,9.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[305.8,306.3,305.5,305.3,304.8,303.8,305.5,307.2,305.2,305.2,306.6,303.9,304.4,305.9,304.6],"script":[80.7,80.9,81.8,81.4,80.5,80.9,82,80.9,80.3,82,81,81,80.4,82.1,81],"paint":[218,218.4,216.4,216.7,217.1,215.8,216.5,219.2,217.8,216.2,218.4,215.2,216.8,216.6,216.4]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.1,34.5,35.2,35.1,34.6,35.4,34,34.3,34.8,34.6,34.9,34.8,34.5,35.2],"script":[7.9,8,8.1,8.4,8.4,7.9,8.2,7.8,7.9,8,7.9,8,8,7.9,8.2],"paint":[25.5,26.1,25.4,25.9,25.8,25.8,26.2,25.3,25.5,25.9,25.7,25.9,25.8,25.6,26]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.1,11.1,10.4,11.1,11.9,11.2,10.8,11.4,11.3,11.1,12.8,10.4,11.2,11.1,12.5],"script":[8.6,8.5,9,9.4,9.9,9.2,8.5,9.3,9.7,9.4,9.8,8.6,9.1,9.2,10.4],"paint":[1.6,1,0.2,0.2,1.6,1.3,2.1,1.3,0.2,0.9,1.2,1.2,1.1,1.7,1.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7415637969970703]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9501514434814453]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9785375595092773]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9895973205566406]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.885876655578613]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.2]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.2]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.6,46.8,41.4,47.9,40.7,47.4,40.8,49.6,47.8,48.4,48.5,46.1,51.5,44,48.5],"script":[19.2,19.2,19.7,19.2,19.5,19.3,19.2,19.1,19.9,19.4,19,19.6,20.2,19.5,18.7],"paint":[21.2,21.2,21.3,20.8,20.9,21.3,21.3,21.8,21.5,21,20.9,18,22.2,21.5,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[38.1,37.8,30.6,31.3,33.7,31.2,26.7,33.4,29.1,26.6,38.2,26.5,28,28.5,33.7],"script":[17.2,17.4,16.3,16.9,16.3,16.8,16.5,16.6,16.8,16.5,16.4,16.7,16.9,16.5,16.9],"paint":[9.3,8.1,10,9,9.9,9.4,9.1,9.7,9.5,9.7,8.1,9.5,9.4,9.5,9.7]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.9,63.8,50.3,69,65.4,67.5,50.7,68.5,50.9,65.1,66.7,51.8,66,66.4,69.9],"script":[34.1,32.3,35.2,36.1,34.1,35.1,35.8,35.7,36.7,32.8,35.5,37.9,33.3,35,36.3],"paint":[11.6,13.1,13.4,12.7,14.2,11.8,13.1,13.4,13.7,13.1,13.2,12.3,13.6,14.3,13.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[40.2,40.1,42.6,38.2,40.2,40.4,38.5,45,41.8,40.2,38.6,38.3,39.8,39.5,39.2,41.1,40.9,41.2,38.1,40.1,39.5,40.2,39.1,40.5,40.8],"script":[34.6,35,36.8,32.5,34,34.9,33.1,35.6,34.4,33.4,32.5,32.6,33.4,32.1,33.9,34.4,34.1,35.4,32.3,34.1,34,34.4,34.3,33.8,35.5],"paint":[3.8,3.1,3.4,4.1,4.1,4.2,3.9,3.9,3.9,2,3.9,3.8,2.3,3.6,4,3.8,4.7,3.4,3.6,3.9,3.3,3.7,3.6,4.4,3.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.9,61.4,59.8,61.8,40.8,40.8,42,42.8,44.4,60.9,43.3,42.7,61.5,59.4,60.8],"script":[30.9,31.9,31.7,30.7,30.4,28.2,30,30.1,33,30.6,31.6,30.7,32.1,30.7,31.7],"paint":[10.1,11.4,11.4,12,9.8,11.5,11.4,10.1,9.9,11.7,10.3,10,10.1,11.4,9.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.5,35.4,38.3,42.2,43.8,36.3,34.4,36.6,35.9,42.9,35.4,35,37,34.7,45.3],"script":[18.4,17.2,17.7,18.1,16.9,17.2,15.8,17.7,16.9,17.5,16.9,16.7,17.7,17.3,17.2],"paint":[18.7,17.6,17.8,17.4,18.7,18.6,17.7,17.8,17.8,16.1,16.7,17.5,18.5,17,17.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[422.2,416.1,416.9,411,419.7,420.1,417.7,420.2,417.3,418.7,442.1,421.5,423.7,417.8,421.8],"script":[187.2,190.3,186.3,185.3,186.6,187.1,184.3,188.8,186.4,187.3,210.3,187.4,188.1,186.3,189.3],"paint":[221.1,219.5,220.8,221.8,222.1,221.6,220.7,220.6,221.2,220.4,221.1,221.9,223.2,221.2,221]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.4,59.4,59.8,60,56.1,60.9,61.2,59.6,59.2,59.1,59.5,59.8,59.9,56.5,58.9],"script":[24.3,24.2,23.9,23.9,24.7,23.8,23.8,24.7,23.8,23.9,23.9,24.6,24.4,25.2,23.9],"paint":[25.7,25.6,26.5,22.6,25.9,22.3,22.5,25.6,22.6,26,25.9,25.9,26.2,26,25.5]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[42.1,41.3,41.1,21.8,41.1,42.3,46.9,41.9,41,42.1,43.5,40.7,23.1,41.7,44.8],"script":[19,17.4,17.8,18,17.6,18.8,18.6,19.1,18.4,18.8,18.4,18.7,18.9,18.9,18.8],"paint":[2.7,2.7,2.9,1.8,2.2,1.7,3.4,2.6,2.5,2.4,3.2,1.9,3.1,3,2.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.5828189849853516]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.123703002929688]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.548064231872559]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.164665222167969]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.81257915496826]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.8]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[479.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.6,28.2,28.1,28.1,28.7,28.1,28.1,28.1,28.4,28.5,28.4,28.3,28.5,28.6],"script":[6,5.9,5.8,5.9,5.8,6.5,5.8,5.8,5.9,5.8,5.9,6,5.8,5.9,6],"paint":[21.9,22.2,21.9,21.8,21.8,21.8,21.9,22,21.8,22.2,22.2,22,22,22.1,22.2]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.5,33.3,32.2,32.8,32.7,33.6,32.9,33.1,32.6,33,32.6,32.6,32.9,33],"script":[9,8.7,9.4,8.6,8.8,8.9,9.7,9.1,9.1,8.9,8.8,8.8,8.9,8.9,9],"paint":[23.7,23.3,23.4,23.1,23.5,23.3,23.5,23.4,23.6,23.3,23.7,23.3,23.2,23.5,23.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.1,13.5,13.5,13.5,13.6,13.3,15.4,13.4,13,12.9,13,13.7,13.7,14.4,13.2],"script":[2.6,2.4,3,3.1,2.9,2.6,2.9,2.9,2.5,3,3.3,2.4,2.9,3,2.6],"paint":[10.5,9.6,9.5,9.2,9.4,9.8,11.4,9.2,9.3,8.9,8.5,9.2,9.6,10.3,9.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6,6.3,6.6,6.5,7.1,6.9,6.3,6.4,6.6,6.3,6.4,6.5,6.3,6.6,7,6,7,6.8,6.9,7,6.7,7,6.7,6.3,6.2],"script":[4.4,4.2,4.4,4.3,4.9,4.5,3.9,4.3,4.1,4.4,4.1,3.6,3.9,4.6,4.6,4.3,4.3,4.4,4.9,4.3,4,4.1,4,3.6,4.4],"paint":[1.1,1.2,1.8,1.4,1.7,1.2,1.4,1.3,1.9,1.1,2.2,2.4,2.2,1.9,1.6,1.6,1.9,2.3,1.8,1.9,2.5,2.7,2.1,2.6,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,11.9,12,11.4,11.5,12.1,11.7,11.8,11.3,12,11.3,11.9,11.8,11.2,10.7],"script":[3,3.1,3.2,3.3,3,3.6,3.4,3,2.6,3.1,2.7,3,3,2.4,3],"paint":[6.9,7.6,7.9,6.8,7.5,7.6,7.6,7.3,7.8,7.7,7.5,8,7.6,7.5,6.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,13.1,12.9,13.1,12.8,12.8,13.9,13,13.2,13.2,12.9,13.4,12.6,13.7,12.6],"script":[2.5,2.4,2.4,2.4,2.7,2.5,3.1,2.5,2.5,2.8,2.5,2.5,2.4,3.3,2.4],"paint":[9,10.1,9.5,10.2,9.7,9.3,10.2,9.5,10.2,9.7,10,10.1,9.4,9.5,9.5]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[364.1,364.8,369.5,365.6,365.9,365.5,368,366.5,367.4,371.1,365.8,367.3,370.8,365.4,365.5],"script":[139.4,139.1,139.8,139.9,139.8,141.2,141.6,140.4,139.3,139.6,140,142.6,140.9,139.6,139.7],"paint":[217,218.2,221.8,218,218.1,216.6,218.7,218.1,219.7,223.1,218.1,216.8,222.4,218.1,217.7]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,47.2,47.7,47.5,47.4,47.4,47.6,47.7,47.4,46.9,47.5,48.8,47.7,47.7,47.6],"script":[18.7,18.3,19.1,19.1,18.8,18.9,18.9,19.2,18.6,18.3,18.7,19.2,18.9,19.3,18.9],"paint":[27.6,28,27.7,27.6,27.7,27.7,27.9,27.6,27.9,27.7,27.9,28.8,28,27.6,27.9]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.5,20.1,18.3,20,20.6,18.8,18.9,19.3,20.9,18.8,20.6,19.4,18.6,20.1,19.4],"script":[18.3,18.7,17.4,18.2,19.4,17.5,17.9,17.5,19.4,17.1,19.3,17.5,17.5,18.6,17.9],"paint":[0.3,1.3,0.9,0.8,1.1,0.3,0.8,1.7,1,1.6,0.3,1,0.3,1.4,1.3]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.8413171768188477]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.800344467163086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.78706169128418]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.314901351928711]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.51369857788086]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.8]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[284.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"01_run1k","values":{"total":[35.2,33.2,33.6,34.3,33.7,35,33.5,33.8,34.2,34.3,33.7,34.3,34.2,33.8,33.4],"script":[12.2,11.1,11.3,11.7,11.4,12.1,11.1,11.5,11.4,11.2,11.1,11.3,11.7,11,10.7],"paint":[22.3,21.5,21.8,22.1,21.7,22.4,21.9,21.9,22.1,22.4,21.9,22.4,22,22.3,22.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.4,37.1,36.7,36.4,36,36.3,36.5,36.3,36,36.5,36.3,37.5,35.7,35.8],"script":[13.4,12.9,13.4,12.8,12.9,13,13.3,13.1,12.5,12.6,13,12.9,13.6,13,12.9],"paint":[22.4,22.7,22.9,23.1,22.8,22.2,22.3,22.7,23.2,22.6,22.8,22.8,23.1,21.9,22.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,13.3,13.9,14.2,13.4,13.6,14.3,14.3,17.2,14.8,13.6,14.2,15,14.9,14],"script":[2.1,1.8,2.1,1.5,1.5,1.7,1.6,2,2.1,1.6,2,1.8,2.2,2.6,1.9],"paint":[11.5,10.8,10.7,11.7,10.8,11.3,10.9,11,13.9,10.7,10.5,10.7,11.9,11.1,11.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.8,5.8,6.4,6.7,6.5,5.7,6.6,5.8,5.7,6.7,5.7,6.7,6.4,6.4,6.1,6.5,6.5,6.4,6.5,6.7,6.3,6.4,6.1,5.8],"script":[4.1,4.2,3.6,4.3,4.3,3.7,3.4,4.4,3.6,3.6,4,3.5,3.8,4.1,3.4,3.4,3.8,3.7,3.4,4,3.8,3,3.8,4,3.9],"paint":[2.4,1.5,2,1.9,1.9,2.2,2.1,2.1,1.3,2,1.9,2,2.7,2.2,2.1,2.2,2.6,2.1,2.1,1.6,1.9,1.9,1.7,2,1.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16,15.9,16.4,16.1,17.9,15.9,16.4,16,15.9,15.5,15.1,15.9,14.5,15.7,16.1],"script":[0.6,1.1,1.5,0.9,0.7,0.6,1.3,1,0.5,0.2,0.2,0.9,0.8,1.4,0.9],"paint":[14,13.3,12.7,14.3,14.9,14,13.5,14,14.1,14,14.2,13.8,12.4,12.6,14.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.4,11.1,11.4,11.1,11.3,11.5,11.4,11.9,11.6,11.1,11.2,10.9,11.3],"script":[0.3,0.1,0.1,0.1,0.3,0.1,0.3,0.2,0.4,0.3,0.1,0.3,0.3,0.1,0.3],"paint":[10.6,10.4,10.7,10.2,10.7,10.7,10.6,10.5,10.4,10.6,10.8,10.1,10.3,10.3,10.3]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"07_create10k","values":{"total":[370,370,363.1,370.9,370,369.9,368.3,361.9,368.8,365.3,361.2,368,370.2,365.9,363.7],"script":[129.6,130,126.7,128,126.6,125.9,126.4,126.3,126.4,128.7,126.2,127.3,127.9,127.6,127.6],"paint":[232,231.6,227.9,234.6,234.8,235.4,233.7,227.3,234,228.2,226.7,232.4,233.6,229.8,227.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,39.1,39.8,40,39.5,39.9,40.5,39.6,39,39.5,38.8,39.8,38.9,40.2,39.3],"script":[11.8,12.4,12.3,12.2,12.2,11.7,12.5,12.3,11.8,12.2,11.9,11.9,11.6,11.8,12.1],"paint":[26,25.8,26.5,26.8,26.3,27,27,26.3,25.9,26.3,25.8,26.9,26.3,27.4,26.2]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.5,15.3,14.3,16.6,13.3,12.8,13.6,12.9,11.8,14.4,16.6,13.8,17.7,15.1,12.6],"script":[12.5,13.3,12.1,14.2,11.5,11.8,11.3,11.2,10.8,13.1,14.2,12.8,15.8,12.8,11.8],"paint":[1.1,0.5,1.4,1.2,0.9,0.3,1.3,0.9,0.3,1.3,1.2,0.3,0.8,1.4,0.5]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6319818496704102]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.47098445892334]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.44230842590332]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4199934005737305]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.68405723571777]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.8]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.1]}},{"framework":"mutraction-v0.28.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[34.8,33.8,32.4,32.1,32.7,26.9,33.4,32.6,30.7,27.1,34.1,32.8,27.1,33.3,33],"script":[23.1,23.5,22.9,23.5,23.7,23.5,23.1,23.7,23.5,23.7,23.7,23.3,23.6,23.3,23.7],"paint":[20.5,20.9,20.4,20.7,21,21,20.4,21.3,21.1,21,20.9,20.6,20.9,20.6,21.1]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.9,17.1,17.6,16.5,19.5,17.3,22.6,17.1,21.6,16.4,16.5,20.4,17.4,16.7,17.4],"script":[13.9,14.3,14,13.7,13.5,14.3,13.9,14.1,13.9,13.5,13.7,13.9,14.5,13.8,14.4],"paint":[8.6,8.9,8.9,8.7,8.3,9.1,8.6,9,8.6,8.6,8.7,8.5,9,8.7,9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.5,40.8,41.3,55.2,55.9,39.1,42.9,58.3,39.4,54.8,57,54.9,37.4,39.7,54.4],"script":[32,32.8,32.9,33.3,32.9,32.5,34.3,33,32.3,32,33.4,31.6,30.5,31.9,31.5],"paint":[11.2,12.4,12.2,13.1,12.4,10.4,12.1,13.3,12.9,12.5,14.3,12.8,11.2,12.2,11.4]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[30.3,29.4,29.5,31.6,29.4,30.1,31.7,30.2,28.9,29.2,32.1,30.7,30.1,29.3,32.9,30,32.4,31.6,30.2,29.9,29.6,30.7,31.2,30.2,30],"script":[24,23.5,23.1,25.6,24.2,24.6,26,23.9,23.1,23.1,24.9,24.5,24.5,23.9,24.1,24.2,23.8,23.5,24.5,23.4,23.4,24.8,24,23.5,24.5],"paint":[4.5,3.5,4.3,2.5,2.4,3.1,3,3.2,3.7,3.9,3,2.9,3,3.8,4.4,3.2,3.7,3.2,2.1,2.2,4.4,2.2,3.8,3.7,3.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[52.1,36.3,56,56.2,53.6,37.2,39.2,52.6,52.3,38.2,55,53.8,52.3,56.3,52.6],"script":[30,29.3,31.2,29,31.9,29.3,30.5,29.6,30.4,30.7,30.7,30,29.8,31.9,30.9],"paint":[10.3,9.2,10.3,11.7,10,10.9,11.8,9,9.4,9.5,10.7,10.8,9.5,12,9.7]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.7,30.8,34.7,36.1,34.2,36.8,31.2,32.9,31,36,36.8,30.6,30.2,36.7,32.6],"script":[14.2,13.3,13.9,14.4,13.9,13.4,13.7,13.7,13.7,13.7,13.5,13,12.9,14,13.5],"paint":[15.6,15.4,15.6,15,15.7,15.1,16.5,15.3,15.4,15.5,16.5,15.8,16.2,15.7,15]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[291.1,291.8,290.2,289.3,289.1,285.5,293.3,290.5,291.1,288.2,286.5,290.9,288.2,288.9,290.3],"script":[236.6,238.3,238.5,237.4,237.2,238.9,237.9,237.5,238.7,235.9,237.2,236.5,235.4,237.9,238],"paint":[225.3,223.7,222.7,223,222.3,224.1,223.7,223.8,223.8,222.7,222.5,223.3,221.8,223.2,224.8]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.1,43.1,42.3,41.2,42.3,42.2,41.7,42.1,43.2,41.1,43.3,44.3,43.5,41.9,41.8],"script":[30.8,31.2,31,31.3,31.6,31.3,31.4,31.9,31.2,31,31,31.5,31.7,31.3,31],"paint":[25.3,25.5,25.3,25.4,25.6,25.3,25.6,25.8,25.5,25.3,25.2,25.9,26.6,25.4,25.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.6,20.6,39.7,39.3,20.4,39.3,21.5,39.8,20.9,21,21,41.2,22,21.8,20.5],"script":[16.4,16.1,17.2,17.9,17.4,17.2,17.5,17.3,17.7,16.2,17.1,16.3,18.8,17.7,16.4],"paint":[1.7,3.4,3,3.5,2.7,3.7,1.6,2.7,1.8,1.3,2.2,2.9,2.5,3.8,2.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.395395278930664]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.846027374267578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.048587799072266]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.613348960876465]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.197758674621582]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.2]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"01_run1k","values":{"total":[27.6,27.8,27.3,28.7,27.9,27.8,27,27.4,27.9,27.8,27.4,28.3,28.1,27.2,28.1],"script":[5.5,5.5,5.2,5.5,5.5,5.2,5.2,5.3,5.3,5.4,5.3,5.4,5.8,5.1,5.5],"paint":[21.5,21.8,21.5,22.6,21.9,22,21.2,21.5,22,21.9,21.6,22.3,21.8,21.4,22]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"02_replace1k","values":{"total":[13.3,13.4,13.4,13.4,13.3,13.3,13.2,13.2,12.8,13.6,13.6,12.6,13.5,13.2,13.2],"script":[4.3,4.3,4.4,4.4,4.2,4.4,4.2,4.3,3.6,4.4,4.3,3.6,4.2,4.3,4.4],"paint":[8.6,8.7,8.6,8.6,8.7,8.6,8.6,8.6,8.7,8.8,9,8.6,8.9,8.6,8.5]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,14,14.4,13.7,14.3,14,13.2,14.2,14,13.6,13.2,13.4,13.8,13.6,13.7],"script":[2.2,3.4,2.9,2.5,2.8,3.3,2.5,3.1,2.7,2.2,2,2.7,2.7,2.6,2.7],"paint":[10.1,8.5,10.2,9.6,10.4,9.5,9,10.5,9.8,10.4,8,9.3,10.1,10,9.9]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.3,3.1,3.1,3.3,3,2.5,3.1,3.4,3.3,3,2.8,3.3,2.8,3.1,3.2,3.1,3.1,3.1,2.8,3,3,2.9,3.1,2.6],"script":[1,0.2,0.6,0.8,0.9,0.8,0.9,0.2,1,1.2,0.9,0.9,1.2,0.6,0.9,1,0.2,0.2,1.3,1.1,0.5,0.8,1.1,0.6,0.8],"paint":[1.4,3,1.7,0.8,1.7,1.1,1,1.8,1.8,1.4,1.4,1.1,1.3,1.4,1.4,2.1,1.7,1.8,1.3,1.6,1.5,1.3,1.3,1.7,1.6]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,9.1,9.2,9.9,8.8,9.7,8.8,9.4,8.9,9.5,10.5,10.7,10,9.5,9.4],"script":[0.2,0.9,1,1.2,0.6,1.4,0.8,1.1,0.7,1.1,0.8,0.6,1.1,0.9,0.9],"paint":[7.5,6.4,7,7.7,6.9,7.3,6.5,7.4,6.5,7.1,7.8,8.1,6.8,7.6,6.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.6,23.3,23.9,24.1,24.9,23.9,23.8,23.1,23.2,23.2,23.7,23.8,23.3,24.8,23.5],"script":[7.6,7.5,7.5,7.3,7.8,7.4,7.5,7.2,6.8,7,7.7,7.5,7,8,7.2],"paint":[14.8,14.6,15.3,15.4,16.2,15.6,14.8,14.8,15.4,14.8,14.9,14.9,15.2,15.4,15.3]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"07_create10k","values":{"total":[342.3,340.4,341.8,341.9,340.8,342,341.3,342.5,343.9,342,341.7,343.3,340.1,340.7,344.5],"script":[107.1,106.3,107.4,106.8,106.2,107.3,107.3,107,107.5,108.3,106.9,107.4,106.5,107,106.9],"paint":[227.3,226.1,226.3,226.4,226.6,226.6,225.8,227.1,228.1,225.8,226.7,227.2,225.7,225.8,229.4]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.1,43,43,42.9,42.7,43.3,42.5,43.3,42.6,42.6,42.9,43,42.6,47.8,42.8],"script":[15.6,15.4,16,15.4,15.2,15.5,15.2,15.8,15.7,15.5,15.7,15.8,15.7,17.1,15.6],"paint":[26.5,26.4,25.9,26.4,26.4,26.6,26.1,26.5,25.9,25.9,26.1,26.1,25.8,29.2,26.1]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17,16.7,16.7,17,16.9,17,17.9,17,17.5,17.7,17.3,16.7,16.1,16.2],"script":[14.5,14.6,14.7,14.3,14.7,14.6,15,15.4,15,15.1,14.9,14.9,14.6,14.2,14.6],"paint":[1.1,1.5,1.6,1.7,1.1,0.3,0.9,1.6,0.5,1.6,2.3,0.3,1.5,1,0.7]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.999262809753418]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.219165802001953]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.098799705505371]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.778217315673828]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.14489555358887]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[41.2,41.3,41.1,40,38.2,38.1,39.7,40.1,40,41.6,41,41.6,41.4,41.4,41.2],"script":[18.5,18.6,18.6,18.4,16.8,16.4,18.1,18.3,18.2,18.6,18.5,18.7,19,19.3,18.7],"paint":[22,22.1,21.9,21,20.8,21.1,21,21.2,21.3,22.4,21.9,22.2,21.9,21.5,21.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.4,11.4,11.6,11.4,11.2,11.4,11.1,11.7,11.2,11.4,11.5,11.3,11.3,11.4,11.2],"script":[2.4,2.5,2.5,2.4,2.3,2.4,2.3,2.6,2.3,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[8.6,8.5,8.7,8.6,8.5,8.6,8.5,8.8,8.6,8.6,8.7,8.6,8.6,8.7,8.5]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.5,13.4,13.1,13.2,12.2,12.7,13.1,13.7,13.3,12.7,13.2,13.6,14,12.2,13.7],"script":[1.7,2.2,2.6,1.9,2.3,2.4,1.8,2.4,2.4,2.8,1.8,2.6,2.9,2.5,2.1],"paint":[10.8,10.4,8.9,10.2,8.6,9,10.3,9.8,9.9,9,10.6,9.5,9.4,8.7,10.6]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.4,10.7,9.9,10.1,10.1,9.4,6.7,8.8,9.6,9.7,9.4,9.7,9.7,7.3,9,9.1,10.1,9.8,9.6,9.3,9.4,9.7,10.4,6.4],"script":[6.4,6.1,7.2,6.7,6.2,6.1,6.1,3.7,5.1,6,6.4,6.3,6.1,5.9,4,6.1,5.4,6.8,6.2,6,6,5.5,6.3,7,3.7],"paint":[1.9,2.6,1.8,2.3,3,2.5,1.9,1.8,2.4,1.9,1.5,1,2.3,3,2.5,1.9,1.7,2.1,1.5,1.1,2.9,2.7,1.8,1.1,2.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[8.2,8.4,9.3,8.9,10,10,10.2,8.8,9.5,10,9.4,9.5,19.7,9.4,9.3],"script":[0.3,0.5,1.3,1,0.5,1.2,1.5,0.6,0.9,0.6,0.7,0.9,0.5,1.2,0.5],"paint":[6.9,6.6,6.1,7,8.4,7.5,6.2,6.4,7.2,7.9,6.9,7.4,7.1,6.9,7.8]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21.9,21.8,22,22.4,21,20.4,20.1,22.5,21.2,21.5,21.3,20.7,21.3,21.6],"script":[5.1,5.2,5.3,4.8,5.4,4.9,4.6,4.8,5.1,5.2,4.8,5.3,4.8,5,4.9],"paint":[15.5,15.7,15.7,16.1,16,15.4,15.1,14.4,15.9,15.2,15.8,14.9,14.9,15.7,15.9]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[377.2,376.2,379,376.8,375.1,378.7,376.4,378.9,377.6,378.7,378,378.8,377.1,380.7,377],"script":[152.5,152.6,152.9,152.9,151.8,153,152.8,152.9,152.3,153.8,153.2,152.8,152.9,153.3,152.7],"paint":[217.6,216.5,218.7,216.7,216.1,218.5,216.4,218.8,218.2,217.8,217.7,218.8,216.9,220.4,217.3]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.2,43.1,43.1,43.1,43.1,42.9,43.3,42.9,43.1,43.4,43.3,44,43.1,43,43.3],"script":[16,15.8,16,15.9,16,16,15.9,16,16.1,16.2,16.2,16.6,16,16,16.1],"paint":[26.2,26.3,26.1,26.1,26.1,25.9,26.4,25.9,26,26.2,26.1,26.5,26.1,26.1,26.2]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.5,24.2,24.7,24.8,23.3,24.4,24.4,23.9,23.1,24.5,25.3,24.4,23.7,22.7,23.2],"script":[21.1,22.1,22.3,22.7,22.1,22,21.9,22.2,21,21.9,22.7,22.1,22,20.8,20.7],"paint":[1.7,1,2.1,1.2,1.1,1.3,1.3,0.3,0.9,1.3,2.4,1.1,1.5,0.3,1]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2025566101074219]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.733373641967773]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.754152297973633]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.145580291748047]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.02319049835205]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.7]}},{"framework":"ractive-v1.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[240.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.3,32.8,32.5,33,33,33.5,33.3,33.4,32.7,32.9,32.7,32.9,33.3],"script":[10.5,10.3,10.6,10.4,9.9,10.4,10.4,10.9,10.7,10.6,10.3,10.3,10.3,10.4,10.7],"paint":[21.8,21.8,22.1,21.8,22,22,22,22,22.1,22.3,21.8,22,21.9,21.9,22]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[37.2,37.3,36.8,36.6,36.4,36.4,37.2,36.3,36.7,37.2,36.1,37,36.2,37.3,37],"script":[14.7,14.5,14.4,14.4,14.2,14.2,14.9,13.9,14.4,14.6,14.2,14.4,14.2,14.5,14.5],"paint":[21.9,22.2,21.8,21.6,21.6,21.6,21.6,21.8,21.7,22,21.4,22.1,21.5,22.2,21.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,13.8,13.2,12.8,12.6,13,13.5,12.3,12.8,14.4,12.5,13.7,12.6,12.7,13],"script":[2.2,3,2.2,2.4,2.5,2.4,2,1.7,1.8,2.5,2.3,2.5,2.3,2.4,1.8],"paint":[10,9.2,9.7,9.2,8.7,9.3,10.6,9.6,9.8,10.8,9,10.2,8.6,8.2,9.8]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.8,4.2,3.5,3.1,4.4,4.2,3.4,4,3.8,3.1,3.7,3.2,4.3,4,3.9,3.3,3.7,3.4,3.6,3.9,3.8,3.8,3.2,3.5],"script":[1,1.2,1.6,1.3,0.7,1.3,1.4,1.2,2,1,1.3,1.2,1.3,1.9,1.5,2,1,1.7,0.9,1.4,1.2,1.5,1.2,1.1,1.4],"paint":[2.5,2.4,2.4,2.1,1.7,3,1.9,2.1,1.1,2.5,1.7,2,1.8,2.3,1.7,1.1,1.5,1.1,2.2,0.5,1.8,2.2,2,1.1,1.3]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.4,10.7,9.9,10,9.2,10.3,9.7,9,9.4,9.2,9.4,10.3,10.1,10.2,9.3],"script":[1.9,2.1,1.8,1,1.5,1.8,1.6,1.4,1.6,1.6,1.2,2.2,1.7,1.5,1.8],"paint":[6.9,7.2,7.4,8,6.8,6.4,6.4,6.7,5.1,6.2,7.1,7.5,7.1,7.6,6.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.5,11.5,11.4,11.6,11.2,11.3,11.4,11.4,11.3,11.4,11.8,11.1,11.5,11.6],"script":[1,1.1,0.8,1,1.1,0.9,0.9,1.1,1,1,1,1.2,1.2,1,1],"paint":[9.8,9.5,10.1,9.9,9.7,9.7,9.7,9.7,9.8,9.7,9.9,9.9,9.4,9.9,10]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[320.6,322,320.2,321.7,322.5,321.6,321.7,322.8,319.8,323.7,320.1,319.3,318.5,320.4,319.2],"script":[93.9,93.4,92.3,93.4,94.8,94.1,94.4,95.7,94,92.6,93.8,93.2,91.4,93.5,92.8],"paint":[219.5,221.4,220.3,220.8,220.3,220,220.1,220,218.6,223.6,219,219,219.6,219.7,219.2]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.4,37,36.9,37.3,37.4,37.9,37.2,36.9,37.4,37.5,36.9,37.2,37.4,37.6,37.2],"script":[10.4,10.1,10,10.2,10.2,9.8,10.1,10.1,10.2,10,10.1,10.1,10.2,10.3,10.2],"paint":[26,25.9,25.9,26.2,26.3,27.1,26.2,25.9,26.3,26.5,25.8,26.2,26.3,26.3,26.1]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.4,19.9,20.3,19.2,19.4,19.8,19.8,19.9,19.3,19.6,21.3,19.4,20.1,18,19.3],"script":[17.5,17.8,18.2,17.3,17.4,18,17.4,17.1,16.9,18,18.8,17.8,17.6,16.3,17.3],"paint":[1.7,0.8,0.8,0.8,0.3,0.6,1.4,1.3,0.3,1.1,1.1,0.2,1.7,0.6,0.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.766378402709961]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.354438781738281]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.362306594848633]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7009496688842773]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.114625930786133]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[134.4]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5]}},{"framework":"ravel-v0.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[163.7]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"01_run1k","values":{"total":[29.2,28.9,28.8,29.4,29.3,29.3,29.2,29.3,29.4,28.9,29.1,29.2,29.9,28.9,29.5],"script":[6.6,6.6,6.6,6.8,6.6,6.8,6.7,6.6,6.7,6.6,6.6,6.9,6.7,6.6,6.8],"paint":[22.1,21.7,21.7,22,22.1,22,21.9,22.1,22.1,21.7,21.9,21.8,22.6,21.8,22.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,11,11.3,10.5,10.6,10.5,10.5,10.5,10.8,10.5,10.4,10.8,10.5,10.6,10.7],"script":[1.2,1.4,1.5,1.3,1.4,1.4,1.3,1.4,1.3,1.4,1.3,1.4,1.2,1.4,1.3],"paint":[8.8,9.3,9.5,8.9,8.9,8.8,8.9,8.8,9.2,8.8,8.8,9.1,8.9,8.9,9]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12,11.4,12,11.8,12.3,12.6,11.8,12.7,12.5,13,12.2,13.1,13.4,11.2],"script":[1.5,1.4,1.4,1.4,1.4,1.8,1.4,1.3,1.7,1.3,1.8,1.2,1.4,1.4,1.1],"paint":[8.9,10.1,9,9.9,9.5,9.5,9.7,9.4,9.8,10,9.7,9.1,10.5,9.8,8.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"04_select1k","values":{"total":[4.3,2.7,3.3,3.2,2.6,3.2,2.3,3.1,3.2,3.6,3.1,2.5,3.5,3,2.6,2.8,2.5,3,3.3,3.5,3,3.1,2.7,3.1,2.7],"script":[0.9,0.2,0.9,1,0.2,0.9,0.2,1.4,0.9,1.5,0.3,1,1.5,0.9,0.2,1.3,0.5,0.9,0.8,1.2,0.6,1.2,0.6,0.9,1.2],"paint":[3.3,2.2,2.3,2,1.8,2.2,1.6,1.6,0.8,1.9,2.6,1.4,1.5,0.9,2,1,0.7,1.3,1.5,1.8,1.5,1.3,1.9,1.3,1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"05_swap1k","values":{"total":[9.1,9.5,8.7,8.9,9.3,8.6,9.2,9.1,9.5,9.6,9.3,9.3,9.2,8.8,9.2],"script":[0.6,1.2,0.7,1.3,1.2,1.1,1.1,1.6,1.5,1.2,1,0.6,0.6,0.9,0.9],"paint":[7.7,7.2,6.7,6.9,6.7,6.3,6.9,6.4,6.9,7.3,7.2,8,7.9,6.9,7.1]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.9,18.4,18.6,18.8,18.7,18.2,17.7,18.3,18.2,18.6,18.7,18.3,18.3,17.9,18.1],"script":[2.1,2.1,2.1,2.2,2.1,2.2,1.9,2.1,2.3,2,2.2,2.2,2,1.9,2.1],"paint":[15.9,15,15.8,15.9,15.9,15.4,15.2,15.6,15.2,15.8,15.8,15.4,15.7,15.3,15.4]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"07_create10k","values":{"total":[294.4,297.9,296.6,294.8,296.9,295.4,296.1,296.3,296.9,298.8,294.4,296,295.3,295.7,299.4],"script":[68.5,67.7,69.7,69.1,69.6,69.2,68.8,69.6,70.1,70.5,69.9,68.8,69.6,69.4,69.5],"paint":[218.5,222.3,219.6,218.5,220.2,219.1,219.8,219.6,219.5,220.9,217.4,219.7,218.4,219.2,221.8]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,34.8,34.7,35.8,35.1,34.9,35.3,34.7,34.6,34.2,34.4,35.1,34.2,34.1],"script":[7,6.7,7.1,7.1,7.3,7.5,7.1,7.4,7,7.3,7.2,6.9,7.2,7.3,6.8],"paint":[26.4,26.6,26.8,26.7,27.4,26.6,26.9,27,26.7,26.4,26.1,26.5,26.9,26,26.3]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.3,13.1,12.2,11.8,11.8,12.4,12.2,12.1,12.8,12.5,11.9,12.5,11.6,12.1],"script":[9.8,10,10.2,10.2,9.7,9.5,10.1,9.8,9.8,10.4,10.5,9.7,10.8,9.9,10.2],"paint":[0.9,0.8,0.8,0.9,1,1,1.4,1.7,1.3,1.2,0.9,0.9,1.2,0.2,1.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.583247184753418]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.496914863586426]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5447378158569336]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4642763137817383]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.07200813293457]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[78,80.3,77.5,75.4,81.6,76.7,77.5,73.5,80.6,81.5,77.7,76.3,74.1,75.9,76.2],"script":[45.5,44.9,45.8,46.4,46.8,46,45.8,46,45.4,45.4,45.8,48.1,45.5,45,45.8],"paint":[22.6,22.4,22.4,22.4,22.7,22.4,22.8,22.4,23,22.5,22.6,22.9,22.7,22.4,22.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[101.2,98.4,99.5,105.6,110,103.8,100.4,103.8,101.6,99.6,103.4,103.4,105.6,101.7,107.7],"script":[70.7,69.1,71.3,72.7,75.3,71.8,71,72.6,70.2,68.9,72.2,72.4,72.1,72.3,71.5],"paint":[22.6,22.7,22.9,23.8,23.6,23.2,22.6,23.4,22.9,22.9,23.5,22.8,24.3,22.5,24.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[62.2,92.9,92.5,61.7,91.8,90.3,62.5,89.7,92.8,93.2,92.3,59.5,59.2,93.1,61.3],"script":[35.5,35.1,34.8,35.9,35.3,34.4,33.9,33,34.7,35,34.2,33.8,33.3,35,34.8],"paint":[25.4,24.3,25.9,25.4,25.4,25,27,25.2,26.8,25,24.5,24.2,24.8,25.5,25.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.7,35.5,39.4,29.9,33.8,35.6,40.2,30,37.4,30.7,39.1,28,36.5,28.7,29.1,38,31.8,33.5,28.6,35.3,29,30.9,32.2,30.8,29.5],"script":[7.3,6,4,5.5,4.7,4.2,5.8,5.2,4.1,4.6,4.4,6.3,5.7,6.4,4.7,5.7,4.9,5.6,4.9,4.1,5.1,5.2,4.9,5.6,5.9],"paint":[22.1,20.8,21.8,18.9,19.2,22.1,20.9,18.5,22.4,19.9,20.3,19.1,21.1,18.3,20.2,21.6,18.7,21.5,20.1,19.9,19.3,18.6,19.4,20.6,19.2]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[53.9,56.4,57.8,56.8,56.7,55.3,55.1,55.2,53.9,25,57.2,53.8,57.8,54.9,23.6],"script":[6.4,5.1,5,5.9,5,4.8,4.7,6.1,6.2,5.6,5.9,6.1,5.4,5.3,5.7],"paint":[16.9,17.3,16.1,17.5,18.3,17.1,16.7,17.5,17,18.3,17.7,15.8,16.9,16.6,15.6]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.9,25,27.2,33,33.4,33.1,28.3,28.1,28.5,30.8,33.1,27.3,34.9,27.6,22.6],"script":[2.1,2,2.1,1.4,1.6,1.8,2.4,1.8,2.1,1.9,2,1.6,1.8,1.6,1.8],"paint":[13.5,12.2,13,13.1,12.7,12.8,12.4,13.2,13.4,13.8,12.8,12.6,12.7,13.1,12.5]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[677.8,669.3,665.8,688.2,663.1,672.6,680.3,670.2,671.5,667.8,662.8,668.4,676.1,674.9,668],"script":[426.7,416.5,414.2,435.1,411.1,422.6,425,418.9,419.7,414.2,410.9,421.8,424.7,421.7,414.9],"paint":[238.5,237.7,238.3,238.8,237.6,238.1,238.6,238.4,238.5,238.3,237.2,238.3,239.2,238.5,238.8]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.3,83.9,85.8,84.2,89,84.8,85.1,87.6,86.1,83.9,83.4,83.9,84.4,85.1,84.7],"script":[50.6,50.3,51.5,50.2,50.4,50.5,51.3,49.8,49.8,49.9,49.9,50,50.5,51.4,50.3],"paint":[26.8,26.7,27.5,27.2,27.4,27.3,26.8,27.3,27.3,27.3,26.8,27.1,27,27,27.3]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[102.6,100.9,68.6,70.9,71.7,71.2,74.6,69,69.7,71.9,70.1,71.8,72.8,72.3,69.5],"script":[69.9,66.9,64.7,67.6,68.4,68,70,65.4,66.2,67.7,67.1,68.4,68.6,68.8,66],"paint":[4.5,2.6,2,2,2.6,2.6,2.8,2,2.4,3,2.8,2.7,2.1,2.9,3.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[7.661443710327148]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.32093048095703]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[24.726356506347656]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[40.66411209106445]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.25845336914062]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.1]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[2470.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[25.8,25.6,25.6,25.8,25.7,25.8,25.9,25.9,25.8,26.1,26.5,25.9,25.7,26,25.8],"script":[2.6,2.6,2.6,2.6,2.6,2.6,2.5,2.6,2.5,2.7,2.6,2.6,2.5,2.6,2.6],"paint":[22.8,22.6,22.6,22.7,22.7,22.8,22.9,22.9,22.9,23,23.5,22.9,22.7,22.9,22.8]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[11.5,11.5,11.4,11.4,11.4,12.2,11.8,11.5,11.4,11.3,11.8,11.5,11.6,11.4,11.5],"script":[2.1,2.1,2.1,2.1,2,2.1,2.3,2.1,2.1,2.1,2.4,2.2,2.2,2.1,2.1],"paint":[9,9.1,9,8.9,9,9.6,9.1,9,9,8.9,9,8.9,9.1,9,9.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,14.4,13.5,13.7,15.7,14,14.1,15.1,15,14.2,13.9,13.1,15.2,14.3,14],"script":[3.6,3.3,3,3.4,4.4,3.5,3.1,3.8,3.1,3.5,3,3.2,3.5,3.4,2.6],"paint":[9.6,9.1,9,9.4,10.3,8.9,10.4,9.6,10.7,9.3,9.7,9.1,10.4,9.9,10.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6,5.2,5.5,5.7,5.2,4.8,5.2,5.2,5.1,5.3,4.7,5.2,5,5.6,6.1,5.5,5.5,5.2,5.7,4.6,5.7,5.5,5.6,5.4,5.4],"script":[3.3,3.3,3.1,3.2,2.6,2.6,3,2.5,3.2,2.6,2,3.3,2.8,2.9,3.7,3.2,3.5,3.3,3.2,3,3.4,3.1,3.2,2.6,3.2],"paint":[2.5,1.2,1.5,2.3,1.6,1.4,1.3,1.8,1.1,2,2.6,1.1,2,2,1.5,1.4,1.1,1.3,2.2,1,2.2,2.2,1.5,2.7,2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[11.8,12.7,12.2,12.1,11.6,11.5,11.8,11.8,11,12.5,11.5,11.4,10.7,11.3,10.8],"script":[2.6,2.9,2.4,3.7,3.3,3,3.1,3,2.5,3.6,3,2.6,2.9,3,2.7],"paint":[7.8,8.5,8.5,6.7,6.8,6.8,6.9,7.7,7.1,7.7,7.5,7.8,7.2,6.7,7.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.4,20.3,20,20,20.1,19.9,20.3,21.1,20.6,20.3,21.2,20,20.9,22,20],"script":[4,3.9,4,3.8,3.9,3.9,3.9,3.7,4.1,3.9,4,3.9,4,3.9,3.8],"paint":[15.6,15.3,15.2,15.6,15.5,15.3,15.7,16.8,15.7,15.8,16.5,15.4,16,17.3,15.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[276.9,275.2,272.4,271.8,273,272.9,270.3,269.9,270.2,270.3,271.3,272.6,275.8,272.4,271.6],"script":[31.2,31,30.8,30.5,31.4,30.8,30.2,30.1,30.3,30.6,30.5,30.4,30.6,29.3,30.6],"paint":[238,236.3,233.7,233.5,233.7,233.7,232.1,231.8,232,232,233,234.3,237.2,234.5,233.1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.1,31.7,31.3,31.7,31.1,30.7,31.2,31.5,30.8,30.7,31,31.5,31.3,31.4],"script":[3.4,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.2,3.2,3.2,3.3,3.2,3.2,3.3],"paint":[27.3,27.1,27.4,27.2,27.5,27,26.7,27.1,27.4,26.7,26.7,26.9,27.4,27.3,27.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.6,10.2,10.6,11.9,11,9.9,9.6,10.3,8.9,11.9,10.3,11.1,10.4,9],"script":[8.8,9.1,8.6,8.6,9.5,9.4,8.4,8.3,8.5,7.3,10.4,8.8,9.5,9,7.2],"paint":[0.9,0.7,0.3,1.7,1.9,0.2,1,0.2,1.6,1.1,0.7,1,1.4,0.2,1]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7741832733154297]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9774398803710938]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0305938720703125]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8632621765136719]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.295598030090332]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"01_run1k","values":{"total":[30.2,30.3,30,30.2,29.7,29.8,30.2,30.2,30.7,29.9,30.3,30.4,30.2,30,29.8],"script":[8.2,8.3,7.7,7.7,8,7.7,8.3,8.3,8.4,7.7,7.9,8.3,7.9,7.7,7.7],"paint":[21.4,21.5,21.8,21.9,21.2,21.5,21.4,21.3,21.7,21.6,21.9,21.5,21.8,21.7,21.6]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"02_replace1k","values":{"total":[11.2,11.1,11.7,10.9,10.8,11.3,11.3,10.8,10.7,11,10.8,11.3,10.8,10.8,11.5],"script":[2.3,2,2.3,2.1,1.9,2.2,2.3,2,2,2,2,2.1,2,2,2.2],"paint":[8.6,8.7,9,8.4,8.5,8.7,8.7,8.5,8.4,8.7,8.5,8.9,8.4,8.5,8.9]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.6,17.2,16.6,15.6,20.3,17.9,15.6,16.6,15.9,16.5,17.6,16.8,17.6,17.5,15.6],"script":[5.8,5.8,5.3,5.2,6.3,6.3,4.5,4.9,4.9,5.5,5.4,5.6,5.6,5.8,4.9],"paint":[10,9.2,9.7,8.2,11.8,9.6,9.7,9,10.2,9.4,10,8.9,10.4,10.3,9.8]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,6.6,7.3,7.1,6.3,6.6,6.8,6.9,6.6,6.4,5.7,7.3,6.6,6.1,6.5,6.9,5.9,6.6,5.9,7.3,7.5,7.8,7.5,6.8],"script":[4.1,4.3,4.5,5.1,4.8,4.8,4,4.5,4.4,4.5,3.6,3.9,4.6,4.7,4.2,3.9,4.4,4,4,4,4.8,4.9,4.9,5,4],"paint":[2,1.3,1.9,1.8,1.5,1,1.6,2.2,1.4,1.6,1.8,0.9,1.8,1.1,1.1,2.5,2,1.2,1.1,1,1.9,1.3,2.3,1.5,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13,12.9,13.3,12.1,13.1,13.2,12.3,13.8,14.3,13.6,13.3,12.3,12.7,13.1],"script":[4.4,4.5,4.6,4.6,4.4,4.3,4.5,4,4.8,5.3,4.9,5.1,4.6,3.9,4.1],"paint":[7,7.1,7.1,7.2,6.6,7.8,7.2,7,8.3,6.9,7.7,5.9,6.4,7.7,6.3]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.7,18.9,19,18.9,18.7,18.5,19.1,18.3,18.9,18.8,18.8,19.1,18.8,18.9,21.3],"script":[3.3,3.1,3.1,3.2,3.2,3.1,3.3,3.1,3.2,3,3.2,3.4,3,3.3,4.3],"paint":[14.7,14.9,15.1,15.1,14.8,14.8,15,14.6,14.9,14.9,15,15,15.1,14.8,16.1]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"07_create10k","values":{"total":[316,314.4,316,315.2,315,315.3,315.6,314.7,316.8,314.4,315.1,314.1,317.1,315.7,315.4],"script":[85.8,85.6,85,85.5,85.3,85.4,86,85.6,86,85.3,85.4,85.7,85.2,85.1,85.3],"paint":[222.3,220.9,222.9,221.9,221.7,222.1,221.8,221.3,222.7,221,221.7,220.6,223.8,222.7,222.2]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.7,37.1,36.1,36.6,36.2,37,36.8,36.1,36.2,36.6,36.6,35.3,37.1,36.4],"script":[9.8,9.5,9.8,9.5,9.9,9.2,9.9,9.8,9.8,9.6,9.6,9.7,9.4,9.9,9.7],"paint":[25.5,25.2,26.3,25.6,25.7,26,26.1,25.9,25.3,25.6,26,25.9,25,26.2,25.7]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,15.9,17.2,17,18.3,16.5,16.6,17.6,19.8,17.7,18.3,18.2,17.3,17.3,17.1],"script":[15.7,14.3,15.1,15,16,15.4,15,15.6,17.5,15.3,16.4,15.7,15.4,15.2,14.6],"paint":[0.9,1.4,1.1,0.8,0.8,0.9,0.6,0.7,1.9,2.2,1,2.3,1,1.1,1.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6220617294311523]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7417993545532227]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7256689071655273]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9008922576904297]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.80637264251709]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4]}},{"framework":"riot-v9.4.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"01_run1k","values":{"total":[27,24.8,25.3,24.9,25,25,24.2,24.5,25,24.8,24.7,24.7,24.8,24.9,27.2],"script":[4.9,4.3,4.6,4.5,4.7,4.6,4.1,4.3,4.4,4.4,4.4,4.4,4.4,4.4,4.9],"paint":[21.8,20.1,20.4,20,19.9,20,19.6,19.8,20.2,20,19.9,19.9,20.1,20.2,21.9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11.3,10.9,11.6,11.4,10.8,11.4,11.3,11.2,11.5,11.3,11.5,10.9,11.4,11.5],"script":[1.8,2.1,1.9,1.9,1.9,1.8,2.1,1.8,2.1,1.9,1.9,1.8,1.9,2.1,2.2],"paint":[8.3,8.8,8.7,8.9,8.9,8.6,8.9,8.7,8.7,9,9,8.9,8.6,8.9,9]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.4,12.9,12.1,13.2,13.2,13.1,13.1,14.7,12.3,12.4,12.1,12.5,12.9,12.4],"script":[2,1.4,1.5,1.8,1.7,2.1,2.2,1.9,1.7,1.9,1.8,1.2,1.7,1.4,1.3],"paint":[10.2,9.4,9.9,9.1,10.5,10,9.3,9.9,12.4,9.3,8.7,9.8,9.5,10.3,9.7]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.1,3,2.5,3.2,3.3,2.7,3.1,2.5,3.2,2.4,3,3,3.3,3.4,3,2.9,3.4,2.7,3,2.7,2.5,3.2,3,2.5],"script":[0.8,0.6,0.6,0.8,1.1,0.9,0.8,0.5,0.9,0.2,0.6,1.2,0.6,0.8,1.4,0.8,0.9,0.8,0.7,1.2,0.9,0.8,0.8,1.3,0.8],"paint":[1.6,1.6,2.1,1.6,1.1,1.7,1,1.6,1,1.3,1,1.2,1.6,0.8,1.9,2.1,1.9,1.6,1.8,1.6,1.1,1.5,1.7,1.6,1.5]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.5,8.8,8.7,8.4,9.3,8.9,8.9,8.6,8.6,8.8,9.1,8.8,8.5,7.9],"script":[0.2,0.8,0.5,0.8,0.2,1.1,0.8,0.7,0.8,0.2,0.5,0.9,0.5,1.3,0.6],"paint":[7.2,6.7,7.3,5.6,7.3,7.5,7.2,7.3,6.7,7.2,6.5,7,7.1,6.3,6.1]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.3,18.7,18.8,19.3,19.2,19.8,20,19.4,18.6,18.6,19.4,19.2,18.9,19.2,18.8],"script":[3.5,3.1,3.2,3.4,3.6,3.5,3.5,3.3,3.4,3.3,3.6,3.4,3.4,3.5,3.6],"paint":[15.1,15,14.8,15,15,15.1,15.1,15.4,14.6,14.6,14.9,15.2,14.9,15.2,14.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"07_create10k","values":{"total":[273.2,271.4,273.5,273.2,269.2,269.2,272.4,274,271.5,273,272.4,272,273.3,271.2,270.3],"script":[45.6,44.7,45.3,45.9,43.9,44.1,45.2,45.9,45.7,44.8,45.3,46,45.6,45.8,44.5],"paint":[220.2,219.2,220.9,220,217.7,217.9,219.6,220.6,218.3,220.1,219.6,218.6,220.4,217.9,218.6]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.5,31.5,31.7,30.7,30.7,31.3,31.8,31.5,30.7,30.9,31.5,30.1,31.2,31.1,31.4],"script":[4.7,4.8,4.9,4.6,4.7,4.9,4.8,4.7,4.6,4.6,4.7,4.6,4.7,4.9,4.7],"paint":[25.9,25.9,26,25.3,25.3,25.7,26.3,26.1,25.3,25.5,26,24.7,25.7,25.5,25.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.6,13.7,12.8,14.3,14.8,14.7,14.1,12.2,13.6,14.7,16.6,15.6,13.8,14.3,14.4],"script":[13.3,11.6,10.6,12.6,12.3,13.1,12.2,9.5,11.2,12.5,14.2,13.9,11.3,12.4,12.4],"paint":[1.5,1.2,1.3,0.6,1.1,1,0.4,1.3,1.4,1.3,0.7,1.1,1.8,1.7,1.2]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8953609466552734]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.512033462524414]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.69873046875]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0992107391357422]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.730972290039062]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.8]}},{"framework":"san-v3.15.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"01_run1k","values":{"total":[28.8,28.5,27.8,30.5,28.1,28.3,28.3,28.5,28.3,28.2,27.4,28.4,28.3,28.4,28.2],"script":[5.5,5.5,4.9,6,5.3,5.3,5.3,5.5,5.3,5.4,4.7,5.2,5.5,5.4,5],"paint":[22.6,22.4,22.5,23.9,22.3,22.4,22.4,22.5,22.4,22.2,22.3,22.6,22.1,22.5,22.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,13.5,16,15.5,15,15.1,15.6,17.5,15.7,15.4,10.8,14.2,16.3,10.3,10.1],"script":[1.5,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.7,1.3,1.4,1.4],"paint":[8.6,8.7,8.6,8.7,8.8,8.7,8.6,8.5,8.8,8.9,8.6,9,8.5,8.8,8.6]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.3,21,12.7,21.6,23.4,21.3,21.3,21.7,10.9,23.9,12.3,11.2,11.3,11.5,13.7],"script":[1.3,0.2,1.2,0.6,0.7,1,1.7,1.2,0.3,0.9,1.8,1.3,1.4,1.3,1.4],"paint":[9.6,9.5,9.9,10.2,11.1,9.2,9.5,9.7,9.5,11,9.6,8.9,9,10.1,12.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.8,3.4,3.1,2.9,4.9,3.2,3.4,4.7,2.5,2.6,4.2,2.8,2.4,2.5,2.8,2.3,7.3,2.5,2.7,2.5,3.4,2.8,2.6,3.4],"script":[0.7,0.6,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.8,0.7,0.4,0.1,0.1,0.9],"paint":[1.9,2.1,1.3,1.7,1.5,1.4,1.1,2,2,1.6,1.7,0.8,1.6,2.2,1.9,1.6,1.3,2.3,2.2,1.2,1.6,1.6,1.9,1.6,1.9]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"05_swap1k","values":{"total":[10.5,19.1,18.3,20.4,19.7,19.3,19.4,19.2,19,19.9,18.6,7.8,18.7,17.6,7.2],"script":[1,1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[9.4,7.5,7.3,8.3,8.4,8.4,8.5,7.1,7.1,7.6,7.3,6,7,6.5,6.5]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11,10.9,10.6,11.1,10.9,11,10.9,10.5,10.8,10.8,10.9,10.5,10.9,12],"script":[0.3,0.3,0.3,0.2,0.3,0.2,0.1,0.4,0.3,0.3,0.3,0.3,0.2,0.2,0.3],"paint":[9.5,10.2,9.4,9.7,10,9.7,10.5,9.8,9.6,9.9,10,10.1,9.7,10,10.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"07_create10k","values":{"total":[295.1,292.2,291.6,292.2,292.9,292.4,293.1,290.7,293,292.9,291.9,290.5,290.6,290.9,289.7],"script":[55.8,55,56.3,55.3,56.4,56,55.9,56.4,56.5,55.9,56.4,55.8,55.6,56,55.1],"paint":[231.5,229.2,227.5,229,227.7,228.7,229.3,226.5,228.8,229.1,227.8,226.8,227.2,227.1,226.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.6,33,33,32.5,32.8,33.3,32,32.9,32.9,33.4,32.7,33,32.1,32.2],"script":[5.4,5,5.1,5,5,5.4,5.1,4.9,5.4,5.3,5.4,4.9,5.2,5,5],"paint":[26.5,26.6,26.9,27.1,26.5,26.4,27.1,26.3,26.5,26.6,27,26.9,26.8,26.2,26.4]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.9,12,11.3,11.4,11.2,11,11,11.3,11.4,12.5,11.3,12.8,11.6,11],"script":[8.3,8.9,9.7,9.1,9.2,9.2,8.6,8.4,8.9,9.4,9.6,9.1,10.3,9.1,9.1],"paint":[1.1,0.3,0.9,1.2,1.1,0.7,2.2,1.7,1.4,1.4,2.3,1,1.4,2,0.7]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9959030151367188]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.122137069702148]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.189812660217285]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2651891708374023]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.2808198928833]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[258.1]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"scarlets-frame-v0.35.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[37.1,37.5,37,37.7,37,36.9,36.8,37.2,37.6,37.2,36.6,37.4,36.9,36.9,37.2],"script":[15.3,15,15,15.1,15.2,14.9,14.9,15,15.5,15,14.8,15.4,15.2,15,15],"paint":[21.3,21.9,21.6,22,21.2,21.4,21.3,21.7,21.4,21.6,21.2,21.5,21.3,21.3,21.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.7,22.1,21.7,22.2,21.7,22.2,21.5,21.9,22.1,22.2,22.1,23.8,21.4,21.6,21.7],"script":[12.2,12.4,12.3,12.6,12.2,12.4,12.1,12.2,13,12.5,12.5,13,11.9,12.2,12.2],"paint":[9,9.2,8.9,9.1,9,9.2,8.9,9.2,8.6,9.2,9.1,10.2,9,9.1,8.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.7,52.9,52.4,52.6,53.8,53.6,55.2,55,52.1,55.1,52.7,53,52.6,53.7,53],"script":[39.9,39.8,39.2,40,40.6,40.1,42.7,41.4,41.1,41.9,40.4,40.2,40.3,41.6,40.2],"paint":[10.8,11.1,11.1,9.6,11.2,11.6,10.4,11.9,10.1,11.7,10.8,10.4,10.2,11.2,10.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[46.5,43.6,43.2,43,44.6,43,47.5,47.6,41.4,43.5,42.7,43.9,46.9,42.2,45.4,42.8,42.8,48.9,42.2,47.1,42.8,44.2,42.8,43.2,42.4],"script":[42.9,39.7,39.8,39.2,40.2,39.6,43.9,44.5,38.8,39.3,39.5,40.5,42.1,38.9,42.1,39.8,39.5,44.8,39.4,43,38.9,40.7,39.5,39.6,39.4],"paint":[1.4,1.9,1.4,2,2.2,1.7,2.5,2,1.5,2.7,2.5,1.5,3.3,2.3,1.8,2.2,0.9,1.4,1.2,2.2,2,1.4,2.6,1.6,2]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[48.8,49,48.2,49,49.8,49.1,48.9,49.8,48.8,49.7,47.9,49.5,49.4,49,52.9],"script":[38.7,38.4,38.4,39.5,38.9,39.5,39.6,39.5,38.9,39.2,38.9,39.7,39.2,39.5,42.9],"paint":[7.7,8.1,7.2,7.4,9.1,7.1,7.9,7.9,7.9,8.2,7.8,7.7,8.6,6.4,7.6]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.9,38.4,38.8,39.3,38.4,38.3,38.7,39.7,38.5,39.5,38.4,37.6,38.5,38,39.3],"script":[22.2,22.4,22.6,22.2,22.2,22.4,22.3,23.2,22.3,23.1,22,21.7,22.1,22,22.7],"paint":[15.6,14.9,15,15.9,15,14.8,15.4,15.7,15,15.3,15.4,15.1,15.4,15.3,15.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[392.7,391.3,391.4,395.2,394.2,394,392.8,395.6,394.2,390.7,391.7,395.2,392.7,390.9,388.8],"script":[171.5,169.3,171.3,171.7,174,173.2,170.9,170,172,168.9,169.4,173.1,171.5,169.2,168.6],"paint":[213.8,214.3,212.6,216.1,212.6,213.1,214.3,216.9,214.4,214.3,214.6,214.6,213.9,214.1,212.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,55.5,56.4,55.6,54.4,55.6,54.8,55.2,55,55.2,55.9,56.2,55.6,55.6,54.6],"script":[28.9,28.6,28.7,29.3,28.1,28.6,28.5,28.9,28.8,28.2,28.9,28.3,29.1,28.7,28.3],"paint":[25.7,26,26.8,25.4,25.3,25.9,25.3,25.5,25.4,26.1,26.1,27.1,25.7,26.1,25.5]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.7,22.8,23.2,23,23.2,23.8,22.2,24.4,21.1,21.9,24.6,23,23.4,23.3,24.7],"script":[20.7,21,20.8,20.7,21.2,21.6,20.2,22.4,19.6,20.4,22.9,20.6,21,21.1,22.6],"paint":[0.3,1,1.3,2,0.8,1.4,0.9,0.3,0.3,1.4,0.3,0.9,1.2,1,0.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.8838872909545898]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.976861000061035]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.282492637634277]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.943842887878418]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.05252742767334]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.8]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[128]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[565.4]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"01_run1k","values":{"total":[26,26.1,26.4,26.3,26.3,26.6,26.1,26.1,25.7,25.9,26.3,26,26.3,26.4,26.3],"script":[4.1,4.1,4.2,4.3,4.2,4.1,4.2,4.3,4.1,4,4.1,4.1,4.2,4.4,4.2],"paint":[21.5,21.6,21.9,21.6,21.7,22.2,21.6,21.4,21.3,21.5,21.8,21.5,21.6,21.6,21.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[12.6,12.5,12.1,12.4,12.7,12.2,12.6,12.4,12.3,12.4,12.2,12.3,12.3,12.2,12.5],"script":[3.5,3.6,3.5,3.4,3.6,3.5,3.7,3.6,3.5,3.5,3.5,3.5,3.6,3.5,3.5],"paint":[8.7,8.6,8.3,8.6,8.8,8.4,8.5,8.5,8.5,8.6,8.3,8.5,8.4,8.4,8.6]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.4,22.9,23.7,23,22.6,22.7,22.9,23.3,22.9,23,22.7,23.5,22.6,22.7,22.9],"script":[10.5,10.2,10.9,10.8,10.7,10.8,11,11.1,10.4,10.8,10.3,11.1,10.5,10.4,10.7],"paint":[10.8,10.7,10.3,10.4,9.9,10.1,9.9,10.7,10.1,9.5,9.6,10.2,9.8,10,9.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.1,13,11.9,12.1,12.3,12,12.5,12.7,12.4,13.1,11.6,12.1,12.1,11.7,12.7,11.6,12.1,12,12.6,12.1,12,12.7,12.5],"script":[8.8,9.1,8.6,10.2,8.9,9.5,9.1,8.9,8.9,9.5,9.3,9.9,8.5,9.1,9.2,9.2,9.4,9.3,8.9,9.2,9.3,9.4,9.1,9.4,9.5],"paint":[3,1.3,2.3,1.1,1.6,1.9,2.4,2.1,1.7,2.2,2.3,2.3,1.3,1.1,1.7,1.1,2,1.4,1.9,1,2,1.1,1.5,2.1,1.5]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[20.2,19.4,20,20.2,21.1,21.2,20.5,20.6,20.6,20.1,20.4,19.9,20.4,19.6,20.6],"script":[10.7,10.3,10.9,10.5,10.9,11.3,10.4,10.5,10.5,10.3,10,10.4,10.6,10.4,10.7],"paint":[7.5,7.3,6.9,8.1,8.2,8,8,8,9,7.9,7.9,7.5,8,6.9,7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.7,21,21.9,22,22.2,21.7,21.8,22.5,22.8,22.5,22.5,22,21.6,22.1,22.3],"script":[6.1,6.2,6.4,6.6,6.4,6.2,6.6,6.6,6.4,6.6,6.7,6.4,6.4,6.2,6.6],"paint":[14.7,13.7,14.2,14.2,14.4,14.1,14.3,14.4,15.2,14.8,15,14.5,13.9,14.7,14.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"07_create10k","values":{"total":[281.6,277.6,276.5,275.8,277.6,278,277.1,277.6,278.3,275.9,277,277.9,278.3,277.2,278.3],"script":[48.8,48.1,47.3,48,47.7,47.5,48.6,48.1,47.8,47.3,48.2,47.5,48,47.8,48.3],"paint":[225.5,222.1,221.8,220.5,222.6,223,221.4,222.2,222.6,221.2,221.3,223.1,223,222,222.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35,34.3,34.1,34.6,34,34.4,34.4,35,33.7,34.5,35.5,34.7,34.9,34.5],"script":[8.1,7.4,7.1,7.3,7.4,7.4,7.4,7.5,7.5,7.3,7.5,8.1,7.3,7.4,7.4],"paint":[26.3,26.6,26.2,25.8,26.1,25.6,26,25.9,26.5,25.5,26.1,26.5,26.4,26.5,26.1]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.9,9.4,8.3,9.1,9.6,9.3,9.8,9.2,9.9,10.9,9.6,9.2,8.9,9.5],"script":[7.6,7.2,7.4,7.1,7.4,7.7,7.4,7.5,7.1,8.1,9,7.6,7.5,7.4,7.6],"paint":[0.3,1,1.7,0.3,0.6,0.6,0.6,1.7,1.1,0.6,1,0.5,0.7,0.2,1.7]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5232305526733398]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9907760620117188]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1786909103393555]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6416788101196289]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.223931312561035]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3.3]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.2]}},{"framework":"skruv-liten-v0.0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[24,23.9,23.3,23.9,24.2,23.5,23.5,23.7,24.2,23.5,23.7,23.5,23.9,23.6,23.4],"script":[1.2,1.2,1.2,1.2,1.5,1.3,1.2,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[22.3,22.3,21.6,22.2,22.3,21.9,21.9,22,22.5,21.8,22.1,21.9,22.3,21.9,21.8]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[10.1,10,10.1,10.6,10.2,10.4,10,10.5,10.6,10.6,10.5,10,10,10.7,10.3],"script":[1.1,1,1,1,1,1.1,1,1.2,1.2,1.1,1.2,1.1,1.1,1.2,1.1],"paint":[8.7,8.6,8.7,9.2,8.8,8.9,8.7,8.9,9,9,8.9,8.6,8.6,9.1,8.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.1,12.2,13.1,14.4,12.2,12.3,13.7,11.4,12.4,11.6,13,12.5,12.6,12.5],"script":[1.7,1,0.7,1.6,2,0.7,0.7,1.2,1,1.3,1,1.4,1.5,1.6,1.2],"paint":[10.2,9.6,9.5,9.7,11.1,10.7,10.4,11.3,9.5,9.7,10,10.6,9,10,10.1]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[5.6,3.5,3.4,3.7,3.9,2.9,3.2,3.4,3.1,3.1,3.6,3.5,3.1,3.4,3.2,3.3,3.4,3,3.6,3.2,3.7,3.4,3.2,3.4,3.6],"script":[0.9,1.3,1,1.4,1.7,1,1.2,0.7,1,1.1,1,1.2,1,1.3,1.2,0.7,1.6,1.1,0.9,0.8,1,1.2,1.3,0.6,1.1],"paint":[1.8,1.4,1.5,1.1,2.1,1.1,1.8,2.6,1.4,1.6,2.5,1.4,1.9,2,1.1,2.5,1.6,1,0.8,2.2,2.6,1.9,1.2,1.8,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[8.8,7.9,8.8,10,8.2,8.5,9.2,8.5,8.4,8,9.5,8.6,8.6,8.8,8.9],"script":[0.1,0.1,0.1,1,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.1,0.1,0.8,0.1],"paint":[6.9,6.8,7.2,7.5,7,7.4,7.1,7.1,7.6,7,7.8,6.9,6.8,6.4,7.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.8,17,16.8,16.8,16.7,17.4,16.9,17.1,17.1,17.3,16.5,17.5,16.9,17.4],"script":[1.9,1.8,1.8,1.8,1.8,1.8,2,1.9,1.9,1.8,2,1.8,2.3,1.8,1.8],"paint":[14.6,14.4,14.4,14.3,14.2,13.9,14.8,14.5,14.6,14.6,14.5,13.8,14.5,14.4,14.7]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[362.7,359.5,360.8,361.9,362.2,361.5,362.2,362.4,363,361.1,361,361.2,362.6,367.9,362.5],"script":[130.4,130.1,129.8,131.2,132.5,130.8,131.4,131.2,131.3,131.2,130.6,130.3,132.1,131.7,131.1],"paint":[224.2,221.6,223.2,222.8,221.9,222.9,223,223.2,223.8,222.1,222.7,222.9,222.8,226.8,223.6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.9,42.1,42,42.3,41.8,42.7,41.9,42.6,42.6,41.9,42.3,41.8,42.6,42.4,41.6],"script":[14.6,14.6,14.7,14.5,14.6,15.2,14.7,15,15.2,14.5,14.7,14.5,15.1,15.1,14.9],"paint":[26.2,26.5,26.5,26.8,26.2,26.7,26.4,26.6,26.4,26.4,26.6,26.3,26.7,26.3,25.9]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.5,10.7,11,11.5,11.5,11.5,10.7,9.9,11.9,12.7,10.6,10.1,10.3,11.1],"script":[8.5,8.5,9.1,9.3,9.4,9.1,9.3,9.1,7.8,10,10.4,9.2,9,8.7,8.8],"paint":[0.9,1.9,0.7,0.3,0.7,1.3,0.9,1.3,1.9,1.9,1.3,1.1,1,0.3,1.5]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6444692611694336]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.960765838623047]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9702701568603516]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.9423599243164062]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.51907539367676]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"01_run1k","values":{"total":[43,42.7,42.8,42.9,42.9,42.4,43.7,42.5,43.8,42.7,43.5,42.4,42.7,42.9,42.4],"script":[18.9,18.4,18.5,18.6,18.6,18.3,19.3,18.1,19.4,18.7,19.4,18.3,18.6,18.6,18.4],"paint":[23.6,23.7,23.8,23.8,23.6,23.5,23.8,23.8,23.8,23.5,23.6,23.7,23.7,23.8,23.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.4,16.7,16.8,16.5,18.1,16.4,16.8,16.8,16.1,16.6,16.1,16,16.4,16.7,16.3],"script":[4.9,5.5,5,5,5.4,5.1,5.3,5.2,5,5,5.1,5,5.2,5.3,5],"paint":[11,10.6,10.9,10.7,11.9,10.7,10.8,10.8,10.6,10.8,10.6,10.5,10.6,10.8,10.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.5,13.7,15,14.2,14.6,16.1,15.8,15.9,15.9,14.9,15.3,14.2,15.7,13.6],"script":[1.4,1.8,1.8,1.5,1.5,1,2.1,1.7,2.1,1.8,1.4,1.8,1.5,2.2,1.8],"paint":[11,10.3,10.3,12.9,11.1,12.6,12.2,12.3,11.7,11.4,11.6,10.9,11.2,11.9,10.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.7,8.4,7.9,7.5,7.2,7.7,7.4,8.3,8.1,7.7,7.3,7.4,7.7,8.4,7.1,8.6,7.1,8.5,7.6,8.4,7.7,7.6,7.8,7,7.3],"script":[4.6,5,4.7,4.5,5,4.2,4.7,4.7,4.9,4.9,4.5,4.4,4.8,5.1,5,5.2,4.2,5.1,5.1,5.1,4.7,4.5,5.4,4.4,4.2],"paint":[1.3,1.6,1.9,1.1,1.1,2.9,1.7,3.3,2.6,1.9,1.6,2,2.2,1.1,1.4,2.7,2,2.4,1.6,1.6,2.1,1.6,1.8,2.4,1.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"05_swap1k","values":{"total":[10.8,9.8,11.7,10,11,11.3,10.7,9.5,10.9,10.3,10.2,11.4,9.6,11.1,11.6],"script":[0.4,1,1,0.1,0.1,0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.8],"paint":[9.2,7.2,8.8,8.1,9.6,10.2,9,7.3,10.2,8.3,9.2,9.1,8.5,9.9,8.9]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.3,23.8,23.5,23.5,23.7,23.5,23.3,24.1,23.3,23.5,23.1,23,23.4,22.4,23.1],"script":[6.1,6,5.8,6,6,6,5.7,6,6.1,5.7,5.8,5.7,6,5.8,6],"paint":[17,16.6,16.7,16.8,16.7,16.6,16.6,16.9,16.1,17,16.2,16.4,16.7,15.6,16.5]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.6,443,437.4,441.2,440.5,438.2,446.7,441.7,439.2,443.9,441.6,444,444,444.7,445.6],"script":[186.5,186.2,186.9,189.1,189.3,187.7,190.1,190.6,188,187.4,190.1,188.7,188.8,189.5,188.7],"paint":[241.9,246.9,240.7,241.9,241.2,240.7,247,240.9,241.5,246.4,241.7,245.4,245.4,245.5,246.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50,49.4,48.4,48.3,49,49.5,49.2,49.1,49.3,49,49.1,49.3,49.1,49.3,48.9],"script":[20,18.8,18.7,19,18.9,19.6,19.3,19,19.6,19.3,18.9,19.3,18.8,19.3,19.9],"paint":[28.8,29.4,28.4,28.2,28.9,28.8,28.7,28.9,28.6,28.6,29,28.9,29,28.9,28]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.2,22.2,23.4,22.7,23.3,25.3,22.4,24,23.8,22.5,25.4,24.2,22.5,24.3,24.6],"script":[21.4,20.4,21.9,21,21.7,23.3,21.3,22.2,21.8,21.3,23.1,21.7,20.8,21.9,23.3],"paint":[0.5,0.4,1.4,1.5,0.6,1.9,1,0.9,1.7,1.1,2,2.2,1,1.6,0.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6174411773681641]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.251507759094238]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.246901512145996]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.915827751159668]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[85.78846454620361]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.6]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"sprae-v11.5.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[31.5,30.4,30.8,31,31,30,30.5,30.2,30.3,30.3,31.2,30.5,30.2,30.5,30.3],"script":[8.9,8.3,8.3,8.5,8.6,8,8.2,8.1,8.2,8.2,8.8,8.1,8.1,8.4,8.1],"paint":[22,21.5,21.9,22,21.8,21.4,21.7,21.5,21.6,21.5,21.8,21.8,21.5,21.5,21.6]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[12.3,12.3,12.2,12.3,12.5,12.1,12.2,12.1,12,12.2,12.2,12.1,12,12.4,12],"script":[2.9,3,3.1,2.9,2.9,3,3,2.9,2.9,2.9,2.9,2.9,2.9,3.2,3],"paint":[9,8.9,8.8,9,9.2,8.8,8.8,8.8,8.8,9,8.9,8.8,8.8,8.9,8.7]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,12.3,11.5,12.4,11.3,12.1,12.1,12.1,12.8,12.7,12,12.1,12.4,11.6,11.3],"script":[1.4,1.9,1.8,1.6,1.7,2,1.7,1.6,2.3,2.4,1.5,2.4,2,1.7,1.3],"paint":[8.2,9.2,8.8,9.8,8.6,8.8,9.1,9.5,9.9,9.1,9.3,8.2,9,9,8.5]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.1,4,3.7,4,4.4,3.8,4.2,4.7,3.9,4.5,4,3.9,4.6,3.9,3.7,4.8,4.3,4,4,4,4.1,3.9,4],"script":[1.8,2.1,3,1.8,1.9,2.2,2.3,2.2,2.3,2.1,2.2,2.5,1.8,1.6,2.2,2.4,1.9,2.4,2.4,1.8,1.9,2.2,1.8,1.5,1.6],"paint":[2.2,1.3,1.3,1.5,1.7,1.4,1.4,1.4,1.1,2.1,1.5,1.8,1.6,1.8,2.3,1,1.1,1.4,1.1,2,2,1.3,2.2,1.2,1.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[9.9,9.5,10,9.7,9.3,9.3,9.7,9.7,9.3,9.9,9.9,10.1,9.6,9.5,9.7],"script":[1.8,1.6,1.8,1.8,1.7,1.7,2,1.8,1.5,2.3,1.7,1.6,1.4,1.6,1.6],"paint":[6.9,5.9,5.5,7.1,6.8,6.6,5.8,6.8,6.8,6.2,6.9,7.4,7,6.9,6.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.4,21.8,22.5,22.2,22.4,22,22.7,22,22.1,22.2,23.3,22.4,23.3,22.1,22.2],"script":[5.5,5.4,5.5,5.3,5.5,5.5,5.5,5.5,5.7,5.4,5.5,5.5,5.7,5.5,5.5],"paint":[16.1,15.4,16.1,15.7,15.7,15.5,15.7,15.6,15.3,15.6,16.9,16,16.4,15.5,15.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[295.9,293.9,293.3,297.2,291.6,293,292.6,293.8,291,295.1,293.8,292.2,294,296.8,293.2],"script":[58.3,57.4,57.2,56.4,57.8,57.2,57.2,57.2,57.3,59,58.2,57.6,57.9,56.7,57.9],"paint":[230.3,229.3,228.8,233.3,226.6,228.4,228.1,229.3,226.4,228.7,228.3,227.3,228.7,230.8,228]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.9,32.8,32.5,32.4,32.3,32.9,32.8,32.5,33.5,33.6,32.6,32.8,33.6,32.9,32.6],"script":[5.9,5.8,5.8,5.7,5.8,5.8,6,5.9,5.9,6.1,5.9,5.8,6.1,5.8,5.9],"paint":[26,26.1,25.7,25.8,25.5,26.1,25.8,25.7,26.6,26.5,25.8,26.1,26.5,26.2,25.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.4,13.7,14.7,14,15.4,13.6,13.7,13,13.3,15.9,14.2,14.3,13.5,14.3],"script":[11.7,11.9,11,12.8,11.5,13.8,11.8,11.5,11,11.7,13.6,12,12.4,11.7,12.3],"paint":[1,0.6,1.6,0.6,1.6,0.7,0.5,0.8,0.3,0.3,1.2,1.5,1,0.9,0.8]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7378768920898438]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2272682189941406]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.298114776611328]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.275012969970703]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.61553955078125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.8]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.8,25,25.1,24.4,24.8,24.5,24.1,24.5,24.8,24.9,24.6,24.6,24.6,24.6],"script":[3.1,3,3.1,3.1,3.1,3.1,3,2.9,3,3.1,3.1,3.1,3,3,3.1],"paint":[21.1,21.4,21.6,21.6,21,21.4,21.1,20.8,21.1,21.4,21.4,21.2,21.2,21.2,21.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"02_replace1k","values":{"total":[9.7,10.2,9.9,9.8,9.6,9.6,10.2,9.6,9.8,9.8,9.9,9.9,9.8,9.9,9.8],"script":[0.9,1.1,0.9,1,0.8,0.9,0.9,0.9,0.9,1,0.9,1,0.9,0.9,0.8],"paint":[8.5,8.7,8.7,8.4,8.4,8.4,8.9,8.4,8.5,8.5,8.6,8.6,8.6,8.7,8.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.8,11.2,11.6,11.3,11.8,11.8,11.4,12.1,11.9,12.7,10.8,11.6,13.4,11.9],"script":[1.7,1,1,1.8,1.4,1.6,1.6,1.6,1.6,1.8,2.4,1.6,1.2,0.9,1.7],"paint":[8.8,8.9,8.3,8.9,7.9,8.9,9.3,8.8,9.4,8.5,8.4,8.3,9.2,9.6,9.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.2,2.9,3.1,3.2,2.5,3.3,3.3,3.4,2.4,3,3.4,2.9,2.7,2.9,3.3,3.4,2.6,2.9,2.7,2.5,2.9,3,3.7,4.1],"script":[1.1,1.1,0.8,0.8,0.9,1,0.9,0.9,1,0.3,1,1.4,0.2,1,1,1.1,1.1,1,0.6,1.2,0.6,0.2,0.2,0.9,1.2],"paint":[2.2,2,2,1.2,1.4,1,2.2,2.3,1.8,2,1.1,1.1,1.3,1.6,0.9,2.2,1.6,1.1,2,1.4,1,2.5,2.7,2.6,1.7]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"05_swap1k","values":{"total":[10.7,10.2,9.4,9.6,9.6,9.9,9.5,10.1,10.4,8.9,9.7,9.5,9.4,9,10],"script":[2.1,1.4,1.3,1.5,1.6,1.7,1.5,1.8,1,1.1,1.9,1.8,1.7,1.1,1.3],"paint":[7.3,7.6,6.6,7.1,6.1,7,6.8,6.7,7.4,6.7,5.9,6.2,6.1,6.8,6.6]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17,16.7,16.5,16.3,17,15.6,16.3,16.1,16.3,16.5,16.2,16.1,16.8,16.8,16.6],"script":[1.6,1.9,1.4,1.7,1.8,1.6,1.3,1.4,1.5,1.5,1.5,1.2,2,1.9,1.9],"paint":[14.7,14.2,14.5,14,14.3,13.4,14.4,14,14.1,14.4,13.8,14.3,13.8,14.2,14.1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"07_create10k","values":{"total":[267.4,269.7,269.6,268.3,269.7,266.2,269.4,269.5,270,268.1,267.4,268.5,268.4,271,269.2],"script":[37.3,37.7,38.8,37.7,37.6,37.1,37.8,37.7,37.5,37.2,37.8,37.4,37.8,37.1,37.6],"paint":[222.9,224.4,223.6,223.3,224.8,221.7,224.2,224.6,224.7,223.8,222.4,223.8,223.2,226.6,224.4]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.9,29.9,29.4,29.3,28.5,30,29.3,29.5,29.2,29.1,29.8,28.9,30.7,29.6],"script":[3.5,3.4,3.7,3.6,3.6,3.5,3.7,3.7,3.4,3.5,3.5,3.7,3.5,3.6,3.6],"paint":[24.7,24.8,25.5,25,24.9,24.3,25.5,24.9,25.3,24.9,24.9,25.4,24.7,26.2,25.2]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.7,11,10.6,10.8,10,11,9.9,10.8,11,10.9,12.4,10,11.8,10],"script":[8.9,9.1,9,8.2,8.9,8.1,8.7,8.6,8.9,9.2,9.1,9.6,8.7,9.2,8.2],"paint":[0.3,0.2,1.1,1.8,1.2,0.5,1.3,0.4,0.7,0.7,1,1,0.7,0.8,1]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6167697906494141]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.908583641052246]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.976996421813965]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4535770416259766]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580761909484863]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3]}},{"framework":"svelte-classic-v5.13.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[27.4,27.3,27.7,27.6,27.9,27.8,27.8,27.2,27.9,27.8,27.8,27.6,27.3,27.2,27.6],"script":[5.3,5.2,5.7,5.9,6,6.3,6,5.7,5.9,5.9,6.2,5.6,5.6,5.6,5.9],"paint":[21.5,21.5,21.4,21.1,21.4,21,21.2,20.9,21.4,21.3,21,21.5,21.2,21,21.1]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[13.1,13.2,13.4,13.3,13,12.9,12.8,13.3,13,13,12.9,13.3,12.7,13.3,13.1],"script":[3.8,3.7,4.1,4,3.7,3.7,3.7,4,3.7,3.8,3.8,4.1,3.7,3.9,3.8],"paint":[8.9,9,9,9,8.9,8.8,8.8,9,8.9,8.9,8.7,8.8,8.7,9,8.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,14.5,9.8,11.2,10.6,9.7,10.4,10.9,10.4,10.7,10.6,10.9,12.2,10.1,10.7],"script":[0.6,1.1,0.6,0.7,0.7,0.2,0.9,1.2,0.2,0.9,0.9,0.8,1.2,0.5,0.9],"paint":[9.2,12.2,8.3,8.8,9,8.9,8.5,8.8,7.9,8.5,8.7,9,9.5,8.4,8.2]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.4,2.2,2.3,2.3,2.6,2.3,2.2,2.5,2.1,2.4,2.3,2.4,2.6,2.2,2.2,2.8,2.4,2.3,2.3,2.4,2,2.3,2.2,2.1],"script":[0,0.8,0,0.1,0.3,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0],"paint":[2.1,1,2,1.1,1.1,2.1,1.5,1.3,2.1,1.6,1.4,1.3,2.2,1.8,2,1.1,1.3,2.2,1.2,0.8,1.8,1.3,1.9,2,1.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.5,17.1,16.3,16.6,16.9,16.1,16.5,16.5,16.9,17.2,16.1,16.6,16.2,16.5,16.3],"script":[6.6,7.6,7,6.1,7.1,6.1,7.2,6.6,6.7,6.6,6.8,7.5,6.8,7.4,6.2],"paint":[7.4,8,7.3,8.5,8,7.5,7,7.5,8.5,7.7,7.6,7,7.3,7.7,8.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.1,23.1,23,22.5,22.5,22.3,21.8,23,21.5,22,22.2,22.9,22.4,22.4,22.4],"script":[6.5,6.5,6.7,6.1,6.1,5.8,5.6,6.7,5.7,5.8,5.9,6.1,6.4,5.9,6.3],"paint":[15.3,15.5,15.3,15.5,15.6,15.4,15,15.2,14.7,15.2,15.5,15.6,15.1,15.4,15]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[285.6,288.7,287.1,289.5,287.2,291.6,288.2,288.3,289.4,288.8,288.1,289.6,288.2,289.5,292.8],"script":[55.4,56.2,55.7,56.8,55.5,56.7,56.2,56.4,56.2,56.1,56.4,55.7,56.6,55.9,56.1],"paint":[222.5,224.7,223.7,224.7,224,226.9,224.2,224,225.4,224.7,223.5,225.9,223.8,225.6,228.8]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.5,33.9,34.2,34.1,34.3,34.1,34.9,34.8,34.4,35,34.9,35,34.8,34.8,34.2],"script":[7.6,7.2,7.6,7.7,7.6,7.6,7.6,8,7.7,7.8,7.6,7.7,7.7,7.9,7.8],"paint":[25.9,25.7,25.6,25.3,25.6,25.6,26.2,25.7,25.8,26.2,26.3,26.3,26,25.9,25.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.6,10.2,11.1,11.1,9.6,11.5,10.3,10.7,10.4,11,10.7,10.7,10,10.6],"script":[8.8,8.8,7.9,8.8,8.7,7.7,9.6,8.3,8.8,8.5,8.9,8.9,8.3,8.4,9.1],"paint":[0.7,0.6,1.5,1.3,1.5,0.9,0.3,1.4,0.2,0.9,0.5,0.9,1.4,0.3,0.6]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6071262359619141]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.768472671508789]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7811479568481445]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7974891662597656]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.545183181762695]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.2]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.5,27.9,27.6,27.9,27.1,27,27.4,27.9,27.5,27.1,27.2,27.4,27.1,28],"script":[5,5,5,5.1,5.1,4.9,5,5,5,5.1,4.8,4.8,4.9,4.9,5.1],"paint":[22.1,21.9,22.5,22,22.2,21.8,21.6,22,22.3,21.9,21.9,22,22,21.8,22.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[12.2,12.4,12,11.3,11.8,12.1,11.6,11.7,11.9,11.5,11.8,12,11.4,11.6,11.9],"script":[2.1,2.2,2.2,1.9,1.9,1.9,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[9.7,9.8,9.4,9.1,9.5,9.7,9.4,9.3,9.6,9.2,9.5,9.7,9.2,9.4,9.6]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,12.6,13.1,12.7,12.2,11.8,12.1,12.8,13.3,12.5,13.4,12.5,14.4,12.6,12.1],"script":[1.8,1.4,1.9,1.8,1.2,0.9,0.9,0.9,1,1.3,1.9,1.3,2.7,1.6,1.4],"paint":[11.4,10.2,9.6,9.1,9.3,9.8,10,10.6,11.2,10.5,10.5,10.5,10.2,9.5,9.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,2.6,1.7,2.5,2,2,2.2,2.1,2.6,2.1,1.6,2.5,2.4,2.2,2.6,2.1,2.7,2.4,2.3,2.5,2.2,2.4,2.4],"script":[0,0,0,0,0,0,0,0.1,0.3,0,0,0,0,0,0,0,0.5,0,0,0,0.4,0,0,0.4,0],"paint":[1.7,0.9,0.9,1.9,1,2.3,1.1,1.7,1.1,1.6,2.4,1.9,0.7,1.7,1.4,2,1.5,1.8,1.7,2.2,1.8,1.1,2,1.9,1.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,9.1,8.9,9.1,9.9,9.6,11.5,9.7,9.1,10,10,9,9.2,9],"script":[0.2,1.3,0.6,0.7,0.9,0.8,0.9,0.9,0.8,0.5,1.6,0.9,1,1.1,0.5],"paint":[7.5,7.7,6.5,7.1,6.9,7.5,7,9.5,7.8,7.7,7.1,7.3,6.4,6.9,7.3]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.6,10.4,10.6,10.6,10.9,10.8,11,10.8,10.9,10.3,10.7,10.4],"script":[0.3,0.3,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1],"paint":[9.1,9.9,9.4,10,9.6,9.6,10.2,9.9,10.2,10.1,9.9,10.3,9,10.2,9.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[288.4,288.5,288.8,287.8,289.1,287.3,289.1,287.9,288.3,289.5,288.3,290,287.4,290.9,288.9],"script":[53.4,54.2,54.1,53.9,55,53.5,54.3,54.6,54.4,54.7,53.6,54.3,53.9,55.1,54.8],"paint":[226.7,225.7,226.4,225.6,225.9,225.5,226.4,225.1,225.8,226.5,226.5,227.6,225.3,227.1,225.8]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,34.5,33,33,33.9,34.4,33.2,33.4,33.2,33.1,34.1,33.2,33.6,33.5,33.4],"script":[6.1,6.2,5.9,6,6.6,6.6,6,6,6,6,6.1,6,6,6,6],"paint":[26.4,27.3,26.1,26,26.2,26.8,26.2,26.4,26.1,26.1,26.9,26.2,26.6,26.5,26.4]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.9,10.4,11,10.8,11.7,10.9,11,10.4,11,11.7,11.4,11.1,11.8,11],"script":[8.9,9.1,8.8,9.7,9.4,9.8,8.6,9.5,8.9,9.7,9.9,9.2,9.3,9.6,9.1],"paint":[0.4,1.1,0.7,0.3,0.2,0.3,1,0.2,0.9,0.3,0.3,1.1,0.8,1,0.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6553411483764648]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6277685165405273]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6073875427246094]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7939624786376953]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.214959144592285]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"01_run1k","values":{"total":[27.5,33.5,35.7,34,33.6,35.1,32.8,33.4,33,33.8,32.9,27.1,32.9,27.1,34.5],"script":[4.5,5,4.9,5,4.9,4.9,5,5,5,5,5,4.7,5,4.7,5],"paint":[21.8,21.7,21.8,21.9,22,21.7,22,22.1,21.9,21.8,21.4,22.2,21.8,22.1,21.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"02_replace1k","values":{"total":[10.8,14.2,11.2,12.1,16,17.7,15.1,11,12.7,10.7,14.2,10.7,11.5,16.3,12],"script":[1.7,1.5,1.5,1.8,1.5,1.5,1.5,1.5,1.7,1.7,1.6,1.7,1.6,1.7,1.5],"paint":[8.9,8.7,8.8,9.2,8.6,8.6,9,8.8,9.1,8.9,8.7,8.9,8.8,9.1,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.9,13.1,13.8,13.1,29.7,12.2,13.7,12.4,12.7,13.1,12.6,14.4,13.3,13.9],"script":[2.2,3.2,2.4,3.4,2.6,3.1,2.3,3.1,2.1,2.8,2.4,2.9,3.8,2.3,2.6],"paint":[10.9,8.7,9,9.4,9.3,10,9.2,10.5,9.4,9.3,10.6,9.6,10.5,10.2,10]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"04_select1k","values":{"total":[6,4.2,4.9,4.6,4.3,4.8,3.6,4.6,4.3,4.6,4.5,4.6,5.4,4.5,4.8,4.9,4.5,4.8,4,4.6,5.1,4.7,3.8,4.6,4.4],"script":[3.6,1.9,2.4,2.2,2.1,2.3,1.4,1.9,1.6,1.4,1.2,1.4,2.8,2.2,1.4,2.6,1.5,2.4,1.5,1.6,2.6,1.8,1.8,2.4,2.2],"paint":[1.7,2.3,1.6,1.7,2,1.3,2,2.6,2,2.3,2.3,1.2,2.4,1.3,2.5,1.6,1.7,2.3,2.4,2.3,2.1,2.8,1.1,2,2]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"05_swap1k","values":{"total":[9.3,9.4,9.7,10.3,9.4,10.4,10.3,9.3,9.7,10.2,27.7,26.9,9.3,9.3,9.3],"script":[2.2,1.5,1.5,2.5,2.2,2,2.9,1.7,1.7,1.6,2.8,2.1,2.2,1.2,2.4],"paint":[7,7.6,7.3,7.3,7.1,8.3,7.3,6.3,7.9,7.8,8.4,8.4,7,7.4,6.4]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.4,17.7,17.9,17.2,17.7,17.3,17.7,17.4,22,17.3,17.4,17.7,19.2,19.4],"script":[2.5,2.7,2.7,2.7,2.5,2.7,2.5,2.5,2.7,2.9,2.6,2.4,2.6,2.4,2.6],"paint":[14.5,14.5,14.6,14.6,14.5,14.8,14.6,14.8,14.2,15.8,14.2,14.9,14.9,14.5,14.8]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"07_create10k","values":{"total":[282.5,282.3,280.4,280.6,280.2,280.6,284,280.9,282,281.4,281.1,280.8,282.1,279.1,282.7],"script":[44.9,45.8,45.8,46.4,45.2,46.1,46.4,45.8,45.5,45,45.5,45.6,46.1,46.1,45.8],"paint":[227.2,225.5,225.7,224.9,225.2,225.6,226.4,225.1,225.9,225.2,225.3,225.4,226.3,223.6,226.9]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,31.3,41,40.4,31.7,39.3,39,30.3,38.9,41.2,38.8,40.7,39.1,40.4,38.6],"script":[4.6,5,4.7,4.9,4.9,4.7,4.8,4.6,4.7,4.8,4.6,4.8,4.6,4.8,4.4],"paint":[25.4,25.6,25.4,24.8,26.3,24.5,24.3,25.3,24.5,25.7,24.4,25,24.8,25,24.5]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,28.6,27.8,28,11.8,11.8,11.7,29.6,11.7,28.2,29.3,28,13.5,27.1,27.8],"script":[9.7,10.5,9.9,9.8,9.8,9.6,9.5,11.2,9.7,10.4,10.9,9.7,10.1,9.7,10.3],"paint":[0.9,1.4,2.3,1.3,1,1.5,1.5,1.3,0.7,1.4,1.6,1.2,1.7,0.8,0.7]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8985929489135742]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1742172241210938]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1948862075805664]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1344852447509766]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.721461296081543]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[95.8]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.2,23.1,23.5,23,23.2,24.1,23,23.3,23.2,22.9,23.2,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.5,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.4,21.3,21.4,21.5,21.4,21.8,21.4,21.5,22.3,21.4,21.6,21.5,21.3,21.5,21.4]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,10.7,10.6,10.7,10.6,10.4,10.7,11,10.7,10.5,10.7,10.7,10.7,10.5,10.7],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.4],"paint":[8.8,9.1,9,9,9,8.9,9,9.3,9.1,8.9,9,9.1,9,8.9,9]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.3,11,10.4,10.1,10.1,10.1,10.4,11.1,11,10.9,10.7,10.6,9.8],"script":[0.9,0.5,0.1,1,0.1,0.5,0.5,0.1,0.6,0.9,1.2,0.6,0.1,0.1,0.4],"paint":[8.4,9.7,9,8.8,9.3,8.7,8.7,8.9,8.8,9.6,7.6,9.4,9.7,9.6,8.4]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[1.9,2.2,1.7,3.3,2.9,2.3,2.1,2.7,2.2,2.2,1.9,2.4,2.3,2.1,2.5,3.2,2.7,2.7,2.1,2,1.8,2.3,3.3,2.8,2.7],"script":[0,0,0,0,0.1,0.4,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.3,0,0,0,0,0.7],"paint":[1.1,1.1,1,2.2,1.7,1.8,2,1.8,1.2,2,1.5,1.5,2.1,1.8,1.5,2.3,2.1,1.7,2,1.7,1,1.6,1.7,1.7,1.8]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[7.7,8.1,8.3,8.1,7.8,9.1,8.3,8,8,8.1,8.3,8.5,8.4,8.2,8.9],"script":[0.5,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.6,0.1,0.1,0.9],"paint":[6.2,6,7,7.4,6.5,8,7,6.3,6.9,6.7,6.1,6.5,7.4,7.1,7.3]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.3,18,18.7,18,18.5,18.5,18.3,18.2,18.2,18,18.2,18.3,18.5,18,18.3],"script":[2.4,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.3,2.5,2.4,2.4,3.1,2.4,2.5],"paint":[15.2,14.9,15.4,14.9,15.2,15.3,15.2,14.9,15.1,14.9,14.8,15.2,14.8,15,15.1]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,247,246.1,245.8,246,244.7,246,246.3,245.5,245.3,246,245.3,247.4,245.6,244.6],"script":[14.5,14.8,14.9,14.6,14.4,14.6,14.5,14.7,14.7,14.5,14.6,14.4,14.6,14.9,14.8],"paint":[223.5,225,224,224.2,224.4,223,224.4,224.5,223.7,223.7,224.3,223.7,225.7,223.6,222.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,26.8,26.9,26.8,28.5,26.7,26.8,26.7,26.7,27,26.5,27,26.6,26.9,26.8],"script":[1.3,1.4,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3],"paint":[24.4,24.6,24.8,24.8,26.2,24.7,24.8,24.7,24.7,25,24.5,25,24.6,24.8,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9.1,9.6,9.4,10.5,9.6,9.3,9.9,10.2,9.8,9.2,9.6,9.2,9.7,9.4],"script":[6.6,7.5,7.3,7.2,7.6,7.2,7.6,7.9,7.4,7.8,7.8,7.6,7.8,7.8,7.4],"paint":[1,1.1,2.1,1.1,1.8,0.9,1.2,0.6,1.9,1.7,0.2,0.3,0.8,1,1.2]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4622774124145508]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8840656280517578]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9048471450805664]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6061086654663086]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.997834205627441]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[23,23.1,23.2,23.2,23.2,23.7,23.1,23.1,23.2,23.3,23.1,23.1,23.3,23.3,23.6],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[21.3,21.4,21.5,21.5,21.4,22,21.4,21.4,21.5,21.6,21.4,21.4,21.6,21.6,21.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[10.5,11,10.6,10.3,10.3,10.2,10.3,10.8,10.4,10.5,10.4,10.4,10.3,10.4,10.6],"script":[1.2,1.4,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.2,1.2,1.2,1.2],"paint":[8.9,9.2,9.1,8.7,8.7,8.7,8.8,9.3,8.9,9,8.9,8.9,8.8,8.9,9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.4,10.9,10.2,10.1,9.9,10,10.3,10.6,9.5,10.2,10.4,11,10.1,10.6],"script":[0.9,0.5,0.6,0.1,0.1,0.8,0.1,1.1,0.1,0.1,0.3,0.1,0.7,0.8,0.7],"paint":[9,8.4,8.7,8.7,9,7.7,9.3,8.2,9.5,8.4,8.9,9.1,9,8.1,8.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.3,2.7,3.2,2,2.1,2.1,2.7,2.6,3.2,2.3,2.7,2.4,2.3,2.7,2.1,2.8,2.4,2.1,2.9,2.4,2.4,2,2.5,2.2,2.2],"script":[0.2,0,0.3,0,0,0,0,0,1,0,0.9,0.7,0,0.8,0.6,0,0,0,0,0,0,0.3,0,0.1,0],"paint":[1.4,1.6,1.5,1.7,2,0.7,2.5,2.4,2,1.1,1.2,1.6,1.8,1.4,1,2.6,2.2,1.4,1,2.2,2,1.6,2.3,2,1.7]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[8.4,7.8,8.2,7.9,7.9,8.8,8.2,8.1,8.4,8.6,8.3,8.6,7.6,8.8,8.8],"script":[0.1,0.1,0.6,0.1,0.1,0.8,0.5,0.1,0.7,0.8,0.9,0.1,0.1,0.1,0.8],"paint":[7.2,6.5,6.2,6.6,6.6,6.6,6.8,6.9,6.8,5.9,6.2,5.6,6.4,8.1,7.1]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18,17.6,17.2,17.5,18.2,17.8,17.4,17.8,17.6,17.7,18,17.3,17.8,17.4,17.6],"script":[2.2,2.2,2,2.1,2.2,2.1,2.3,2,2,2.2,2.1,2,2,2.3,2],"paint":[15.1,14.7,14.9,14.8,15,14.6,14.3,15.1,14.9,14.9,15.2,14.7,15.2,14.4,15]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[245.2,244.6,245.8,244.2,244.8,251.5,244.2,246.2,245.4,245,246.4,243.7,245.3,245.9,245.8],"script":[14.6,14.5,14.9,14.7,14.6,15,14.4,14.8,14.6,14.9,14.8,14.6,14.9,14.7,14.4],"paint":[223.5,223,223.8,222.4,223.1,227,222.6,223.7,223.7,223.1,224.2,222,223.3,224.2,224.4]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.5,26.9,26.6,26.6,26.6,26.6,26.4,26.6,26.4,27,26.6,26.8,27.3,26.7],"script":[1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.4,1.4,1.3],"paint":[24.6,24.4,24.9,24.5,24.6,24.6,24.6,24.4,24.6,24.4,25,24.6,24.7,25.1,24.6]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,9.1,9.3,9.9,10,9.4,9.4,8.7,9.5,9.6,9.9,9.1,9.1,8.6,9.2],"script":[8.3,7.3,7.4,8,6.8,6.8,7.3,7.3,8.1,8.2,8.1,6.7,6.7,7.2,7.4],"paint":[1.3,0.9,0.5,1.1,2.3,0.8,1.2,0.2,0.2,0.5,0.9,2.2,1.8,1.1,0.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4572582244873047]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9016714096069336]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8851909637451172]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5950393676757812]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.920961380004883]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.2]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"01_run1k","values":{"total":[23.1,22.9,23.2,23.2,23.1,23.6,23.3,23.2,23.2,23.6,23.2,23.5,23.1,23.4,23.1],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4],"paint":[21.4,21.1,21.4,21.4,21.4,21.8,21.6,21.4,21.4,21.8,21.4,21.7,21.4,21.6,21.3]}},{"framework":"vanillajs-3-non-keyed","benchmark":"02_replace1k","values":{"total":[9.5,9.7,9.9,9.8,9.7,9.8,10.1,9.7,9.7,10,9.6,9.6,9.6,9.7,9.8],"script":[0.7,0.8,0.8,0.8,0.8,0.8,0.9,0.8,0.8,1,0.8,0.8,0.8,0.8,0.8],"paint":[8.4,8.6,8.8,8.7,8.6,8.6,8.8,8.6,8.6,8.7,8.6,8.5,8.5,8.6,8.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10,10.2,10,9.9,9.9,9.5,10.5,10.1,9.4,9.4,9.4,10.3,10.6,10.1,10],"script":[0.6,1,0.8,0.5,0.4,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.4],"paint":[8.2,7.6,8.2,8.3,8.2,8.7,9.4,8.8,8,8.7,8.1,8.8,9.3,8.4,8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"04_select1k","values":{"total":[5,2.4,2.5,1.7,2.4,2.5,2.5,2.2,2.4,1.9,2.6,2.2,2.4,2.2,2.2,2.3,2.1,1.7,2.2,2.6,2,1.9,2.8,2.3,2.3],"script":[0,0,0,0.2,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.6,0,0,0.9,0.3,0],"paint":[2.1,1.2,1.7,1,2.3,1.5,2,1.3,2.3,1.7,2.5,1.4,1.8,1.7,0.9,2,2,1.5,2.1,1.9,1.1,1.3,1.4,1.5,1.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,8.1,7.6,7.9,7.6,8.2,7.2,8,7.5,8.3,8,8.3,7.6,7.7,7.4],"script":[0,0,0,0,0,0,0,0.4,0,0,0.7,0.7,0,0.3,0],"paint":[6.5,7.1,6.9,7.1,6.2,7.3,6.2,6.4,6.2,7.2,6,6.5,6.8,6.4,6.4]}},{"framework":"vanillajs-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.6,10.5,9.9,10.3,10.2,10,9.9,10,10.4,10.2,10.3,10.3,10.7,10.4],"script":[0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.2,0.1,0.1],"paint":[9.7,9.9,9.9,9.2,9.5,9.2,9.1,9.5,8.8,9.7,9.5,9.4,9.6,10,9.2]}},{"framework":"vanillajs-3-non-keyed","benchmark":"07_create10k","values":{"total":[242.8,242.3,242.6,243.9,245.4,242.9,246,244.1,243.5,243.4,244.1,242.4,241.5,244.7,242.4],"script":[13.2,13.1,13.4,13.5,13.5,13.4,13.5,13.5,13.7,13.2,13.6,13.3,13.3,13.8,13.7],"paint":[222.3,222.1,222.1,223,224.7,222.5,225,223.5,222.7,223,223.4,222,221.1,223.9,221.6]}},{"framework":"vanillajs-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,26.6,26.8,26.4,27,26.2,26.9,27.2,26.5,26.7,26.3,26.8,27,27.2,26.8],"script":[1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.8,24.5,24.8,24.4,24.9,24.2,24.9,25.1,24.5,24.7,24.3,24.9,25,25.2,24.8]}},{"framework":"vanillajs-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,10,8.8,9.4,9,11.3,9.4,10,9.6,10.4,9.7,8.9,9.1,9.6],"script":[7.3,7.6,8.4,7.3,8,7.7,8.5,7.6,7.9,7.7,7.9,7.4,7.3,7.2,7.7],"paint":[1.1,1.2,1.1,0.6,0.3,0.3,1,1,1,0.7,2.2,0.2,1.3,0.2,0.9]}},{"framework":"vanillajs-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5072345733642578]}},{"framework":"vanillajs-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7877740859985352]}},{"framework":"vanillajs-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7936010360717773]}},{"framework":"vanillajs-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5872926712036133]}},{"framework":"vanillajs-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.481759071350098]}},{"framework":"vanillajs-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"vanillajs-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.7]}},{"framework":"vanillajs-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[34.3,36,30.5,34.7,36.5,34.5,30.9,30.6,36,35.4,34.5,35.4,36,36.6,36],"script":[6.9,6.8,7.4,6.2,6.2,6.3,7,7.2,6.3,6.3,6.4,7,6.3,6.3,6.4],"paint":[22.7,22.2,22.7,22.6,22.4,22.4,23.6,23.1,23.1,22.5,22.9,22.7,22.7,22.3,22.6]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.8,17.6,17.6,16.5,17.3,17.5,16.9,16.6,17.4,17.7,17.7,17,19,17.5,18.3],"script":[3.4,3.4,3.5,3.4,3.5,3.4,3.4,3.6,3.5,3.8,3.6,3.6,3.6,3.5,3.8],"paint":[8.8,8.7,8.8,8.7,8.8,8.8,8.5,8.8,8.7,9.2,8.9,8.7,9.6,8.6,9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.8,29.3,14.6,15,31,28.6,13.1,29.9,30.4,15.7,28.6,30.2,31.5,13.8,30.1],"script":[2.5,2.7,2.8,2.2,3.7,2.6,3.2,2.8,3.1,2.4,2.4,2.9,3.6,3,2.5],"paint":[11.3,10.2,8.7,10.5,10.5,9,9.7,11,10.6,11,9,10.8,11,10.2,11.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[4.1,3.6,5,3.7,3.5,3.7,3.4,6.1,3.8,3.9,3.8,4,6.1,4.4,4.3,3.9,3.5,5.8,4.4,4.1,4.2,10.2,3.3,4.7,4.3],"script":[0.3,1.2,0.9,0.7,0.9,1.5,1,0.8,1.6,1.5,1.3,1.1,0.7,1,1.4,0.6,1.3,1,0.3,1,1.7,1.2,1.7,1.6,1.5],"paint":[2,0.8,1.9,2.6,2.1,1.3,2.2,1.6,2.1,1.6,1.6,1.9,2.6,1.9,1.2,1.7,1,2,2.2,1.7,1.5,2.3,1.1,2.2,2.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[25.5,26.7,10.5,10.8,10,25.4,27.2,26.3,10.5,10.9,25.9,10.1,9.4,27.5,25.2],"script":[1.3,1.5,1.6,0.9,1.7,0.9,1.4,1.2,1.2,1.8,1.7,1.7,1.2,1.7,1],"paint":[8.2,9.1,7.7,7.5,7.2,8.4,9.9,9,8.8,8.4,7.4,7.2,7.3,9.2,7.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.5,24.9,21.8,21.8,21.9,23.7,22.2,22.5,22.6,26.1,25.4,22,25.5,24.3,24.2],"script":[6.3,6.3,6.4,6.2,6.3,6.1,6.3,6.2,6.2,6.1,5.9,6.1,6.3,6.4,6.3],"paint":[15.3,15.9,14.9,14.6,15.2,15.2,15.3,15.5,14.7,14.7,16,14.8,15.1,14.6,15.3]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[309,308.6,305.7,303.3,304.6,304.6,305.8,307,307.8,308.4,307.8,310.6,312.8,307.6,307.7],"script":[73.5,73.1,73.9,74.1,74.1,74.5,74.6,74.5,74.8,74.6,74.7,75.7,75.7,73.7,74.4],"paint":[226.4,224.9,224.3,223.6,225.1,224.5,223.4,226,224.5,228.1,226.8,230.6,228,227.5,225.9]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40,40.2,34.1,39.1,33.8,33.2,40.8,34.1,33.5,34.3,34,38.8,33.8,34.1,33.8],"script":[6,6,6.2,6.6,6.3,6,6,6.3,5.9,6.1,6.4,6,6.1,6.3,6.2],"paint":[27,26.4,27.4,26.6,26.9,26.6,27.2,27.3,27,27.7,27,27.8,27.1,27.2,26.8]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,29,13,14.2,14.3,28.9,11.6,10.9,13.4,11.7,27.5,11.5,11.6,11.7,11.8],"script":[11.2,11.2,10.6,10.9,11.5,10.6,9.8,8.7,11.6,10.2,9.7,9,9.4,9.1,10],"paint":[1.1,1.1,0.3,2,1,2.1,0.9,0.4,1.2,0.7,0.4,1.9,2,1.7,0.7]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5631475448608398]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9572277069091797]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9413328170776367]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7309656143188477]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.520204544067383]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.5]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.1]}},{"framework":"vode-v1.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[28.4,27.8,27.3,28.4,27.1,27.2,27.9,27.3,27.6,27.3,27.2,27.5,27.4,27.9,27.2],"script":[6.3,6.2,5.6,6.2,5.5,5.6,6.1,5.6,6.1,5.6,5.6,5.6,5.7,6.2,5.6],"paint":[21.5,21,21.2,21.6,21,21.1,21.3,21.1,21,21.1,21,21.3,21.2,21.2,21]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[12.7,12.7,12.8,12.6,12.6,13.9,13.9,12.5,12.7,13.8,12.6,12.3,12.7,13.7,12.5],"script":[3,3,3,3,3,3.3,3.3,3.1,3.1,3.3,3,2.9,3,3.6,3],"paint":[9.3,9.3,9.3,9.2,9.2,10.2,10.2,9,9.2,9.7,9.2,9,9.3,9.8,9.1]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.8,12.4,13,13.7,13.1,13.5,12.5,14.5,12.7,13.3,12.8,13,12.9,12.5],"script":[2.7,1.6,2.2,1.8,2.9,2.2,2.4,1.9,3,2.1,2.4,2.2,2.2,2.3,2.2],"paint":[8.5,9.5,9.2,9.7,9.1,9.3,9.7,9.9,10.6,9.7,8.8,9.2,9.5,9.8,9.2]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.8,3.1,3.3,3.1,3.2,3.4,3.6,2.9,3.5,3.2,3.2,2.8,3.2,3.1,6,3,3.3,2.8,3.3,3.3,2.9,4.6,3,2.7],"script":[0.9,1.6,0.6,0.2,0.9,0.9,1.5,1,0.2,0.9,0.9,1,1,0.7,1.2,1.1,0.5,0.7,0.7,1.8,0.9,0.6,0.8,1.1,0.2],"paint":[1.7,2.1,2,2.9,1.2,2.2,1.1,2.5,2.3,1.5,1.6,1.5,1.7,1.5,1.1,1.4,1.5,2.3,2,1.3,1.9,0.4,1.1,1.3,1.5]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[9.4,9.7,10.3,9.7,8.7,9.9,8.4,9.7,9,11.2,9.6,9.8,9.2,9.9,10],"script":[1.1,1,1.2,1,1,0.7,0.9,1.5,0.9,1.4,1.3,0.7,1.2,1.1,0.7],"paint":[7.6,7.4,8,8,6.5,7.8,6.4,7.3,7.4,8.2,7.2,7.6,6,7.3,8.4]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.3,21.9,21.5,21.1,21.8,21.5,21.4,20.5,20.9,22.7,21.9,20.7,20.7,22.4,23.5],"script":[4.5,5.1,5,4.9,5.3,5.1,4.9,4.7,4.9,5.4,5.2,4.9,4.8,4.8,5.3],"paint":[15.2,16.1,15.3,15.2,15.7,15.4,15.9,15,15,16.3,15.5,15.1,15.2,16.5,17.3]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[288.1,286.8,286.8,286.3,286.9,285.8,286.6,286.2,287.3,288.7,287.1,286.5,286.1,285.8,286.7],"script":[60.7,61.2,60.4,60.9,61.4,61.6,61.8,61.4,58.1,62.5,61.2,58.8,61.3,61.1,60.6],"paint":[219.9,218.2,219.1,217.9,218.2,217,217.4,217.3,221.8,218.7,218.5,220.3,217.6,217.6,218.8]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,32,31.4,31.9,31.9,31.2,32.3,31.6,31.9,32,31.8,31.6,31.6,31.6,31.4],"script":[5.5,5.6,5.6,5.7,5.5,5.5,6.1,5.5,5.6,5.6,6,5.8,5.7,5.6,5.6],"paint":[25.3,25.5,24.9,25.2,25.4,24.8,25.3,25.2,25.4,25.4,24.9,24.9,25,25.1,25]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,11.7,12.5,12.5,12.4,12.3,12.9,11.5,12.5,11.8,12.5,11.6,13.1,12.7,12],"script":[9.5,9.9,10.3,10.5,10.3,10.4,10.4,9.9,10.6,9.7,10.5,10.1,11,10.5,9.7],"paint":[2.4,1.6,2,0.5,1.9,1.7,1.3,0.8,1.1,1.2,1.4,0.5,1,1.3,1.6]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8555831909179688]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8237686157226562]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.898469924926758]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1145868301391602]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.618300437927246]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.9]}},{"framework":"vue-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.5,24.1,24.6,24.8,24.2,24.1,24.1,24.2,24.1,24.3,25,24.1,24,24],"script":[2.9,2.9,2.8,3.1,2.8,2.7,2.7,2.8,2.7,2.7,2.8,2.8,2.7,2.8,2.8],"paint":[21.6,21.2,20.9,21.1,21.6,21.1,21,20.9,21,21,21.2,21.9,20.9,20.8,20.8]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10.3,10.1,10.9,10,10.3,10.1,10.3,10.2,10.1,10.2,10.1,10,10.2,10.3,9.9],"script":[1.4,1.3,1.7,1.3,1.4,1.3,1.7,1.5,1.3,1.3,1.3,1.3,1.4,1.5,1.3],"paint":[8.5,8.4,8.8,8.3,8.6,8.5,8.3,8.3,8.4,8.5,8.4,8.4,8.5,8.5,8.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.3,10.9,11.3,10.7,11,10.4,11.5,11.2,10.8,11.3,11.7,11.7,11.5,11.2],"script":[1,1.2,1.7,1.5,0.9,1.1,1.2,1.3,1.2,1,1.1,1.2,1.6,1.5,1.1],"paint":[9.1,9.1,7.9,8.9,8.8,9.2,8,9,8.8,9.5,8.6,9.3,8.6,9.1,9.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.7,4,3.7,3,3.3,4,4,3.8,3.8,4.3,3.5,4.2,3.4,3.8,3.7,4.3,3.6,3.1,4.1,3.5,4.2,3.4,3,3.7,3.6],"script":[1.4,2,1.5,1.5,1.1,1.7,1.7,1.5,1.9,1.7,2,2,1.1,1.7,1.6,1.7,1.7,1.1,1.9,1.1,1.8,1.2,1.2,1.1,1.8],"paint":[2.2,1.8,1.2,1.1,1.3,2.2,1.5,1.6,1.3,1.6,1,2.1,1.2,2,2,1.3,1.4,1.3,2,2.2,2.3,1.3,1.3,2.5,1.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.7,8.3,8.2,8.4,8.2,8.9,8.7,8.6,8.5,8.2,8.9,8.6,7.9,9,8],"script":[0.8,0.8,0.2,0.6,0.2,1.1,1.1,1.1,0.2,0.6,1.2,1,0.7,0.5,0.6],"paint":[7.6,6.5,7,6.6,6,7.1,6.6,6.8,7.3,5.4,5.9,6.4,6.6,7.4,6.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,17.5,17.2,17,17.1,18.3,16.9,17.3,16.7,17.3,16.7,17.1,17.1,17.4,16.9],"script":[1.9,2,2.1,2,2.2,2.3,2.1,2.3,2.1,2.2,2,2.2,2.1,2.3,2.3],"paint":[14.2,14.9,14.1,14.4,14.2,14.9,14.1,14.4,14,14.4,13.8,14.3,14.3,14.5,14.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[263.4,261.6,261.7,260.3,262.5,260.9,260,260.6,260.6,259.7,260,261,261.3,259.9,261],"script":[33,33.5,33.5,33,33.3,33.6,32.9,33.1,33.3,33,33.5,32.9,32.8,33.3,33],"paint":[223.1,221,220.9,220.1,221.9,219.9,219.9,220.4,220.1,219.4,219.3,220.7,221.2,219.2,220.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,27.8,27.7,29.2,29.1,29.3,28.6,28.6,29,28.9,28,28.8,28.1,28.9,29.3],"script":[3.3,2.7,2.8,2.9,3.3,2.9,2.9,2.9,3,3,2.8,3,2.9,3.2,2.9],"paint":[25.1,24.3,24.2,25.5,25.1,25.7,24.9,24.9,25.3,25.2,24.5,25,24.5,24.9,25.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,10.3,10.7,11,10.6,9.5,9.7,10,9.6,10.4,10.9,10,10.3,9.8,10.3],"script":[8,8.1,8.3,9,8.5,7.4,7.8,8.2,7.3,8.3,8.3,8,7.9,7.9,7.9],"paint":[0.6,1.2,2.2,1.7,1.3,0.7,0.7,0.9,1.3,0.8,1.8,1.5,1.4,1.1,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6835517883300781]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0817203521728516]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1073837280273438]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9728012084960938]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.215370178222656]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.2]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[64.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"01_run1k","values":{"total":[24.4,24.6,25.3,24.6,24.7,25.1,24.9,25,24.6,24.8,24.1,24.3,24.4,24.2,24.3],"script":[2.8,2.8,3,2.8,2.9,2.8,3.1,2.9,2.9,2.8,2.8,2.8,2.8,2.8,2.8],"paint":[21.2,21.3,21.9,21.3,21.4,21.9,21.4,21.6,21.3,21.6,20.9,21,21.3,21,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"02_replace1k","values":{"total":[10,10.2,10.4,10,10,10.1,10,10.1,10.1,10,10.4,10.3,10.3,10,10.3],"script":[1.3,1.3,1.6,1.2,1.2,1.5,1.2,1.3,1.2,1.3,1.6,1.5,1.6,1.2,1.6],"paint":[8.3,8.6,8.5,8.5,8.4,8.3,8.4,8.4,8.5,8.4,8.5,8.4,8.4,8.4,8.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.5,11,10.4,11.3,10.5,12,11.1,11.9,10.4,11.2,11,11.7,10.9,11.2],"script":[0.9,0.2,1,0.8,1.1,1,2.1,1.2,1.3,1.3,1.1,1.2,1.4,1.4,0.6],"paint":[8.7,8.2,8.4,8.2,9.2,8.2,9.3,8.8,9.1,7.7,8.9,8.8,8.6,8,9.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.4,3.3,2.8,2.7,3.6,3.3,3.7,3.9,3.1,2.8,4.1,3.7,3.2,3.4,3.6,3.2,3.6,3.6,3.1,3.9,3.6,4,3.1,3],"script":[1.1,1,1.2,0.9,1.1,1.1,1,1.2,1.4,1.2,1,2,1.5,1.3,1.4,1.7,1.3,1,1.8,1.2,1.4,1.2,1.8,1.3,1.4],"paint":[2,1.9,1.8,1,1,1.3,2.2,1.7,1.7,1.5,1.6,2,2.2,1.1,1.6,1.1,1.1,1.9,1.4,1.7,1,2.3,0.7,1.3,1.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"05_swap1k","values":{"total":[8.3,7.7,7.7,9.3,7.9,8.9,8.4,7.8,8.7,7.9,8.6,8.8,8.5,7.9,7.9],"script":[0.7,0.8,0.8,0.5,0.8,0.5,0.5,0.3,0.6,0.8,1,0.7,1.3,0.6,0.5],"paint":[6.1,6.2,5.3,6.8,5.9,7,6.6,6.3,7,6.2,6.6,7,6.2,6.1,6.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.7,16.8,16.9,16.4,16.9,16.5,16.5,17,16.7,16.8,16.9,16.7,17.1,16.3,17.1],"script":[1.9,1.8,2.2,1.9,1.8,1.8,1.9,1.9,2.1,2.1,1.9,2,1.9,1.8,2.1],"paint":[14.9,14.2,14.1,13.9,14.4,14,14,14.4,14,14,14.4,13.8,14.3,13.6,14.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"07_create10k","values":{"total":[260.7,259.4,259.7,259.6,261.3,265.3,258.9,259.3,259.5,261.1,260.7,260,260.3,261.3,259.8],"script":[32.4,32.2,32.7,32.3,31.9,33.4,32.4,32.2,31.9,32.6,32.4,32.5,32.3,33.3,32.2],"paint":[221,220,219.6,219.9,221.9,224.5,219.3,219.8,220.2,221.2,221,220,220.7,220.8,220.4]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,28.7,28.7,28.7,27.8,28.9,28.5,28.8,29,27.6,27.9,27.7,27.8,27.7,28.5],"script":[2.7,2.8,2.9,2.8,2.7,2.8,2.9,2.9,2.8,2.7,2.9,2.8,2.7,2.7,2.7],"paint":[24.3,25.1,25,25.2,24.3,25.3,24.9,25.2,25.4,24.2,24.3,24.1,24.3,24.3,25.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,9.3,9,9.8,9.6,9.8,9.5,10,8.8,10.1,9.9,11,9.7,9.8,9.5],"script":[6.9,7.8,7.5,7.7,7.7,7.9,7.4,7.9,6.7,8,7.8,8.5,8,7.7,7.2],"paint":[2.1,0.6,0.6,1.3,0.3,0.3,1.1,0.4,1.1,1.1,1,1.9,0.2,1.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6856794357299805]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9568729400634766]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9776878356933594]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9556646347045898]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.142014503479004]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}}] \ No newline at end of file +[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.7,28.8,29.2,29.1,28.7,29.5,28.8,28.8,28.9,28.6,29.2,28.9,28.6,29.4],"script":[6.4,6.5,6.4,6.8,7.1,6.5,6.7,6.6,6.6,6.5,6.7,6.6,6.5,6.5,6.8],"paint":[21.6,21.7,21.9,21.8,21.5,21.6,22.3,21.7,21.7,21.8,21.4,22.1,21.8,21.6,22]}},{"framework":"endr-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.2,31.9,33.7,34.4,33.7,32.1,32.2,32.6,32.1,32.9,31.3,31.9,32.1,31.9],"script":[9,8.9,9,9.3,9,9.1,8.7,8.7,9.3,8.7,9.2,8.7,9,8.6,9.2],"paint":[22.7,22.7,22.4,23.8,24.8,24,22.9,22.9,22.7,22.9,23.1,22.2,22.4,22.9,22.1]}},{"framework":"endr-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.5,13,13.4,12.6,13.2,13.7,13.6,12.5,13,13.9,13,13.6,13.7,13.6],"script":[3.2,2.9,3.2,3.1,2.5,2.5,3.1,3.4,3.3,2.8,3.6,2.5,3,3,2.6],"paint":[8.6,7.6,8.4,9,8.6,9.9,9.4,8.7,8.3,9.6,8,9.5,9.2,9.7,9.8]}},{"framework":"endr-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.9,3.3,3.1,2.8,3.9,3.3,3.8,3.6,3.6,3.3,3.1,3.3,3.6,2.9,3.1,3.2,3.5,3,3.5,3.3,3.5,3.7,2.9,4.5],"script":[1.4,1.1,1.2,1.2,1.2,1.5,0.3,1.2,1.5,1.1,1.2,1,1.4,0.9,1,0.6,0.9,0.6,1.6,1.1,1.3,1.4,1.3,1.1,1.8],"paint":[1.3,1.5,2,1.8,1,1.4,2.1,1.5,1.5,1.9,0.7,1.7,1.8,1.6,1.1,1.4,1.3,2.6,1.3,1.6,1.4,2,2.2,1.7,2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14,13.9,13.8,14.7,14.2,13.7,14.9,15.1,14.5,15,14.2,15.2,13.8,13.9,13.4],"script":[0.3,1,1,1.2,1.1,1.1,0.9,1.2,1.2,1,0.6,1.8,1.1,0.7,0.7],"paint":[12.8,11.9,12.2,12,11.2,11.5,13.1,12.7,12.3,12.8,12.3,12.3,11.8,12.1,11.7]}},{"framework":"endr-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.7,11,10.9,11,11,11.3,10.7,10.9,10.9,11,10.6,10.9,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6],"paint":[9.9,9.5,9.9,9.6,9.2,9.8,9.9,9.4,9.8,9.7,9.7,9.6,9.7,9.4,9.6]}},{"framework":"endr-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[291.7,290.6,297,295.5,293.2,294.3,293.2,293.2,292.5,293.9,296.1,292.7,292.9,295.4,294.5],"script":[68.7,69.9,72.1,71.8,71,72.3,71.2,70.8,69.9,70.8,72.6,71.3,71.2,72.4,71.9],"paint":[215.7,213.7,217.1,216.6,215.2,214.9,214.7,215.2,215.3,216,215.8,214.1,214.5,215.8,215]}},{"framework":"endr-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.6,32.6,32.4,33.3,32.5,32.7,32.5,32.4,32.4,32.8,33.3,32.6,32.7,32.9,32.7],"script":[6.5,6.5,6.8,7,6.7,6.8,6.6,6.6,6.5,6.6,7,6.6,6.6,6.6,6.7],"paint":[25.3,25.2,24.7,25.3,24.9,25,25,24.9,24.9,25.3,25.4,25.1,25.1,25.3,25.2]}},{"framework":"endr-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,11.2,11.9,11.7,12.4,11.8,11.3,10.8,10.6,12.4,11.2,10.8,11.2,10.7,12.9],"script":[9.4,9.3,10.2,9.7,10.1,10.1,9.2,9.3,8.7,10.1,9.3,9.6,8.7,8.6,10.4],"paint":[1.5,1.6,1.1,1.6,1.3,0.3,0.3,0.6,0.3,1.1,0.8,0.4,2.2,1.2,1.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5711421966552734]}},{"framework":"endr-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4149084091186523]}},{"framework":"endr-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.448976516723633]}},{"framework":"endr-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7070350646972656]}},{"framework":"endr-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.95517349243164]}},{"framework":"endr-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,31.2,31,31.1,31.5,31,31.3,31.1,31.3,31.1,30.9,31.3,31.6,31.6],"script":[8.7,8.6,8.8,9,8.9,9,8.8,8.8,8.8,8.9,9,8.9,9.1,9.1,9.1],"paint":[22,21.7,21.8,21.4,21.7,21.9,21.6,21.9,21.7,21.8,21.5,21.3,21.5,21.8,21.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"02_replace1k","values":{"total":[39.8,40.6,40.9,40.6,40.5,41.1,40.2,40.1,41.6,40.3,39.6,40.2,40.9,40.2,40.2],"script":[16.2,16.2,17,16.8,16.8,17.4,16.3,16.4,17.2,16.8,16.2,16.4,16.8,16.8,16.7],"paint":[23,23.8,23.3,23.1,23.1,23.1,23.3,23.1,23.8,22.9,22.8,23.2,23.5,22.8,22.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,13.1,11.9,11.7,11.7,12.3,11.3,12.1,13.1,12.2,12.7,12.7,12.1,12,11.8],"script":[1.5,1,1.5,1,0.7,1,1.5,1.5,1.3,1.8,1.8,2,1.5,1.6,0.9],"paint":[9.6,11.5,9.5,9.8,10,10.4,8.2,9.6,10.3,9.5,8.8,9.6,9.9,8.9,8.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.6,4.6,3.5,3.4,4.5,3.1,3,3.1,3.9,2.7,3.4,3.4,3.6,4.4,4.8,4.2,3.3,3.4,3.7,4.2,4.1,3,3.1,3.7],"script":[1.8,1.7,1.9,0.8,1,2.2,0.7,1.2,0.7,1.5,1.2,0.9,1.2,1.5,1.9,1.9,2.1,1.5,0.6,1.3,1.9,1.6,1.3,0.7,1.5],"paint":[1.8,1.1,1.8,1.6,2.3,1.8,1.9,1,2.3,1.5,1.4,1.6,1.5,1.4,2.4,2.7,0.8,1.6,1.6,1.7,2.1,2.3,1.5,1.9,1.8]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,15.5,16.4,15.9,15.1,16.5,16.5,16.5,16.1,17.1,16.5,16,16.4,15.8,15.7],"script":[3.2,2.6,3.3,3.1,3.1,3.5,2.8,3.5,3.1,3.5,2.8,2.9,2.6,3.3,2.7],"paint":[12.4,11.7,12.1,12.1,10.7,11.9,12.6,11.8,12.1,12.7,11.8,12.2,12.1,11.5,12.1]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,13,12.4,12.5,12.1,12.1,12,12.7,12.1,12.1,12.1,12.6,12.2,12.2],"script":[1.9,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.5],"paint":[10,10.1,10.4,9.7,9.9,9.6,9.6,9.3,10.2,9.7,9.6,9.6,10.2,9.9,10.3]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"07_create10k","values":{"total":[316.1,314.4,317.7,316.5,318.8,317.3,316.9,316.4,317.4,318.4,319.7,317.6,318.6,322.3,316.3],"script":[88.8,87.4,89.6,89,91,91,89.8,90.3,91.6,88.9,91.5,89.3,91.6,90.3,90.1],"paint":[219.4,219.4,220.3,219.6,220.1,218.8,219.7,218.5,218.2,221.4,220.5,220.6,219.4,224.3,218.5]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,38.3,38.1,37.9,38.3,38.2,37.5,38.3,37.8,38.2,37.8,38.5,37.9,39.6,37.4],"script":[9.7,9.9,9.9,10.1,9.6,10.3,9.6,9.8,9.7,9.8,10,9.9,9.9,10.6,9.6],"paint":[27.4,27.4,27.2,26.7,27.5,27,26.8,27.4,27.1,27.4,26.8,27.6,27,27.9,26.7]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24,25.8,24.7,26.3,24.1,24.6,24,24.5,23.9,24.2,25.7,27.8,24,24,24.3],"script":[21.5,23.5,22.4,23.9,22.3,22.4,21.7,23,21.8,21.9,23.6,25.4,21.7,22.2,22],"paint":[2,1.6,2,1.2,0.9,2,1.1,0.8,0.9,0.7,1.4,1.5,1.5,1,2]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.580047607421875]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2467422485351562]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1811952590942383]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8026542663574219]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.7640380859375]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.9]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"hellajs-v0.14.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.761427879333496]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.528393745422363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.534985542297363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.5551347732543945]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.22614765167236]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5939311981201172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0459794998168945]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.073793411254883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6935033798217773]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.88069725036621]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6121883392333984]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.617323875427246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.631587028503418]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8059463500976562]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.044757843017578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.1,24.2,24.5,24.1,23.8,24.7,24.3,24.2,26.1,24.4,24,24.1,24.2,24.6],"script":[2.6,2.5,2.6,2.5,2.6,2.5,2.7,2.5,2.7,2.6,2.5,2.6,2.6,2.5,2.6],"paint":[21.4,21.2,21.2,21.6,21.2,21,21.6,21.4,21.2,23.1,21.5,21,21.1,21.3,21.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"02_replace1k","values":{"total":[26.7,27,27,27.1,26.7,26.9,26.8,27.1,27.1,26.7,27.3,27.6,27,27.4,27],"script":[4.3,4.4,4.4,4.6,4.6,4.5,4.5,4.4,5,4.4,4.6,4.9,4.4,4.5,4.5],"paint":[22,22.1,22.1,22.1,21.7,22,21.9,22.2,21.7,21.9,22.3,22.3,22.1,22.5,22.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.9,10.1,10.9,10.4,10.1,10.6,11,10.4,10.4,10.6,9.9,11.2,10.7,10.6],"script":[0.2,0.6,0.1,0.7,0.1,0.8,0.7,1.2,1,0.6,0.6,0.1,0.9,0.8,0.7],"paint":[9.3,9.4,8.3,8.4,9.2,7.8,9.2,8.7,8,8.4,9.1,8.7,9.1,8.8,8.5]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"04_select1k","values":{"total":[5.8,3.4,2.2,3,3.2,3.3,3,2.5,3,2.5,2.7,3.2,3.1,3.2,2.7,3,2.7,2.9,2.4,3.2,3.3,2.9,2.6,2.5,2.9],"script":[0.7,1.1,0.6,0.8,0.8,0.9,0.9,0.5,1.1,0.7,0.2,0.2,1,1,0.1,0.9,0.5,0.2,0.6,0.6,1.3,0.5,0.2,0.6,0.8],"paint":[1.4,2.2,1.4,2,1.6,2.2,1.4,1,1.1,1.6,1.2,2.3,2,1.8,1.7,1.6,2.1,2.3,1,2,1.8,1.1,1.3,1.1,1.4]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.7,13.1,14.6,14.3,13.3,13.6,13.1,14.1,13.6,14.3,13.8,13.5,13.7,13.3],"script":[0.2,0.9,0.6,1.2,1,0.6,0.2,1,0.9,0.8,1.1,1,1.3,0.6,0.9],"paint":[12.3,11,11.4,12.3,12.1,11.8,12.4,10.6,11.6,11.2,12.2,11.8,10.8,12.2,10.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.5,10.7,10.7,10.4,10.1,10.4,10.4,10.5,10.3,10.9,10.3,10.6,10.2],"script":[0.3,0.3,0.2,0.3,0.5,0.4,0.4,0.3,0.4,0.3,0.2,0.2,0.5,0.3,0.5],"paint":[10.2,9.3,9.7,9.8,9.9,9.4,9.3,9.4,9.2,9.4,9.5,10.2,9.1,9.4,9.2]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"07_create10k","values":{"total":[257.6,258,253.4,257.3,256.3,257.1,256.4,256.6,258,256.9,257.1,256.7,256.1,256.4,256.2],"script":[26.2,27.1,26,26.5,26.9,27,26.4,27,27,26.7,26.2,26.4,27,26.1,26.2],"paint":[223.7,223.8,220.1,223.5,222.2,222.8,222.8,222.5,223.8,223.1,223.6,223.1,222.1,223,222.7]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.5,29,27.7,28.9,27.7,28.9,27.6,27.7,28.3,28,28.1,28,28.4,28.4],"script":[2.4,2.5,2.7,2.4,2.7,2.5,2.6,2.5,2.4,2.5,2.5,2.5,2.6,2.5,2.6],"paint":[24.5,24.3,25.5,24.6,25.5,24.5,25.5,24.3,24.5,25,24.8,24.8,24.6,25.1,25.1]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,9.2,9.2,9.1,10.2,8.8,9,9.7,9,8.9,9.8,9.2,9.2,9.5,8.6],"script":[8.1,6.4,7.4,7.3,8.1,7,7,7.5,6.9,7.5,7.5,7.4,7.1,7.6,7.1],"paint":[1.1,1.2,0.3,1.6,1.4,1,1.2,1,1,0.3,2.1,0.9,1,1.7,0.6]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5924558639526367]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.56630802154541]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6200637817382812]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.76953125]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.017321586608887]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"ripple-v0.2.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.1,23,23.1,23.1,23.5,23.4,23.3,23.4,23.1,23.4,23.3,23.2,23.1,23.3,23],"script":[1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.5,1.4,1.4,1.4,1.4,1.4],"paint":[21.3,21.2,21.3,21.3,21.7,21.6,21.5,21.6,21.3,21.5,21.5,21.4,21.3,21.5,21.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[26,25.7,25.5,25.9,26,25.8,26.1,25.9,25.7,25.6,25.7,25.6,26,25.6,25.9],"script":[3.4,3.3,3.3,3.3,3.3,3.3,3.5,3.4,3.5,3.3,3.4,3.5,3.5,3.3,3.3],"paint":[22.1,22,21.8,22.2,22.4,22.1,22.1,22.1,21.8,21.9,21.9,21.8,22.1,21.9,22.2]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.9,9.7,10.4,9.8,9.6,10.1,10.1,10,9.8,9.8,10.3,10.5,10.6,10.4],"script":[0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.3,0.1],"paint":[9.2,9.3,8.8,9.1,8,8.5,9.1,8.4,8.4,8.2,8.5,8.7,9.1,9.3,9]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.1,2.6,2.4,2.7,2.6,3.3,2.3,2.8,1.9,2.7,2.4,2,2.8,1.6,2.4,2,2.9,2.2,1.9,2.7,2.1,2.4,2.4,2.5,2],"script":[0.1,0.5,0.3,0.1,0.1,0.1,0.1,0.5,0.1,0.4,0.1,0.1,0.3,0.1,0.5,0.1,0.7,0.1,0.1,0.1,0.2,0.9,0.1,0.1,0.1],"paint":[1.5,1.7,1.9,2.2,2,2,1.1,1.6,1,2.1,0.8,1.8,2.4,0.7,1.8,1.8,2,1.4,1.1,2.3,1.3,1,2.1,2.3,1.1]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[11.7,12.5,12.5,11.9,12.8,12,12.3,12,13,12.9,13.1,13,12.3,11.9,12.2],"script":[0,0.1,0,0,0,0.1,0,0,0.4,0.1,0.9,0.6,0.1,0.1,0],"paint":[10.2,11.6,11.2,10.9,11.6,10.4,11.6,11.3,11.7,11.8,11.4,11,11.3,10.3,10.4]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.1,10,10.4,10.4,10.2,10.5,10.4,11.5,10.1,10,10.3,10.2,11,10.8,10.2],"script":[0.2,0.2,0.3,0.3,0.1,0.3,0.3,0.3,0.1,0.1,0.3,0.1,0.3,0.1,0.1],"paint":[9.3,9.2,9.5,9.6,9.5,9.6,8.9,10.3,9.6,9.5,9.3,9.6,10.1,10.1,9.5]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[239,237.3,239.6,240.4,237.9,237.9,238.5,237,242.4,238.2,237.5,239.7,241.3,240.2,239.3],"script":[15.4,15,15.2,15.3,15.3,15.4,15.1,14.9,15.2,15.5,15.5,15.2,15.3,15,15.4],"paint":[216.4,215,217.1,217.7,215.3,215.3,216.2,214.7,219.5,215.4,214.8,217.2,218.8,217.7,216.4]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.1,27.4,27,27.2,28.1,26.7,27.8,27.4,26.7,27.8,27.4,26.8,27.8,29.1],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.3,1.4,1.3,1.4,1.3],"paint":[24.8,24.9,25.3,24.9,25.1,25.9,24.6,25.6,25.2,24.6,25.7,25.2,24.7,25.6,27]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.7,9.4,8.7,8.9,9.1,8.9,8.7,9.4,9.1,8.9,9.3,9.3,10,8.6,9.4],"script":[7.2,7.6,6.6,7.4,7.3,7.3,6.7,7.2,6.8,7.4,7.1,7.5,7.7,6.9,7.3],"paint":[0.2,1.6,1.4,0.2,0.6,1.4,0.8,1.3,2.1,0.8,1.9,1,1.2,0.9,1.9]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5546140670776367]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.927647590637207]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9422225952148438]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6173362731933594]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.010297775268555]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.3]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}}] \ No newline at end of file From 1ba649502df786e4da0d973ea36651b4de9218fd Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Tue, 7 Oct 2025 19:17:59 +0000 Subject: [PATCH 18/39] Update hellajs: fix HTML structure and CSP compliance for PR #1926 --- frameworks/keyed/hellajs/package.json | 3 ++- frameworks/keyed/hellajs/src/main.tsx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frameworks/keyed/hellajs/package.json b/frameworks/keyed/hellajs/package.json index 21dd79654..5763bd620 100644 --- a/frameworks/keyed/hellajs/package.json +++ b/frameworks/keyed/hellajs/package.json @@ -5,7 +5,8 @@ "author": "omilli", "js-framework-benchmark": { "frameworkVersionFromPackage": "@hellajs/core", - "frameworkHomeURL": "https://hellajs.com/" + "frameworkHomeURL": "https://hellajs.com/", + "issues": [1139] }, "scripts": { "build-prod": "rollup -c rollup.config.mjs" diff --git a/frameworks/keyed/hellajs/src/main.tsx b/frameworks/keyed/hellajs/src/main.tsx index a4d0b55df..8061e5bd7 100644 --- a/frameworks/keyed/hellajs/src/main.tsx +++ b/frameworks/keyed/hellajs/src/main.tsx @@ -113,6 +113,7 @@ function Bench() {
- \ No newline at end of file + diff --git a/broken-frameworks/keyed/marko/src/components/row.marko b/frameworks/keyed/marko-classes/src/components/row.marko similarity index 100% rename from broken-frameworks/keyed/marko/src/components/row.marko rename to frameworks/keyed/marko-classes/src/components/row.marko diff --git a/broken-frameworks/keyed/marko/src/routes/+layout.marko b/frameworks/keyed/marko-classes/src/routes/+layout.marko similarity index 85% rename from broken-frameworks/keyed/marko/src/routes/+layout.marko rename to frameworks/keyed/marko-classes/src/routes/+layout.marko index 4f591f134..8f758b46b 100644 --- a/broken-frameworks/keyed/marko/src/routes/+layout.marko +++ b/frameworks/keyed/marko-classes/src/routes/+layout.marko @@ -5,7 +5,7 @@ - ${$global.meta.pageTitle || 'Marko'} + Marko <${input.renderBody}/> diff --git a/broken-frameworks/keyed/marko/src/routes/_index/+page.marko b/frameworks/keyed/marko-classes/src/routes/_index/+page.marko similarity index 100% rename from broken-frameworks/keyed/marko/src/routes/_index/+page.marko rename to frameworks/keyed/marko-classes/src/routes/_index/+page.marko diff --git a/frameworks/keyed/marko-classes/vite.config.js b/frameworks/keyed/marko-classes/vite.config.js new file mode 100644 index 000000000..97291cebe --- /dev/null +++ b/frameworks/keyed/marko-classes/vite.config.js @@ -0,0 +1,5 @@ +import { defineConfig } from "vite"; + +export default defineConfig({ + base: "/frameworks/keyed/marko-classes/dist/public/", +}); From 9a122fe1c97273da035c3b97f840b98005ecf314 Mon Sep 17 00:00:00 2001 From: Mia Kanashi Date: Fri, 17 Oct 2025 12:33:37 +0300 Subject: [PATCH 30/39] add marko 6 example as keyed/marko --- frameworks/keyed/marko/.gitignore | 3 + frameworks/keyed/marko/.marko-run/routes.d.ts | 39 + frameworks/keyed/marko/.prettierrc.json | 10 + frameworks/keyed/marko/package-lock.json | 3424 +++++++++++++++++ frameworks/keyed/marko/package.json | 27 + .../keyed/marko/src/routes/+layout.marko | 13 + .../keyed/marko/src/routes/_index/+page.marko | 1 + .../marko/src/tags/content/content.marko | 124 + .../keyed/marko/src/tags/content/data.js | 76 + frameworks/keyed/marko/tsconfig.json | 13 + frameworks/keyed/marko/vite.config.js | 5 + 11 files changed, 3735 insertions(+) create mode 100644 frameworks/keyed/marko/.gitignore create mode 100644 frameworks/keyed/marko/.marko-run/routes.d.ts create mode 100644 frameworks/keyed/marko/.prettierrc.json create mode 100644 frameworks/keyed/marko/package-lock.json create mode 100644 frameworks/keyed/marko/package.json create mode 100644 frameworks/keyed/marko/src/routes/+layout.marko create mode 100644 frameworks/keyed/marko/src/routes/_index/+page.marko create mode 100644 frameworks/keyed/marko/src/tags/content/content.marko create mode 100644 frameworks/keyed/marko/src/tags/content/data.js create mode 100644 frameworks/keyed/marko/tsconfig.json create mode 100644 frameworks/keyed/marko/vite.config.js diff --git a/frameworks/keyed/marko/.gitignore b/frameworks/keyed/marko/.gitignore new file mode 100644 index 000000000..d4d7e3f61 --- /dev/null +++ b/frameworks/keyed/marko/.gitignore @@ -0,0 +1,3 @@ +node_modules +dist +*.log diff --git a/frameworks/keyed/marko/.marko-run/routes.d.ts b/frameworks/keyed/marko/.marko-run/routes.d.ts new file mode 100644 index 000000000..1517ad19d --- /dev/null +++ b/frameworks/keyed/marko/.marko-run/routes.d.ts @@ -0,0 +1,39 @@ +/* + WARNING: This file is automatically generated and any changes made to it will be overwritten without warning. + Do NOT manually edit this file or your changes will be lost. +*/ + +import { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform } from "@marko/run/namespace"; +import type * as Run from "@marko/run"; + + +declare module "@marko/run" { + interface AppData extends Run.DefineApp<{ + routes: { + "/": { verb: "get"; }; + } + }> {} +} + +declare module "../src/routes/_index/+page.marko" { + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/"]; + export type Context = Run.MultiRouteContext & Marko.Global; + export type Handler = Run.HandlerLike; + /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ + export const route: Run.HandlerTypeFn; + } +} + +declare module "../src/routes/+layout.marko" { + export interface Input extends Run.LayoutInput {} + namespace MarkoRun { + export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + export type Route = Run.Routes["/"]; + export type Context = Run.MultiRouteContext & Marko.Global; + export type Handler = Run.HandlerLike; + /** @deprecated use `((context, next) => { ... }) satisfies MarkoRun.Handler` instead */ + export const route: Run.HandlerTypeFn; + } +} diff --git a/frameworks/keyed/marko/.prettierrc.json b/frameworks/keyed/marko/.prettierrc.json new file mode 100644 index 000000000..96b5a7056 --- /dev/null +++ b/frameworks/keyed/marko/.prettierrc.json @@ -0,0 +1,10 @@ +{ + "trailingComma": "all", + "printWidth": 80, + "tabWidth": 2, + "semi": true, + "singleQuote": false, + "markoSyntax": "html", + "experimentalTernaries": true, + "markoAttrParen": true +} diff --git a/frameworks/keyed/marko/package-lock.json b/frameworks/keyed/marko/package-lock.json new file mode 100644 index 000000000..95e950f13 --- /dev/null +++ b/frameworks/keyed/marko/package-lock.json @@ -0,0 +1,3424 @@ +{ + "name": "my-app", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "my-app", + "version": "1.0.0", + "dependencies": { + "@marko/run-adapter-static": "^2.0.3", + "marko": "^6.0.88" + }, + "devDependencies": { + "@marko/run": "^0.9.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", + "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", + "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.3.tgz", + "integrity": "sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz", + "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.4" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz", + "integrity": "sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", + "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.3", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.4", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@chialab/cjs-to-esm": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@chialab/cjs-to-esm/-/cjs-to-esm-0.18.0.tgz", + "integrity": "sha512-fm8X9NhPO5pyUB7gxOZgwxb8lVq1UD4syDJCpqh6x4zGME6RTck7BguWZ4Zgv3GML4fQ4KZtyRwP5eoDgNGrmA==", + "license": "MIT", + "dependencies": { + "@chialab/estransform": "^0.18.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@chialab/estransform": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/@chialab/estransform/-/estransform-0.18.1.tgz", + "integrity": "sha512-W/WmjpQL2hndD0/XfR0FcPBAUj+aLNeoAVehOjV/Q9bSnioz0GVSAXXhzp59S33ZynxJBBfn8DNiMTVNJmk4Aw==", + "license": "MIT", + "dependencies": { + "@parcel/source-map": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.11.tgz", + "integrity": "sha512-Xt1dOL13m8u0WE8iplx9Ibbm+hFAO0GsU2P34UNoDGvZYkY8ifSiy6Zuc1lYxfG7svWE2fzqCUmFp5HCn51gJg==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.11.tgz", + "integrity": "sha512-uoa7dU+Dt3HYsethkJ1k6Z9YdcHjTrSb5NUy66ZfZaSV8hEYGD5ZHbEMXnqLFlbBflLsl89Zke7CAdDJ4JI+Gg==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.11.tgz", + "integrity": "sha512-9slpyFBc4FPPz48+f6jyiXOx/Y4v34TUeDDXJpZqAWQn/08lKGeD8aDp9TMn9jDz2CiEuHwfhRmGBvpnd/PWIQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.11.tgz", + "integrity": "sha512-Sgiab4xBjPU1QoPEIqS3Xx+R2lezu0LKIEcYe6pftr56PqPygbB7+szVnzoShbx64MUupqoE0KyRlN7gezbl8g==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.11.tgz", + "integrity": "sha512-VekY0PBCukppoQrycFxUqkCojnTQhdec0vevUL/EDOCnXd9LKWqD/bHwMPzigIJXPhC59Vd1WFIL57SKs2mg4w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.11.tgz", + "integrity": "sha512-+hfp3yfBalNEpTGp9loYgbknjR695HkqtY3d3/JjSRUyPg/xd6q+mQqIb5qdywnDxRZykIHs3axEqU6l1+oWEQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.11.tgz", + "integrity": "sha512-CmKjrnayyTJF2eVuO//uSjl/K3KsMIeYeyN7FyDBjsR3lnSJHaXlVoAK8DZa7lXWChbuOk7NjAc7ygAwrnPBhA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.11.tgz", + "integrity": "sha512-Dyq+5oscTJvMaYPvW3x3FLpi2+gSZTCE/1ffdwuM6G1ARang/mb3jvjxs0mw6n3Lsw84ocfo9CrNMqc5lTfGOw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.11.tgz", + "integrity": "sha512-TBMv6B4kCfrGJ8cUPo7vd6NECZH/8hPpBHHlYI3qzoYFvWu2AdTvZNuU/7hsbKWqu/COU7NIK12dHAAqBLLXgw==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.11.tgz", + "integrity": "sha512-Qr8AzcplUhGvdyUF08A1kHU3Vr2O88xxP0Tm8GcdVOUm25XYcMPp2YqSVHbLuXzYQMf9Bh/iKx7YPqECs6ffLA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.11.tgz", + "integrity": "sha512-TmnJg8BMGPehs5JKrCLqyWTVAvielc615jbkOirATQvWWB1NMXY77oLMzsUjRLa0+ngecEmDGqt5jiDC6bfvOw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.11.tgz", + "integrity": "sha512-DIGXL2+gvDaXlaq8xruNXUJdT5tF+SBbJQKbWy/0J7OhU8gOHOzKmGIlfTTl6nHaCOoipxQbuJi7O++ldrxgMw==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.11.tgz", + "integrity": "sha512-Osx1nALUJu4pU43o9OyjSCXokFkFbyzjXb6VhGIJZQ5JZi8ylCQ9/LFagolPsHtgw6himDSyb5ETSfmp4rpiKQ==", + "cpu": [ + "mips64el" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.11.tgz", + "integrity": "sha512-nbLFgsQQEsBa8XSgSTSlrnBSrpoWh7ioFDUmwo158gIm5NNP+17IYmNWzaIzWmgCxq56vfr34xGkOcZ7jX6CPw==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.11.tgz", + "integrity": "sha512-HfyAmqZi9uBAbgKYP1yGuI7tSREXwIb438q0nqvlpxAOs3XnZ8RsisRfmVsgV486NdjD7Mw2UrFSw51lzUk1ww==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.11.tgz", + "integrity": "sha512-HjLqVgSSYnVXRisyfmzsH6mXqyvj0SA7pG5g+9W7ESgwA70AXYNpfKBqh1KbTxmQVaYxpzA/SvlB9oclGPbApw==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.11.tgz", + "integrity": "sha512-HSFAT4+WYjIhrHxKBwGmOOSpphjYkcswF449j6EjsjbinTZbp8PJtjsVK1XFJStdzXdy/jaddAep2FGY+wyFAQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.11.tgz", + "integrity": "sha512-hr9Oxj1Fa4r04dNpWr3P8QKVVsjQhqrMSUzZzf+LZcYjZNqhA3IAfPQdEh1FLVUJSiu6sgAwp3OmwBfbFgG2Xg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.11.tgz", + "integrity": "sha512-u7tKA+qbzBydyj0vgpu+5h5AeudxOAGncb8N6C9Kh1N4n7wU1Xw1JDApsRjpShRpXRQlJLb9wY28ELpwdPcZ7A==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.11.tgz", + "integrity": "sha512-Qq6YHhayieor3DxFOoYM1q0q1uMFYb7cSpLD2qzDSvK1NAvqFi8Xgivv0cFC6J+hWVw2teCYltyy9/m/14ryHg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.11.tgz", + "integrity": "sha512-CN+7c++kkbrckTOz5hrehxWN7uIhFFlmS/hqziSFVWpAzpWrQoAG4chH+nN3Be+Kzv/uuo7zhX716x3Sn2Jduw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.11.tgz", + "integrity": "sha512-rOREuNIQgaiR+9QuNkbkxubbp8MSO9rONmwP5nKncnWJ9v5jQ4JxFnLu4zDSRPf3x4u+2VN4pM4RdyIzDty/wQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.11.tgz", + "integrity": "sha512-nq2xdYaWxyg9DcIyXkZhcYulC6pQ2FuCgem3LI92IwMgIZ69KHeY8T4Y88pcwoLIjbed8n36CyKoYRDygNSGhA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.11.tgz", + "integrity": "sha512-3XxECOWJq1qMZ3MN8srCJ/QfoLpL+VaxD/WfNRm1O3B4+AZ/BnLVgFbUV3eiRYDMXetciH16dwPbbHqwe1uU0Q==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.11.tgz", + "integrity": "sha512-3ukss6gb9XZ8TlRyJlgLn17ecsK4NSQTmdIXRASVsiS2sQ6zPPZklNJT5GR5tE/MUarymmy8kCEf5xPCNCqVOA==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.11.tgz", + "integrity": "sha512-D7Hpz6A2L4hzsRpPaCYkQnGOotdUpDzSGRIv9I+1ITdHROSFUWW95ZPZWQmGka1Fg7W3zFJowyn9WGwMJ0+KPA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@isaacs/balanced-match": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz", + "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==", + "license": "MIT", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/brace-expansion": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz", + "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==", + "license": "MIT", + "dependencies": { + "@isaacs/balanced-match": "^4.0.1" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@luxass/strip-json-comments": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@luxass/strip-json-comments/-/strip-json-comments-1.4.0.tgz", + "integrity": "sha512-Zl343to4u/t8jz1q7R/1UY6hLX+344cwPLEXsIYthVwdU5zyjuVBGcpf2E24+QZkwFfRfmnHTcscreQzWn3hiA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@marko/compiler": { + "version": "5.39.40", + "resolved": "https://registry.npmjs.org/@marko/compiler/-/compiler-5.39.40.tgz", + "integrity": "sha512-gQSdfJ5XOy01DtP7ULiqI1onp7Cix1QvnjM0KbfR2HMrWNI14V8V/2JguFAm3BzKEMZmmgvRLk0rvBzSm9FP6Q==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/core": "^7.28.0", + "@babel/generator": "^7.28.0", + "@babel/parser": "^7.28.0", + "@babel/plugin-syntax-typescript": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.0", + "@babel/runtime": "^7.28.2", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@luxass/strip-json-comments": "^1.4.0", + "complain": "^1.6.1", + "he": "^1.2.0", + "htmljs-parser": "^5.7.3", + "jsesc": "^3.1.0", + "kleur": "^4.1.5", + "lasso-package-root": "^1.0.1", + "raptor-regexp": "^1.0.1", + "raptor-util": "^3.2.0", + "relative-import-path": "^1.0.0", + "resolve-from": "^5.0.0", + "self-closing-tags": "^1.0.1", + "source-map-support": "^0.5.21" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/@marko/run": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/@marko/run/-/run-0.9.2.tgz", + "integrity": "sha512-U5eCQonzyPoitRe81ZDEOpHtnML7CbLtkPJdaJUl2GLzZ9F7y/n19/S+ATtgykoNolGDYq43XCdMhegMCUd3vw==", + "license": "MIT", + "dependencies": { + "@marko/run-explorer": "^2.0.1", + "@marko/vite": "^5.3.2", + "browserslist": "^4.24.4", + "cli-table3": "^0.6.5", + "compression": "^1.8.0", + "debug": "^4.4.0", + "dotenv": "^16.4.7", + "draftlog": "^1.0.13", + "esbuild-plugin-browserslist": "^0.16.0", + "glob": "^11.0.1", + "human-format": "^1.2.1", + "kleur": "^4.1.5", + "parse-node-args": "^1.1.2", + "sade": "^1.8.1", + "serve-static": "^1.16.2", + "supports-color": "^10.0.0", + "vite": "^7.0.0", + "warp10": "^2.1.0" + }, + "bin": { + "marko-run": "dist/cli/index.mjs" + }, + "peerDependencies": { + "marko": "5 - 6" + } + }, + "node_modules/@marko/run-adapter-static": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@marko/run-adapter-static/-/run-adapter-static-2.0.3.tgz", + "integrity": "sha512-k/z5sEVgad1T29wJydXyGGnC2JZA2IULs7OT2WU0ax5BasdBIFq1gVnoI6EbAVLfPjsqCtHwd8YcDVLwpSwNjg==", + "license": "MIT", + "dependencies": { + "compression": "^1.8.0", + "htmlparser2": "^10.0.0", + "sirv": "^1.0.15", + "undici": "^6.21.0" + }, + "peerDependencies": { + "@marko/run": "^0.7.7||^0.8||^0.9" + } + }, + "node_modules/@marko/run-explorer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@marko/run-explorer/-/run-explorer-2.0.2.tgz", + "integrity": "sha512-7oKAZP2dGKeOC2BHAwNZLe1FAkM1xm129cQaQJiQNGfni+kr610iMhBHyrmiW/D40XnyrzuAsUaWXNP65Vh2Yg==", + "license": "MIT", + "peerDependencies": { + "@marko/run": "^0.7||^0.8||^0.9" + } + }, + "node_modules/@marko/vite": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/@marko/vite/-/vite-5.3.2.tgz", + "integrity": "sha512-svJBQCjL1FYHpIztRPUNXfugnLjKWtLAvZEeo6mL4EjEQHOubzfHSd+HSauTUXi/F9WuVzfWxMJqCZtvFUsgGg==", + "license": "MIT", + "dependencies": { + "@chialab/cjs-to-esm": "^0.18.0", + "anymatch": "^3.1.3", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "fast-glob": "^3.3.3", + "htmlparser2": "^10.0.0", + "relative-import-path": "^1.0.0", + "resolve": "^1.22.10", + "resolve.exports": "^2.0.3" + }, + "peerDependencies": { + "@marko/compiler": "^5", + "vite": "4 - 7" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@parcel/source-map": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@parcel/source-map/-/source-map-2.1.1.tgz", + "integrity": "sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==", + "license": "MIT", + "dependencies": { + "detect-libc": "^1.0.3" + }, + "engines": { + "node": "^12.18.3 || >=14" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", + "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", + "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", + "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", + "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", + "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", + "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", + "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", + "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", + "cpu": [ + "arm" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", + "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", + "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", + "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", + "cpu": [ + "loong64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", + "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", + "cpu": [ + "ppc64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", + "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", + "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", + "cpu": [ + "riscv64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", + "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", + "cpu": [ + "s390x" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", + "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", + "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", + "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", + "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", + "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", + "cpu": [ + "ia32" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", + "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", + "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.17", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.17.tgz", + "integrity": "sha512-j5zJcx6golJYTG6c05LUZ3Z8Gi+M62zRT/ycz4Xq4iCOdpcxwg7ngEYD4KA0eWZC7U17qh/Smq8bYbACJ0ipBA==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.26.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", + "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.9", + "caniuse-lite": "^1.0.30001746", + "electron-to-chromium": "^1.5.227", + "node-releases": "^2.0.21", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/complain": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/complain/-/complain-1.6.1.tgz", + "integrity": "sha512-WsiVAbAPcPSwyC5k8g/PLceaW0MXJUw61KqBd9uiyDOSuDIC6Ho/EbyhdFjeV6wq44R2g/b8IFpvV/1ZyXiqUQ==", + "license": "MIT", + "dependencies": { + "error-stack-parser": "^2.0.1" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com/" + } + }, + "node_modules/draftlog": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/draftlog/-/draftlog-1.0.13.tgz", + "integrity": "sha512-GeMWOpXERBpfVDK6v7m0x1hPg8+g8ZsZWqJl2T17wHqrm4h8fnjiZmXcnCrmwogAc6R3YTxFXax15wezfuyCUw==", + "license": "MIT" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.237", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz", + "integrity": "sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg==", + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.11", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.11.tgz", + "integrity": "sha512-KohQwyzrKTQmhXDW1PjCv3Tyspn9n5GcY2RTDqeORIdIJY8yKIF7sTSopFmn/wpMPW4rdPXI0UE5LJLuq3bx0Q==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.11", + "@esbuild/android-arm": "0.25.11", + "@esbuild/android-arm64": "0.25.11", + "@esbuild/android-x64": "0.25.11", + "@esbuild/darwin-arm64": "0.25.11", + "@esbuild/darwin-x64": "0.25.11", + "@esbuild/freebsd-arm64": "0.25.11", + "@esbuild/freebsd-x64": "0.25.11", + "@esbuild/linux-arm": "0.25.11", + "@esbuild/linux-arm64": "0.25.11", + "@esbuild/linux-ia32": "0.25.11", + "@esbuild/linux-loong64": "0.25.11", + "@esbuild/linux-mips64el": "0.25.11", + "@esbuild/linux-ppc64": "0.25.11", + "@esbuild/linux-riscv64": "0.25.11", + "@esbuild/linux-s390x": "0.25.11", + "@esbuild/linux-x64": "0.25.11", + "@esbuild/netbsd-arm64": "0.25.11", + "@esbuild/netbsd-x64": "0.25.11", + "@esbuild/openbsd-arm64": "0.25.11", + "@esbuild/openbsd-x64": "0.25.11", + "@esbuild/openharmony-arm64": "0.25.11", + "@esbuild/sunos-x64": "0.25.11", + "@esbuild/win32-arm64": "0.25.11", + "@esbuild/win32-ia32": "0.25.11", + "@esbuild/win32-x64": "0.25.11" + } + }, + "node_modules/esbuild-plugin-browserslist": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.16.0.tgz", + "integrity": "sha512-vfwl1RmCa4D+wWoAxStz2g0O3wWGyUAv6mK9mfgF7X2UY3z/b/6ySTWoPu9nnKvBea6D3uk2zS1TOLt/b5qgLQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "zod": "^3.24.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "browserslist": "^4.21.8", + "esbuild": "~0.25.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz", + "integrity": "sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.3.1", + "jackspeak": "^4.1.1", + "minimatch": "^10.0.3", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/htmljs-parser": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/htmljs-parser/-/htmljs-parser-5.7.4.tgz", + "integrity": "sha512-PCGI7/Z10oBkpKKqbQ9Wgd0GZjSQ/dV7QlBjOmaqD1FkBsHWk730BW9mJCbnXfRbtZCdLh8M8IA8YeKPu9tGaQ==", + "license": "MIT" + }, + "node_modules/htmlparser2": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", + "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/human-format": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/human-format/-/human-format-1.2.1.tgz", + "integrity": "sha512-o5Ldz62VWR5lYUZ8aVQaLKiN37NsHnmk3xjMoUjza3mGkk8MvMofgZT0T6HKSCKSJIir+AWk9Dx8KhxvZAUgCg==", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz", + "integrity": "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/lasso-caching-fs": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lasso-caching-fs/-/lasso-caching-fs-1.0.2.tgz", + "integrity": "sha512-mudop0s8U3tLm3Fn9lhiZsiELpLeJToEo6RlDLdph7vWRxL9Sz0o+9WUw1IwlpCYXv/P0CLsMYWFgPwIKWEYvg==", + "license": "Apache-2.0", + "dependencies": { + "raptor-async": "^1.1.2" + } + }, + "node_modules/lasso-package-root": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lasso-package-root/-/lasso-package-root-1.0.1.tgz", + "integrity": "sha512-j6LnauNCldqSDvOxoKpD6sTzudPGMiwcZQbySoF9KvJ0lD9Dp2t6QZF8kC0jbUDHuQPiAo5RuQ/mC3AGXscUYA==", + "license": "Apache-2.0", + "dependencies": { + "lasso-caching-fs": "^1.0.0" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.19", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz", + "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/marko": { + "version": "6.0.88", + "resolved": "https://registry.npmjs.org/marko/-/marko-6.0.88.tgz", + "integrity": "sha512-ARHyeNQRTAqR+LX81fgz1+GD1BhbdeYFb0J8AWo8tFG6kS1trNwkJuXpDJwX1QildeRdon4une8Q+8FyVVcf4g==", + "license": "MIT", + "dependencies": { + "@marko/compiler": "^5.39.40", + "csstype": "^3.1.3", + "magic-string": "^0.30.17" + }, + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.3.tgz", + "integrity": "sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==", + "license": "ISC", + "dependencies": { + "@isaacs/brace-expansion": "^5.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-releases": { + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.25.tgz", + "integrity": "sha512-4auku8B/vw5psvTiiN9j1dAOsXvMoGqJuKJcR+dTdqiXEK20mMTk1UEo3HS16LeGQsVG6+qKTPM9u/qQ2LqATA==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parse-node-args": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/parse-node-args/-/parse-node-args-1.1.3.tgz", + "integrity": "sha512-Dp9KVLLq7g9TfGh3Uo8bv+0zW+YEKis+9J3d6KFp/GHkbqS5jd5xveavErhrOP2hsAmbCwdKFBTxBlNxXMK6vg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz", + "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==", + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raptor-async": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/raptor-async/-/raptor-async-1.1.3.tgz", + "integrity": "sha512-VZCxygWMjW9lKqnApK9D2QbfyzRn7ehiTqnXWwMCLBXANSy+xbnYfbX/5f8YX3bZXu+g+JESmqWPchIQrZj2ig==", + "license": "Apache License v2.0" + }, + "node_modules/raptor-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/raptor-regexp/-/raptor-regexp-1.0.1.tgz", + "integrity": "sha512-DqC7ViHJUs3jLIxJI1/HVvCu3yPJaP8CM7PGsHvjimg7yJ3lLOdCBxlPE0G2Q8OJgUA8Pe7nvhm6lcQ3hZepow==", + "license": "Apache License v2.0" + }, + "node_modules/raptor-util": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/raptor-util/-/raptor-util-3.2.0.tgz", + "integrity": "sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw==", + "license": "Apache-2.0" + }, + "node_modules/relative-import-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/relative-import-path/-/relative-import-path-1.0.0.tgz", + "integrity": "sha512-ZvbtoduKQmD4PZeJPfH6Ql21qUWhaMxiHkIsH+FUnZqKDwNIXBtGg5zRZyHWomiGYk8n5+KMBPK7Mi4D0XWfNg==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.52.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", + "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.4", + "@rollup/rollup-android-arm64": "4.52.4", + "@rollup/rollup-darwin-arm64": "4.52.4", + "@rollup/rollup-darwin-x64": "4.52.4", + "@rollup/rollup-freebsd-arm64": "4.52.4", + "@rollup/rollup-freebsd-x64": "4.52.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", + "@rollup/rollup-linux-arm-musleabihf": "4.52.4", + "@rollup/rollup-linux-arm64-gnu": "4.52.4", + "@rollup/rollup-linux-arm64-musl": "4.52.4", + "@rollup/rollup-linux-loong64-gnu": "4.52.4", + "@rollup/rollup-linux-ppc64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-gnu": "4.52.4", + "@rollup/rollup-linux-riscv64-musl": "4.52.4", + "@rollup/rollup-linux-s390x-gnu": "4.52.4", + "@rollup/rollup-linux-x64-gnu": "4.52.4", + "@rollup/rollup-linux-x64-musl": "4.52.4", + "@rollup/rollup-openharmony-arm64": "4.52.4", + "@rollup/rollup-win32-arm64-msvc": "4.52.4", + "@rollup/rollup-win32-ia32-msvc": "4.52.4", + "@rollup/rollup-win32-x64-gnu": "4.52.4", + "@rollup/rollup-win32-x64-msvc": "4.52.4", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sade": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "license": "MIT", + "dependencies": { + "mri": "^1.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/self-closing-tags": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/self-closing-tags/-/self-closing-tags-1.0.1.tgz", + "integrity": "sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-static": { + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sirv": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", + "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "license": "MIT", + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", + "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/undici": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.22.0.tgz", + "integrity": "sha512-hU/10obOIu62MGYjdskASR3CUAiYaFTtC9Pa6vHyf//mAipSvSQg6od2CnJswq7fvzNS3zJhxoRkgNVaHurWKw==", + "license": "MIT", + "engines": { + "node": ">=18.17" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "7.1.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.10.tgz", + "integrity": "sha512-CmuvUBzVJ/e3HGxhg6cYk88NGgTnBoOo7ogtfJJ0fefUWAxN/WDSUa50o+oVBxuIhO8FoEZW0j2eW7sfjs5EtA==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/warp10": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/warp10/-/warp10-2.1.0.tgz", + "integrity": "sha512-krhkqzJdUxAZv2Cx0Gz6dN1r7TTrG9RDewkDHBbJQIqbNTCdB5ZUHVh7VkA4DgrKW4ZXPPUQKCwmI/3btDse9A==", + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/frameworks/keyed/marko/package.json b/frameworks/keyed/marko/package.json new file mode 100644 index 000000000..af1e1f730 --- /dev/null +++ b/frameworks/keyed/marko/package.json @@ -0,0 +1,27 @@ +{ + "name": "my-app", + "description": "The default Marko starter app", + "js-framework-benchmark": { + "frameworkVersionFromPackage": "marko", + "frameworkHomeURL": "https://markojs.com/", + "customURL": "/dist/public", + "issues": [ + 1139 + ] + }, + "version": "1.0.0", + "type": "module", + "dependencies": { + "marko": "^6.0.88", + "@marko/run-adapter-static": "^2.0.3" + }, + "devDependencies": { + "@marko/run": "^0.9.2" + }, + "private": true, + "scripts": { + "build-prod": "NODE_ENV=production marko-run build", + "dev": "marko-run", + "preview": "marko-run preview" + } +} diff --git a/frameworks/keyed/marko/src/routes/+layout.marko b/frameworks/keyed/marko/src/routes/+layout.marko new file mode 100644 index 000000000..7cbe74fd1 --- /dev/null +++ b/frameworks/keyed/marko/src/routes/+layout.marko @@ -0,0 +1,13 @@ + + + + + + + + Marko + + + <${input.content}/> + + diff --git a/frameworks/keyed/marko/src/routes/_index/+page.marko b/frameworks/keyed/marko/src/routes/_index/+page.marko new file mode 100644 index 000000000..731e6e7cc --- /dev/null +++ b/frameworks/keyed/marko/src/routes/_index/+page.marko @@ -0,0 +1 @@ + diff --git a/frameworks/keyed/marko/src/tags/content/content.marko b/frameworks/keyed/marko/src/tags/content/content.marko new file mode 100644 index 000000000..a9fb7fee0 --- /dev/null +++ b/frameworks/keyed/marko/src/tags/content/content.marko @@ -0,0 +1,124 @@ +client import { buildData } from "./data.js"; + + + + +
+
+
+
+

Marko

+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+ + + + + + + + + + +
+ ${row.id} + + + ${row.label} + + + + + +
+
diff --git a/frameworks/keyed/marko/src/tags/content/data.js b/frameworks/keyed/marko/src/tags/content/data.js new file mode 100644 index 000000000..8577074c6 --- /dev/null +++ b/frameworks/keyed/marko/src/tags/content/data.js @@ -0,0 +1,76 @@ +function _random(max) { + return Math.round(Math.random() * 1000) % max; +} + +const adjectives = [ + "pretty", + "large", + "big", + "small", + "tall", + "short", + "long", + "handsome", + "plain", + "quaint", + "clean", + "elegant", + "easy", + "angry", + "crazy", + "helpful", + "mushy", + "odd", + "unsightly", + "adorable", + "important", + "inexpensive", + "cheap", + "expensive", + "fancy", +]; + +const colours = [ + "red", + "yellow", + "blue", + "green", + "pink", + "brown", + "purple", + "brown", + "white", + "black", + "orange", +]; + +const nouns = [ + "table", + "chair", + "house", + "bbq", + "desk", + "car", + "pony", + "cookie", + "sandwich", + "burger", + "pizza", + "mouse", + "keyboard", +]; + +let id = 1; + +export function buildData(count) { + const data = Array.from({ length: count }, () => ({ + id: id++, + label: + adjectives[_random(adjectives.length)] + + " " + + colours[_random(colours.length)] + + " " + + nouns[_random(nouns.length)], + })); + return data; +} diff --git a/frameworks/keyed/marko/tsconfig.json b/frameworks/keyed/marko/tsconfig.json new file mode 100644 index 000000000..d0dd6da69 --- /dev/null +++ b/frameworks/keyed/marko/tsconfig.json @@ -0,0 +1,13 @@ +{ + "include": [".marko-run/*", "vite.config.ts", "src/**/*"], + "compilerOptions": { + "lib": ["dom", "dom.iterable", "dom.asynciterable", "ESNext"], + "module": "ESNext", + "moduleResolution": "bundler", + "noEmit": true, + "skipLibCheck": true, + "target": "ESNext", + "types": ["vite/client"] + } +} + diff --git a/frameworks/keyed/marko/vite.config.js b/frameworks/keyed/marko/vite.config.js new file mode 100644 index 000000000..ac126ec2d --- /dev/null +++ b/frameworks/keyed/marko/vite.config.js @@ -0,0 +1,5 @@ +import { defineConfig } from "vite"; + +export default defineConfig({ + base: "/frameworks/keyed/marko/dist/public/" +}); From c4c3ec21c49224ab42870ab63c92fd0e865c25b3 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Sun, 19 Oct 2025 15:27:44 +0000 Subject: [PATCH 31/39] rebuild: update package-lock for keyed/pota after rebuild --- frameworks/keyed/pota/package-lock.json | 401 +++++++++++++----------- 1 file changed, 221 insertions(+), 180 deletions(-) diff --git a/frameworks/keyed/pota/package-lock.json b/frameworks/keyed/pota/package-lock.json index e3ea6d58d..3b2a3865e 100644 --- a/frameworks/keyed/pota/package-lock.json +++ b/frameworks/keyed/pota/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.10", "license": "Apache-2.0", "dependencies": { - "pota": "^0.19.204" + "pota": "^0.19.206" }, "devDependencies": { "@babel/core": "7.26.0", @@ -47,9 +47,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", - "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", + "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -86,13 +86,13 @@ } }, "node_modules/@babel/generator": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", - "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", "license": "MIT", "dependencies": { - "@babel/parser": "^7.28.0", - "@babel/types": "^7.28.0", + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -140,14 +140,14 @@ } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.27.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", - "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", - "@babel/traverse": "^7.27.3" + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -193,25 +193,25 @@ } }, "node_modules/@babel/helpers": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz", - "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "license": "MIT", "dependencies": { "@babel/template": "^7.27.2", - "@babel/types": "^7.28.2" + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", - "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", "license": "MIT", "dependencies": { - "@babel/types": "^7.28.0" + "@babel/types": "^7.28.4" }, "bin": { "parser": "bin/babel-parser.js" @@ -250,17 +250,17 @@ } }, "node_modules/@babel/traverse": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", - "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", + "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.0", + "@babel/generator": "^7.28.3", "@babel/helper-globals": "^7.28.0", - "@babel/parser": "^7.28.0", + "@babel/parser": "^7.28.4", "@babel/template": "^7.27.2", - "@babel/types": "^7.28.0", + "@babel/types": "^7.28.4", "debug": "^4.3.1" }, "engines": { @@ -268,9 +268,9 @@ } }, "node_modules/@babel/types": { - "version": "7.28.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", - "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.27.1", @@ -281,15 +281,25 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.12", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", - "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -300,9 +310,9 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", - "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", @@ -310,15 +320,15 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", - "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.29", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", - "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -401,9 +411,9 @@ } }, "node_modules/@rollup/pluginutils": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.2.0.tgz", - "integrity": "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", "dev": true, "license": "MIT", "dependencies": { @@ -480,9 +490,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz", - "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz", + "integrity": "sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==", "cpu": [ "arm64" ], @@ -493,9 +503,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz", - "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz", + "integrity": "sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==", "cpu": [ "x64" ], @@ -561,10 +571,10 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz", - "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz", + "integrity": "sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==", "cpu": [ "loong64" ], @@ -589,9 +599,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz", - "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz", + "integrity": "sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==", "cpu": [ "ppc64" ], @@ -616,9 +626,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz", - "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz", + "integrity": "sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==", "cpu": [ "riscv64" ], @@ -670,6 +680,19 @@ "linux" ] }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz", + "integrity": "sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, "node_modules/@rollup/rollup-win32-arm64-msvc": { "version": "4.21.2", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.2.tgz", @@ -698,6 +721,19 @@ "win32" ] }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz", + "integrity": "sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@rollup/rollup-win32-x64-msvc": { "version": "4.21.2", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz", @@ -761,10 +797,19 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.18", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.18.tgz", + "integrity": "sha512-UYmTpOBwgPScZpS4A+YbapwWuBwasxvO/2IOHArSsAhL/+ZdmATBXTex3t+l2hXwLVYK382ibr/nKoY9GKe86w==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, "node_modules/browserslist": { - "version": "4.25.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz", - "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==", + "version": "4.26.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", + "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", "funding": [ { "type": "opencollective", @@ -781,9 +826,10 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001726", - "electron-to-chromium": "^1.5.173", - "node-releases": "^2.0.19", + "baseline-browser-mapping": "^2.8.9", + "caniuse-lite": "^1.0.30001746", + "electron-to-chromium": "^1.5.227", + "node-releases": "^2.0.21", "update-browserslist-db": "^1.1.3" }, "bin": { @@ -813,9 +859,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001731", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001731.tgz", - "integrity": "sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==", + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", "funding": [ { "type": "opencollective", @@ -906,18 +952,17 @@ "license": "MIT" }, "node_modules/concurrently": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.0.tgz", - "integrity": "sha512-IsB/fiXTupmagMW4MNp2lx2cdSN2FfZq78vF90LBB+zZHArbIQZjQtzXCiXnvTxCZSvXanTqFLWBjw2UkLx1SQ==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz", + "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==", "license": "MIT", "dependencies": { - "chalk": "^4.1.2", - "lodash": "^4.17.21", - "rxjs": "^7.8.1", - "shell-quote": "^1.8.1", - "supports-color": "^8.1.1", - "tree-kill": "^1.2.2", - "yargs": "^17.7.2" + "chalk": "4.1.2", + "rxjs": "7.8.2", + "shell-quote": "1.8.3", + "supports-color": "8.1.1", + "tree-kill": "1.2.2", + "yargs": "17.7.2" }, "bin": { "conc": "dist/bin/concurrently.js", @@ -943,9 +988,9 @@ "license": "MIT" }, "node_modules/debug": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", - "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -970,9 +1015,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.195", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.195.tgz", - "integrity": "sha512-URclP0iIaDUzqcAyV1v2PgduJ9N0IdXmWsnPzPfelvBmjmZzEy6xJcjb1cXj+TbYqXgtLrjHEoaSIdTYhw4ezg==", + "version": "1.5.237", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz", + "integrity": "sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg==", "license": "ISC" }, "node_modules/emoji-regex": { @@ -1151,12 +1196,6 @@ "node": ">=6" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -1173,9 +1212,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.25.tgz", + "integrity": "sha512-4auku8B/vw5psvTiiN9j1dAOsXvMoGqJuKJcR+dTdqiXEK20mMTk1UEo3HS16LeGQsVG6+qKTPM9u/qQ2LqATA==", "license": "MIT" }, "node_modules/parse5": { @@ -1217,9 +1256,9 @@ } }, "node_modules/pota": { - "version": "0.19.204", - "resolved": "https://registry.npmjs.org/pota/-/pota-0.19.204.tgz", - "integrity": "sha512-5PyCdH3b59meZIRvpvW8jSR9zxkDDK5jyytCIUfjqlEuhVR4coy7kVXAF7jWTq+3ClteauhU7kCZa9xi0I5Now==", + "version": "0.19.206", + "resolved": "https://registry.npmjs.org/pota/-/pota-0.19.206.tgz", + "integrity": "sha512-mECv63yx4mRSG6E5QFQa4ZsoF6xMtveZoUyLGT2m94ju0v5YsXz9GBDI0p2vJ2oZzg6gwkrKyjl9lOTa66Eq4w==", "dependencies": { "@babel/core": "^7.28.0", "@babel/helper-module-imports": "^7.27.1", @@ -1235,21 +1274,21 @@ } }, "node_modules/pota/node_modules/@babel/core": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", - "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", + "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", - "@babel/generator": "^7.28.0", + "@babel/generator": "^7.28.3", "@babel/helper-compilation-targets": "^7.27.2", - "@babel/helper-module-transforms": "^7.27.3", - "@babel/helpers": "^7.27.6", - "@babel/parser": "^7.28.0", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.4", "@babel/template": "^7.27.2", - "@babel/traverse": "^7.28.0", - "@babel/types": "^7.28.0", + "@babel/traverse": "^7.28.4", + "@babel/types": "^7.28.4", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -1265,9 +1304,9 @@ } }, "node_modules/pota/node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz", - "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz", + "integrity": "sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==", "cpu": [ "arm" ], @@ -1278,9 +1317,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-android-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz", - "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz", + "integrity": "sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==", "cpu": [ "arm64" ], @@ -1291,9 +1330,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz", - "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz", + "integrity": "sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==", "cpu": [ "arm64" ], @@ -1304,9 +1343,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-darwin-x64": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz", - "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz", + "integrity": "sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==", "cpu": [ "x64" ], @@ -1317,9 +1356,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz", - "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz", + "integrity": "sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==", "cpu": [ "arm" ], @@ -1330,9 +1369,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz", - "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz", + "integrity": "sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==", "cpu": [ "arm" ], @@ -1343,9 +1382,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz", - "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz", + "integrity": "sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==", "cpu": [ "arm64" ], @@ -1356,9 +1395,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz", - "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz", + "integrity": "sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==", "cpu": [ "arm64" ], @@ -1369,9 +1408,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz", - "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz", + "integrity": "sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==", "cpu": [ "riscv64" ], @@ -1382,9 +1421,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz", - "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz", + "integrity": "sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==", "cpu": [ "s390x" ], @@ -1395,9 +1434,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz", - "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz", + "integrity": "sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==", "cpu": [ "x64" ], @@ -1408,9 +1447,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz", - "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz", + "integrity": "sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==", "cpu": [ "x64" ], @@ -1421,9 +1460,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz", - "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz", + "integrity": "sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==", "cpu": [ "arm64" ], @@ -1434,9 +1473,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz", - "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz", + "integrity": "sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==", "cpu": [ "ia32" ], @@ -1447,9 +1486,9 @@ ] }, "node_modules/pota/node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz", - "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz", + "integrity": "sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==", "cpu": [ "x64" ], @@ -1460,9 +1499,9 @@ ] }, "node_modules/pota/node_modules/rollup": { - "version": "4.46.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz", - "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.5.tgz", + "integrity": "sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==", "license": "MIT", "dependencies": { "@types/estree": "1.0.8" @@ -1475,26 +1514,28 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.46.2", - "@rollup/rollup-android-arm64": "4.46.2", - "@rollup/rollup-darwin-arm64": "4.46.2", - "@rollup/rollup-darwin-x64": "4.46.2", - "@rollup/rollup-freebsd-arm64": "4.46.2", - "@rollup/rollup-freebsd-x64": "4.46.2", - "@rollup/rollup-linux-arm-gnueabihf": "4.46.2", - "@rollup/rollup-linux-arm-musleabihf": "4.46.2", - "@rollup/rollup-linux-arm64-gnu": "4.46.2", - "@rollup/rollup-linux-arm64-musl": "4.46.2", - "@rollup/rollup-linux-loongarch64-gnu": "4.46.2", - "@rollup/rollup-linux-ppc64-gnu": "4.46.2", - "@rollup/rollup-linux-riscv64-gnu": "4.46.2", - "@rollup/rollup-linux-riscv64-musl": "4.46.2", - "@rollup/rollup-linux-s390x-gnu": "4.46.2", - "@rollup/rollup-linux-x64-gnu": "4.46.2", - "@rollup/rollup-linux-x64-musl": "4.46.2", - "@rollup/rollup-win32-arm64-msvc": "4.46.2", - "@rollup/rollup-win32-ia32-msvc": "4.46.2", - "@rollup/rollup-win32-x64-msvc": "4.46.2", + "@rollup/rollup-android-arm-eabi": "4.52.5", + "@rollup/rollup-android-arm64": "4.52.5", + "@rollup/rollup-darwin-arm64": "4.52.5", + "@rollup/rollup-darwin-x64": "4.52.5", + "@rollup/rollup-freebsd-arm64": "4.52.5", + "@rollup/rollup-freebsd-x64": "4.52.5", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.5", + "@rollup/rollup-linux-arm-musleabihf": "4.52.5", + "@rollup/rollup-linux-arm64-gnu": "4.52.5", + "@rollup/rollup-linux-arm64-musl": "4.52.5", + "@rollup/rollup-linux-loong64-gnu": "4.52.5", + "@rollup/rollup-linux-ppc64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-musl": "4.52.5", + "@rollup/rollup-linux-s390x-gnu": "4.52.5", + "@rollup/rollup-linux-x64-gnu": "4.52.5", + "@rollup/rollup-linux-x64-musl": "4.52.5", + "@rollup/rollup-openharmony-arm64": "4.52.5", + "@rollup/rollup-win32-arm64-msvc": "4.52.5", + "@rollup/rollup-win32-ia32-msvc": "4.52.5", + "@rollup/rollup-win32-x64-gnu": "4.52.5", + "@rollup/rollup-win32-x64-msvc": "4.52.5", "fsevents": "~2.3.2" } }, @@ -1719,13 +1760,13 @@ } }, "node_modules/terser": { - "version": "5.43.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", - "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.14.0", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, From 33af599c0e81c3757c99f487b855444292615689 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Sun, 19 Oct 2025 15:45:09 +0000 Subject: [PATCH 32/39] rebuild: update package-lock and bundled sprae.js for non-keyed/sprae after rebuild --- frameworks/non-keyed/sprae/package-lock.json | 8 ++++---- frameworks/non-keyed/sprae/src/sprae.js | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frameworks/non-keyed/sprae/package-lock.json b/frameworks/non-keyed/sprae/package-lock.json index 7f65fa486..9bd2d187a 100644 --- a/frameworks/non-keyed/sprae/package-lock.json +++ b/frameworks/non-keyed/sprae/package-lock.json @@ -8,13 +8,13 @@ "name": "js-framework-benchmark-non-keyed-sprae", "version": "1.0.0", "dependencies": { - "sprae": "^11.3.0" + "sprae": "^12.1.0" } }, "node_modules/sprae": { - "version": "11.5.1", - "resolved": "https://registry.npmjs.org/sprae/-/sprae-11.5.1.tgz", - "integrity": "sha512-YTOELPZSGhzVbnfC7rLcI2rd6foqw5sg84rbc97185o3ozskZkZCpTR0NmmiL0yutZdxNMuiOvQoZKBCJmQ5kg==", + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/sprae/-/sprae-12.1.0.tgz", + "integrity": "sha512-lMykLexwcpuzA2QRwMkUGUbWJybNzSgRFFlsKwSTVVoNCReBQg0SakISFtOlNBtiP7drUhHDOd5KeEzZb+Ro/A==", "license": "MIT" } } diff --git a/frameworks/non-keyed/sprae/src/sprae.js b/frameworks/non-keyed/sprae/src/sprae.js index 8a1b3b6e1..6c8a9add2 100644 --- a/frameworks/non-keyed/sprae/src/sprae.js +++ b/frameworks/non-keyed/sprae/src/sprae.js @@ -1,5 +1,5 @@ -var O,k=(e,i,t=new Set)=>(i={get value(){return O?.deps.push(t.add(O)),e},set value(r){if(r!==e){e=r;for(let n of t)n()}},peek(){return e}},i.toJSON=i.then=i.toString=i.valueOf=()=>i.value,i),x=(e,i,t,r)=>(t=n=>{i?.call?.(),n=O,O=t;try{i=e()}finally{O=n}},r=t.deps=[],t(),n=>{for(i?.call?.();n=r.pop();)n.delete(t)}),q=(e,i=k(),t,r)=>(t={get value(){return r||(r=x(()=>i.value=e())),i.value},peek:i.peek},t.toJSON=t.then=t.toString=t.valueOf=()=>t.value,t),T=e=>e(),F=T,ee=e=>(k=e.signal,x=e.effect,q=e.computed,T=e.batch||T,F=e.untracked||F),A=Symbol("signals"),N=Symbol("change"),$=(e,i)=>{if(!e||e[A]||e[Symbol.toStringTag])return e;if(e.constructor!==Object)return Array.isArray(e)?te(e):e;let t={...i?.[A]},r=k(Object.values(e).length),n=new Proxy(t,{get:(u,a)=>a===N?r:a===A?t:t[a]?.valueOf(),set:(u,a,p,m)=>(m=t[a],C(t,a,p),m??++r.value,1),deleteProperty:(u,a)=>(t[a]&&(t[a][Symbol.dispose]?.(),delete t[a],r.value--),1),ownKeys:()=>(r.value,Reflect.ownKeys(t))}),l=Object.getOwnPropertyDescriptors(e),s;for(let u in e)(s=l[u])?.get?(t[u]=q(s.get.bind(n)))._set=s.set?.bind(n):(t[u]=null,C(t,u,e[u]));return n},te=e=>{let i,t=k(e.length),r=Array(e.length).fill(),n=new Proxy(r,{get(l,s){if(typeof s=="symbol")return s===N?t:s===A?r:r[s];if(s==="length")return re.includes(i)?t.peek():t.value;if(i=s,r[s])return r[s].valueOf();if(s=t.peek()&&(t.value=r.length=+s+1);return 1},deleteProperty:(l,s)=>(r[s]?.[Symbol.dispose]?.(),delete r[s],1)});return n},re=["push","pop","shift","unshift","splice"],C=(e,i,t)=>{let r=e[i],n;i[0]==="_"?e[i]=t:r?t===(n=r.peek())||(r._set?r._set(t):Array.isArray(t)&&Array.isArray(n)?n[N]?T(()=>{for(let l=0;lK[e]=(r,n,l,s,u,a)=>(a=t(n),u=i(r,l,n,s,a),()=>u(a(l))),B=(e=document.body,i)=>{if(e[y])return Object.assign(e[y],i);let t=$(i||{}),r=[],n=[],l=(s,u=s.attributes)=>{if(u)for(let a=0;a(r.map(s=>s()),r=[]),e[D]=()=>r=n.map(s=>x(s)),e[V]=()=>(e[W](),e[W]=e[D]=e[V]=e[y]=null)),t};B.use=e=>(e.signal&&ee(e),e.compile&&(Z=e.compile),e.prefix&&(M=e.prefix));var I=(e,i,t)=>{if(t=H[e=e.trim()])return t;try{t=Z(e)}catch(r){X(r,i,e)}return H[e]=t},H={},X=(e,i="",t="")=>{throw Object.assign(e,{message:`\u2234 ${e.message} +var B=Symbol.dispose||(Symbol.dispose=Symbol("dispose")),l=Symbol("state"),H=Symbol("on"),K=Symbol("off"),G=Symbol("add"),T=":",O,I,U,X=e=>e(),R=X,D={},F={},Q=null,ie=(e=document.body,r)=>{if(e[l])return Object.assign(e[l],r);r=J(r||{});let t=[],o=[],n,i=()=>!o&&(o=t.map(c=>c())),s=()=>(o?.map(c=>c()),o=null);e[H]=i,e[K]=s,e[B]||(e[B]=()=>(e[K](),e[K]=e[H]=e[B]=e[l]=e[G]=null));let a=(c,f=c.attributes)=>{if(f)for(let d=0;d{let n,i,s=r.slice(T.length).split("..").map((a,c,{length:f})=>a.split(T).reduce((d,u)=>{let[m,...h]=u.split("."),$=A(t,D[Q=m]?.parse);if(m.startsWith("on")){let M=m.slice(2),L=ne(Object.assign(f==1?q=>$(o,z=>y(z,q)):q=>(n=(c?n:z=>y($(o),z))(q),i(),i=s[(c+1)%f]()),{target:e,type:M}),h);return q=>(q=d?.(),L.target.addEventListener(M,L,L),()=>(q?.(),L.target.removeEventListener(M,L)))}let w=(D[m]||D["*"])(e,o,t,m);if(!w)return;if(e[l]&&(o=e[l]),!h.length&&!d)return()=>I(()=>$(o,w));let x,P=O(-1),S=-1,V=C(ne(()=>{++P.value||(x=I(()=>w&&(P.value==S?V():(S=P.value,$(o,w)))))},h));return M=>(M=d?.(),V(),{[m]:()=>(M?.(),x(),P.value=-1,S=x=null)}[m])},null));return()=>i=s[0]?.()},Y=e=>(e.compile&&(ae=e.compile),e.prefix&&(T=e.prefix),e.signal&&(O=e.signal),e.effect&&(I=e.effect),e.computed&&(U=e.computed),e.batch&&(X=e.batch),e.untracked&&(R=e.untracked)),se=(e=document.body,r)=>{let t=J(r);return ie(e,t),new MutationObserver(n=>{for(let i of n)for(let s of i.addedNodes)if(s.nodeType===1&&s[l]===void 0){for(let a of s.attributes)if(a.name.startsWith(T)){e[G](s);break}}}).observe(e,{childList:!0,subtree:!0}),t},ae,A=(e,r,t)=>{if(t=A.cache[e])return t;let o=e.trim()||"undefined";r&&(o=r(o)),/^(if|let|const)\b/.test(o)||/;(?![^{]*})/.test(o)||(o=`return ${o}`),/\bawait\s/.test(o)&&(o=`return (async()=>{ ${o} })()`);try{t=ae(o),Object.defineProperty(t,"name",{value:`\u2234 ${e}`})}catch(n){console.error(`\u2234 ${n} -${i}${t?`="${t}" +${T+Q}="${e}"`)}return A.cache[e]=(n,i,s)=>{try{let a=t?.(n);return i?(a?.then?a.then(c=>s=i(c)):s=i(a),()=>y(s)):a}catch(a){console.error(`\u2234 ${a} -`:""}`,expr:t})},Z,M=":",E=e=>{if(!e.nodeType)return e;let i=e.content.cloneNode(!0),t=[...e.attributes],r=document.createTextNode(""),n=(i.append(r),[...i.childNodes]);return{childNodes:n,content:i,remove:()=>i.append(...n),replaceWith(l){l!==r&&(r.before(l),i.append(...n))},attributes:t,removeAttribute(l){t.splice(t.findIndex(s=>s.name===l),1)}}},S=B,z=Symbol("if");h("if",(e,i)=>{let t=document.createTextNode(""),r=e.nextElementSibling,n,l,s;return e.replaceWith(t),l=e.content?E(e):e,l[y]=null,r?.hasAttribute(":else")&&(r.removeAttribute(":else"),r.hasAttribute(":if")||(r.remove(),s=r.content?E(r):r,s[y]=null)),(u,a=u?l:e[z]?null:s)=>{r&&(r[z]=a===l),n!=a&&(n&&(n.remove(),n[W]?.()),(n=a)&&(t.before(n.content||n),n[y]===null?(delete n[y],S(n,i)):n[D]()))}}),h("each",(e,i,t)=>{let[r,n="$"]=t.split(/\bin\b/)[0].trim().split(/\s*,\s*/),l=document.createTextNode(""),s,u,a,p=0,m=()=>{var o,c;let d=0,b=a,g=b.length;if(s&&!s[N]){for(let _ of s[A]||[])_[Symbol.dispose]();s=null,p=0}if(g{v[Symbol.dispose]?.(),v.remove()}}}p=g};return e.replaceWith(l),e[y]=null,o=>{u=null,typeof o=="number"?a=Array.from({length:o},(d,b)=>b+1):o?.constructor===Object?(u=Object.keys(o),a=Object.values(o)):a=o||[];let c=0;return x(()=>{a[N]?.value,c++||(m(),queueMicrotask(()=>(c>1&&m(),c=0)))})}},e=>I(e.split(/\bin\b/)[1])),h("default",(e,i,t,r)=>{if(!r.startsWith("on"))return r?o=>j(e,r,o):o=>{for(let c in o)j(e,G(c),o[c])};let n=r.split("..").map(o=>{let c={evt:"",target:e,test:()=>!0};return c.evt=(o.startsWith("on")?o.slice(2):o).replace(/\.(\w+)?-?([-\w]+)?/g,(d,b,g="")=>(c.test=ie[b]?.(c,...g.split("-"))||c.test,"")),c}),l=(o,{evt:c,target:d,test:b,defer:g,stop:_,prevent:L,immediate:v,...R},P)=>(g&&(o=g(o)),P=w=>{try{b(w)&&(_&&(v?w.stopImmediatePropagation():w.stopPropagation()),L&&w.preventDefault(),o?.call(i,w))}catch(Y){X(Y,`:on${c}`,o)}},d.addEventListener(c,P,R),()=>d.removeEventListener(c,P,R));if(n.length==1)return o=>l(o,n[0]);let s,u,a,p=0,m=o=>{a=l(c=>(a(),u=o?.(c),(p=++p%n.length)?m(u):s&&m(s)),n[p])};return o=>(s=o,!a&&m(s),()=>s=null)});var ie={prevent(e){e.prevent=!0},stop(e){e.stop=!0},immediate(e){e.immediate=!0},once(e){e.once=!0},passive(e){e.passive=!0},capture(e){e.capture=!0},window(e){e.target=window},document(e){e.target=document},parent(e){e.target=e.target.parentNode},throttle(e,i=108){e.defer=t=>ne(t,i)},debounce(e,i=108){e.defer=t=>se(t,i)},outside:e=>i=>{let t=e.target;return!(t.contains(i.target)||i.target.isConnected===!1||t.offsetWidth<1&&t.offsetHeight<1)},self:e=>i=>i.target===e.target,ctrl:(e,...i)=>t=>f.ctrl(t)&&i.every(r=>f[r]?f[r](t):t.key===r),shift:(e,...i)=>t=>f.shift(t)&&i.every(r=>f[r]?f[r](t):t.key===r),alt:(e,...i)=>t=>f.alt(t)&&i.every(r=>f[r]?f[r](t):t.key===r),meta:(e,...i)=>t=>f.meta(t)&&i.every(r=>f[r]?f[r](t):t.key===r),arrow:()=>f.arrow,enter:()=>f.enter,esc:()=>f.esc,tab:()=>f.tab,space:()=>f.space,delete:()=>f.delete,digit:()=>f.digit,letter:()=>f.letter,char:()=>f.char},f={ctrl:e=>e.ctrlKey||e.key==="Control"||e.key==="Ctrl",shift:e=>e.shiftKey||e.key==="Shift",alt:e=>e.altKey||e.key==="Alt",meta:e=>e.metaKey||e.key==="Meta"||e.key==="Command",arrow:e=>e.key.startsWith("Arrow"),enter:e=>e.key==="Enter",esc:e=>e.key.startsWith("Esc"),tab:e=>e.key==="Tab",space:e=>e.key==="\xA0"||e.key==="Space"||e.key===" ",delete:e=>e.key==="Delete"||e.key==="Backspace",digit:e=>/^\d$/.test(e.key),letter:e=>/^\p{L}$/gu.test(e.key),char:e=>/^\S$/.test(e.key)},ne=(e,i)=>{let t,r,n=l=>{t=!0,setTimeout(()=>{if(t=!1,r)return r=!1,n(l),e(l)},i)};return l=>t?r=!0:(n(l),e(l))},se=(e,i)=>{let t;return r=>{clearTimeout(t),t=setTimeout(()=>{t=null,e(r)},i)}},j=(e,i,t)=>{t==null||t===!1?e.removeAttribute(i):e.setAttribute(i,t===!0?"":typeof t=="number"||typeof t=="string"?t:"")},G=e=>e.replace(/[A-Z\u00C0-\u00D6\u00D8-\u00DE]/g,(i,t)=>(t?"-":"")+i.toLowerCase());h("value",(e,i,t)=>{const r=e.type==="text"||e.type===""?n=>e.setAttribute("value",e.value=n??""):e.tagName==="TEXTAREA"||e.type==="text"||e.type===""?(n,l,s)=>(l=e.selectionStart,s=e.selectionEnd,e.setAttribute("value",e.value=n??""),l&&e.setSelectionRange(l,s)):e.type==="checkbox"?n=>(e.checked=n,j(e,"checked",n)):e.type==="select-one"?n=>{for(let l of e.options)l.value==n?l.setAttribute("selected",""):l.removeAttribute("selected");e.value=n}:e.type==="select-multiple"?n=>{for(let l of e.options)l.removeAttribute("selected");for(let l of n)e.querySelector(`[value="${l}"]`).setAttribute("selected","")}:n=>e.value=n;U(i,t);try{const n=Q(t),l=e.type==="checkbox"?()=>n(i,e.checked):e.type==="select-multiple"?()=>n(i,[...e.selectedOptions].map(s=>s.value)):()=>n(i,e.selectedIndex<0?null:e.value);e.oninput=e.onchange=l,e.type?.startsWith("select")&&(new MutationObserver(l).observe(e,{childList:!0,subtree:!0,attributes:!0}),S(e,i))}catch{}return r});var Q=(e,i=I(`${e}=__`))=>(t,r)=>(t.__=r,i(t,r),delete t.__),U=(e,i,t=i.match(/^\w+(?=\s*(?:\.|\[|$))/))=>{var r;return t&&(e[r=t[0]]??(e[r]=null))};h("ref",(e,i,t,r,n)=>(U(i,t),n(i)==null?(Q(t)(i,e),l=>l):l=>l.call(null,e))),h("with",(e,i,t)=>(t=null,r=>S(e,t?r:t=J(r,i)))),h("text",e=>(e.content&&e.replaceWith(e=E(e).childNodes[0]),i=>e.textContent=i??"")),h("class",(e,i)=>(i=new Set,t=>{let r=new Set;t&&(typeof t=="string"?t.split(" ").map(n=>r.add(n)):Array.isArray(t)?t.map(n=>n&&r.add(n)):Object.entries(t).map(([n,l])=>l&&r.add(n)));for(let n of i)r.has(n)?r.delete(n):e.classList.remove(n);for(let n of i=r)e.classList.add(n)})),h("style",(e,i)=>(i=e.getAttribute("style"),t=>{if(typeof t=="string")e.setAttribute("style",i+(i.endsWith(";")?"":"; ")+t);else{i&&e.setAttribute("style",i);for(let r in t)r[0]=="-"?e.style.setProperty(r,t[r]):e.style[r]=t[r]}})),h("fx",e=>i=>i),h("aria",e=>i=>{for(let t in i)j(e,"aria-"+G(t),i[t]==null?null:i[t]+"")}),h("data",e=>i=>{for(let t in i)e.dataset[t]=i[t]}),S.use({compile:e=>S.constructor(`with (arguments[0]) { return ${e} };`)});var le=S;export{le as default}; +${T+Q}="${e}"`)}}};A.cache={};var ne=(e,r)=>{for(;r.length;){let[t,...o]=r.pop().split("-");e=Ce(F[t]?.(e,...o)??e,e)}return e},Ce=(e,r)=>{if(e!=r)for(let t in r)e[t]??(e[t]=r[t]);return e},j=e=>{if(!e.nodeType)return e;let r=e.content.cloneNode(!0),t=[...e.attributes],o=document.createTextNode(""),n=(r.append(o),[...r.childNodes]);return{childNodes:n,content:r,remove:()=>r.append(...n),replaceWith(i){i!==o&&(o.before(i),r.append(...n))},attributes:t,removeAttribute(i){t.splice(t.findIndex(s=>s.name===i),1)}}},y=(e,r)=>typeof e=="function"?e(r):e,ce=e=>e.replace(/[A-Z\u00C0-\u00D6\u00D8-\u00DE]/g,(r,t)=>(t?"-":"")+r.toLowerCase()),b=(e,r,t)=>t==null||t===!1?e.removeAttribute(r):e.setAttribute(r,t===!0?"":t),_=(e,r=[])=>e?typeof e=="string"?e:(Array.isArray(e)?e.map(_):Object.entries(e).reduce((t,[o,n])=>n?[...t,o]:t,[])).join(" "):"",C=(e,r=queueMicrotask)=>{let t=0,o=n=>{t++||(e(n),r((i=t>1)=>(t=0,i&&o(n))))};return o},ue=(e,r=queueMicrotask,t=0)=>(o,n=++t)=>r(()=>n==t&&e(o)),p=ie;var g=Symbol("signals"),k=Symbol("change"),ee=Symbol("set"),v=!0,W=(e,r)=>{if(!e||e[Symbol.toStringTag]||e[g])return e;if(e.constructor!==Object)return Array.isArray(e)?We(e):e;let t=Object.keys(e).length,o={},n=new Proxy(Object.assign(o,{[k]:O(t),[g]:o}),{get:(s,a)=>a in o?o[a]?o[a].valueOf():o[a]:r?r[a]:globalThis[a],set:(s,a,c,f)=>a in o?(le(o,a,c),1):(v=!1,r&&a in r?r[a]=c:(Z(o,a,c),o[k].value=++t),v=!0,1),deleteProperty:(s,a)=>(a in o&&(a[0]!="_"&&o[a]?.[Symbol.dispose]?.(),delete o[a],o[k].value=--t),1),ownKeys:()=>(o[k].value,Reflect.ownKeys(o)),has:(s,a)=>a in o?!0:r?a in r:v}),i=Object.getOwnPropertyDescriptors(e);for(let s in e)i[s]?.get?(o[s]=U(i[s].get.bind(n)))[ee]=i[s].set?.bind(n):Z(o,s,e[s]);return n},We=(e,r=globalThis)=>{let t=Array(e.length).fill(null),o=!1,n=a=>function(){return o=!0,a.apply(this,arguments)},i=O(e.length),s=new Proxy(Object.assign(t,{[k]:i,[g]:t,push:n(t.push),pop:n(t.pop),shift:n(t.shift),unshift:n(t.unshift),splice:n(t.splice)}),{get(a,c){return c==="length"?o?(o=!1,t.length):i.value:typeof c=="symbol"||isNaN(c)?t[c]?.valueOf()??r[c]:(t[c]??(t[c]=O(W(e[c])))).valueOf()},set(a,c,f){if(c==="length"){for(let d=f;d=t.length?(Z(t,c,f),s.length=+c+1):t[c]?le(t,c,f):Z(t,c,f);return 1},deleteProperty:(a,c)=>(t[c]?.[Symbol.dispose]?.(),delete t[c],1)});return s},Z=(e,r,t)=>e[r]=r[0]=="_"||t?.peek?t:O(W(t)),le=(e,r,t,o,n)=>r[0]==="_"?e[r]=t:t!==(n=(o=e[r]).peek())&&(o[ee]?o[ee](t):Array.isArray(t)&&Array.isArray(n)?k in n?R(()=>X(()=>{for(let i=0;ir.value)=>r={get value(){return N?.deps.push(t.add(N)),e},set value(n){if(n!==e){e=n;for(let i of t)E?E.add(i):i()}},peek(){return e},toJSON:o,then:o,toString:o,valueOf:o},re=(e,r,t,o,n)=>(t=i=>{if(n=r,r=null,n?.call?.(),i=N,N=t,fe++>10)throw"Cycle detected";try{r=e()}finally{N=i,fe--}},o=t.deps=[],t(),i=>{for(r?.call?.();i=o.pop();)i.delete(t)}),pe=(e,r=te(),t,o,n=()=>t.value)=>t={get value(){return o||(o=re(()=>r.value=e())),r.value},peek:r.peek,toJSON:n,then:n,toString:n,valueOf:n},de=(e,r=!E)=>{E??(E=new Set);try{e()}finally{if(r){for(let t of E)t();E=null}}},me=(e,r,t)=>(r=N,N=null,t=e(),N=r,t);var ye=(e,r,t,o,n)=>{var i;return e._holder?p(o=e,r):(e[i=l]??(e[i]=null),o=e.content?j(e):e,e.replaceWith(t=document.createTextNode("")),o._holder=t._holder=t,t._clauses=[o._clause=[o,!1]],t.update=C(()=>{let s=t._clauses.find(([,a])=>a);s!=n&&(n?.[0].remove(),n?.[0][K]?.(),(n=s)&&(t.before(n[0].content||n[0]),n[0][l]?n[0][H]?.():(delete n[0][l],p(n[0],r))))})),s=>{o._clause[1]=s,o._holder.update()}};var he=(e,r,t,o,n=e)=>{for(t=e.content?j(e):e;n&&!(t._holder=n._holder);)n=n.previousSibling;return e.remove(),e[l]=null,t._holder._clauses.push(t._clause=[t,!0]),t._holder.update};var be=e=>(e.content&&e.replaceWith(e=j(e).childNodes[0]),r=>(r=y(r,e.textContent),e.textContent=r??""));var ge=(e,r,t)=>(r=new Set,o=>{t=new Set,o&&_(y(o,e.className)).split(" ").map(n=>n&&t.add(n));for(let n of r)t.has(n)?t.delete(n):e.classList.remove(n);for(let n of r=t)e.classList.add(n)});var xe=(e,r)=>(r=e.getAttribute("style"),t=>{if(t=y(t,e.style),typeof t=="string")b(e,"style",r+"; "+t);else{r&&b(e,"style",r);for(let o in t)o[0]=="-"?e.style.setProperty(o,t[o]):o[0]>"A"&&(e.style[o]=t[o])}});var Se=()=>y;var Pe=(e,r=A(`${e}=__`))=>(t,o)=>{t.__=o,r(t),delete t.__},Ae=(e,r,t,o)=>{try{let n=Pe(t),i=e.type==="checkbox"?()=>n(r,e.checked):e.type==="select-multiple"?()=>n(r,[...e.selectedOptions].map(s=>s.value)):()=>n(r,e.selectedIndex<0?null:e.value);e.oninput=e.onchange=i,e.type?.startsWith("select")&&(new MutationObserver(i).observe(e,{childList:!0,subtree:!0,attributes:!0}),p(e,r)),A(t)(r)??i()}catch{}return e.type==="text"||e.type===""?n=>e.setAttribute("value",e.value=n??""):e.tagName==="TEXTAREA"||e.type==="text"||e.type===""?(n,i,s)=>(i=e.selectionStart,s=e.selectionEnd,e.setAttribute("value",e.value=n??""),i&&e.setSelectionRange(i,s)):e.type==="checkbox"?n=>(e.checked=n,b(e,"checked",n)):e.type==="radio"?n=>e.value===n&&(e.checked=n,b(e,"checked",n)):e.type==="select-one"?n=>{for(let i of e.options)i.value==n?i.setAttribute("selected",""):i.removeAttribute("selected");e.value=n}:e.type==="select-multiple"?n=>{for(let i of e.options)i.removeAttribute("selected");for(let i of n)e.querySelector(`[value="${i}"]`).setAttribute("selected","")}:n=>e.value=n};var Oe=(e,r,t,o,n,i)=>{if(typeof A(t)(r)=="function")return s=>s(e);Object.defineProperty(r,t,{value:e,configurable:!0})};var ke=(e,r)=>{let t=e[l]=W({},r),o=!1;return n=>{if(n=y(n,t),n!==t)for(let i in n){let s=typeof n[i]=="function"?n[i].bind(t):n[i];i in t[g]?t[i]=s:t[g][i]=i[0]=="_"||s?.peek?s:O(W(s))}return!o&&(o=!0,delete e[l],R(()=>p(e,t)))}};var je=(e,r,t)=>{let[o,n="$"]=t.split(/\bin\b/)[0].trim().replace(/\(|\)/g,"").split(/\s*,\s*/),i=document.createTextNode(""),s,a,c,f=0,d=C(()=>{var $,w;let u=0,m=c,h=m.length;if(s&&!s[k]){for(let x of s[g]||[])x[Symbol.dispose]();s=null,f=0}if(hs[x]},[n]:{value:a?a[x]:x}}),S=e.content?j(e):e.cloneNode(!0);i.before(S.content||S),p(S,P);let V=((w=s[$=g]||(s[$]=[]))[u]||(w[u]={}))[Symbol.dispose];s[g][u][Symbol.dispose]=()=>{V?.(),S[Symbol.dispose]?.(),S.remove()}}}f=h});return e.replaceWith(i),e[l]=null,u=>(a=null,typeof u=="number"?c=Array.from({length:u},(m,h)=>h+1):u?.constructor===Object?(a=Object.keys(u),c=Object.values(u)):c=u||[],I(()=>{c[k]?.value,d()}))};je.parse=e=>e.split(/\bin\b/)[1].trim();var Ne=je;var $e=(e,r,t,o)=>n=>b(e,o,y(n,e.getAttribute(o)));var we=e=>r=>{for(let t in r)b(e,ce(t),r[t])};Object.assign(D,{"*":$e,"":we,class:ge,text:be,style:xe,fx:Se,value:Ae,ref:Oe,scope:ke,if:ye,else:he,each:Ne});Object.assign(F,{debounce:(e,r=250,t=r==="tick"?queueMicrotask:r==="raf"?requestAnimationFrame:r==="idle"?requestIdleCallback:n=>setTimeout(n,r),o=0)=>ue(e,t),throttle:(e,r=250,t=r==="tick"?queueMicrotask:r==="raf"?requestAnimationFrame:o=>setTimeout(o,r))=>C(e,t),once:(e,r,t)=>Object.assign(o=>!r&&(r=1,e(o)),{once:!0}),prevent:e=>r=>(r?.preventDefault(),e(r)),stop:e=>r=>(r?.stopPropagation(),e(r)),immediate:e=>r=>(r?.stopImmediatePropagation(),e(r)),passive:e=>(e.passive=!0,e),capture:e=>(e.capture=!0,e),window:e=>(e.target=window,e),document:e=>(e.target=document,e),parent:e=>(e.target=e.target.parentNode,e),self:e=>r=>r.target===e.target&&e(r),outside:e=>(r,t)=>(t=e.target,!t.contains(r.target)&&r.target.isConnected&&(t.offsetWidth||t.offsetHeight))});var oe={ctrl:e=>e.ctrlKey||e.key==="Control"||e.key==="Ctrl",shift:e=>e.shiftKey||e.key==="Shift",alt:e=>e.altKey||e.key==="Alt",meta:e=>e.metaKey||e.key==="Meta"||e.key==="Command",arrow:e=>e.key.startsWith("Arrow"),enter:e=>e.key==="Enter",esc:e=>e.key.startsWith("Esc"),tab:e=>e.key==="Tab",space:e=>e.key==="\xA0"||e.key==="Space"||e.key===" ",delete:e=>e.key==="Delete"||e.key==="Backspace",digit:e=>/^\d$/.test(e.key),letter:e=>/^\p{L}$/gu.test(e.key),char:e=>/^\S$/.test(e.key)};for(let e in oe)F[e]=(r,...t)=>o=>oe[e](o)&&t.every(n=>oe[n]?.(o)??o.key===n)&&r(o);Y({compile:e=>p.constructor(`with (arguments[0]) { ${e} }`),signal:te,effect:re,computed:pe,batch:de,untracked:me});p.use=Y;p.store=J;p.directive=D;p.modifier=F;p.start=se;var Et=p;export{de as batch,pe as computed,Et as default,re as effect,te as signal,p as sprae,se as start,J as store,me as untracked,Y as use}; From 86f9cdbf0e2f25f21ada8224513e586ddf299631 Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Sun, 19 Oct 2025 19:38:26 +0200 Subject: [PATCH 33/39] update pota, marko, lui, leptos, sprae, vode --- webdriver-ts-results/src/results.ts | 207 ++++++++++++++-------------- webdriver-ts/results.json | 2 +- 2 files changed, 106 insertions(+), 103 deletions(-) diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index 690175aca..1d47f579a 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -52,106 +52,106 @@ export const results: RawResult[]=[ {"f":48,"b":[{"b":0,"v":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"b":1,"v":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"b":2,"v":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"b":3,"v":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"b":4,"v":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"b":5,"v":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"b":6,"v":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"b":7,"v":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"b":8,"v":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[5.19]}},{"b":11,"v":{"DEFAULT":[5.15]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[30.11]}},{"b":14,"v":{"DEFAULT":[75]}},{"b":15,"v":{"DEFAULT":[24.6]}},{"b":16,"v":{"DEFAULT":[91.1]}}]}, {"f":49,"b":[{"b":0,"v":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"b":1,"v":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"b":2,"v":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"b":3,"v":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"b":4,"v":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"b":5,"v":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"b":6,"v":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"b":7,"v":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"b":8,"v":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[3.35]}},{"b":10,"v":{"DEFAULT":[15.24]}},{"b":11,"v":{"DEFAULT":[15.31]}},{"b":12,"v":{"DEFAULT":[4.1]}},{"b":13,"v":{"DEFAULT":[114.91]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[634.5]}}]}, {"f":50,"b":[{"b":0,"v":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"b":1,"v":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"b":2,"v":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"b":3,"v":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"b":4,"v":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"b":5,"v":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"b":6,"v":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"b":7,"v":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"b":8,"v":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[5.76]}},{"b":11,"v":{"DEFAULT":[6.27]}},{"b":12,"v":{"DEFAULT":[4.69]}},{"b":13,"v":{"DEFAULT":[43.59]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[176.3]}}]}, -{"f":51,"b":[{"b":0,"v":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"b":1,"v":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"b":2,"v":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"b":3,"v":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"b":4,"v":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"b":5,"v":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"b":6,"v":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"b":7,"v":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"b":8,"v":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"b":9,"v":{"DEFAULT":[1.76]}},{"b":10,"v":{"DEFAULT":[5.53]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.56]}},{"b":13,"v":{"DEFAULT":[37.23]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[225.8]}}]}, +{"f":51,"b":[{"b":0,"v":{"total":[28.5,29.6,30.1,29.6,29.8,29.6,29.3,29.4,29.4,29.7,29.5,29.9,29.4,29.5,30.3],"script":[6.6,7.1,7.5,7.1,7.4,6.9,6.8,7,6.9,7.1,6.9,7,7.1,6.8,7.5],"paint":[21.4,22,22,22,21.8,22.2,21.9,21.8,22,22.1,22,22.4,21.7,22.1,22.2]}},{"b":1,"v":{"total":[34.8,34.4,34.9,35.4,34.4,34.8,35.2,36.2,34.9,34.5,34.7,34.4,35.2,34.6,34.7],"script":[11.3,11.2,11.3,12,11.2,11.3,11.4,11.9,11.4,11.2,11.6,11.3,11.5,11.2,11.3],"paint":[23,22.6,23,22.8,22.6,22.9,23.3,23.7,22.8,22.8,22.5,22.5,23.1,22.8,22.9]}},{"b":2,"v":{"total":[15.4,15.3,14.5,14.5,16.1,20.4,18.3,14.8,16.1,15.5,15.1,16.4,15,15.9,14.8],"script":[4,3.7,3.5,3.7,3.7,4.3,4.5,3.7,4.4,3.6,3.8,4.6,3.3,4.5,3.5],"paint":[9.7,10.1,9.8,9.5,11.3,13.9,12.4,9.4,10.5,10,9.7,10.5,10.5,10.7,9.7]}},{"b":3,"v":{"total":[6.2,5.8,5.6,6,5.2,5.3,5.7,5.8,6.2,6.1,5.9,5.3,5.9,5.4,5.5,5.4,5.9,5,6.1,7.1,5.3,6.2,5.7,5.2,5.4],"script":[3.7,3.1,3.2,3.2,3.4,2.8,3.2,3,3.9,3.1,3.7,3.1,3.4,3,3.4,3.3,3.4,2.9,3.7,5,3.5,3.4,3.1,3.5,3.2],"paint":[1.9,2.6,1.2,2.7,1.2,2.1,1.4,2.7,1.8,2.4,1.6,1.3,2.3,2.1,2,0.9,2.4,2,1.8,2,1.3,2.4,1.7,1,1.8]}},{"b":4,"v":{"total":[16.7,16,16.3,15.9,16.2,15.7,17.6,16,16.6,16.3,16.1,16.3,16.5,17.2,15.6],"script":[3.6,2.9,3,3.4,2.8,3.2,3.1,3.5,3.1,3.2,3.5,3.1,2.9,3.6,3.5],"paint":[11.8,12.1,12.3,10.8,12.2,10.7,13.4,11.2,12.3,11.5,11.5,12.3,12.6,12,10.4]}},{"b":5,"v":{"total":[12.7,12.7,12.8,12.5,13,12.6,12.6,12.6,13.1,13.9,12.4,12.6,12.7,12.5,12.6],"script":[2.4,2.4,2.4,2.4,2.4,2.2,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[9.4,9.8,9.6,9.6,10.2,9.8,9.4,9.7,10.1,10.6,9.4,9.7,9.7,9.6,9.6]}},{"b":6,"v":{"total":[301.1,298.4,299.8,300,302.2,302.3,298.5,300.7,300.5,299.5,300.9,301.5,300.1,300.4,301.7],"script":[66.7,65.8,66.6,66.1,66.6,66.4,65.6,68,67,66.1,66.1,65.1,66.6,66.4,66.7],"paint":[226.8,225.1,225.8,226.5,228.2,228.6,225.4,225.2,226,225.9,227,228.5,225.9,225.9,227.5]}},{"b":7,"v":{"total":[34.8,34.1,35.4,34.9,34.8,34.3,34.3,34.9,34.5,33.8,34.1,33.6,34.2,35,34.3],"script":[7,6.8,7.1,6.7,7.1,7,6.9,7,7,6.7,6.9,6.8,6.8,7.2,7],"paint":[26.9,26.3,27.4,27.3,26.8,26.4,26.4,27,26.6,26.2,26.3,25.8,26.5,27,26.4]}},{"b":8,"v":{"total":[17.6,17.7,18.4,18.2,18,18.2,17.7,18.4,17.9,18.9,18.8,17.8,16.2,18.1,18.2],"script":[15.7,15.3,16.2,16.2,15.6,15.8,15.8,16.3,15.4,17.1,16.8,15.7,14.3,15.5,15.8],"paint":[0.3,1.8,0.9,0.8,2.1,1.2,1.1,1.6,2.1,1.2,1,1.3,0.5,1.8,1.4]}},{"b":9,"v":{"DEFAULT":[1.77]}},{"b":10,"v":{"DEFAULT":[5.47]}},{"b":11,"v":{"DEFAULT":[5.53]}},{"b":12,"v":{"DEFAULT":[4.55]}},{"b":13,"v":{"DEFAULT":[37.15]}},{"b":14,"v":{"DEFAULT":[189.6]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[224.2]}}]}, {"f":52,"b":[{"b":0,"v":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"b":1,"v":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"b":2,"v":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"b":3,"v":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"b":4,"v":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"b":5,"v":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"b":6,"v":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"b":7,"v":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"b":8,"v":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.68]}},{"b":10,"v":{"DEFAULT":[2.87]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[21.11]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[54.6]}}]}, {"f":53,"b":[{"b":0,"v":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"b":1,"v":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"b":2,"v":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"b":3,"v":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"b":4,"v":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"b":5,"v":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"b":6,"v":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"b":7,"v":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"b":8,"v":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[2.64]}},{"b":11,"v":{"DEFAULT":[2.66]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.03]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, -{"f":54,"b":[{"b":0,"v":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"b":1,"v":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"b":2,"v":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"b":3,"v":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"b":4,"v":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"b":5,"v":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"b":6,"v":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"b":7,"v":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"b":8,"v":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[4.05]}},{"b":11,"v":{"DEFAULT":[4.07]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[33.88]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[40.2]}}]}, -{"f":55,"b":[{"b":0,"v":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"b":1,"v":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"b":2,"v":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"b":3,"v":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"b":4,"v":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"b":5,"v":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"b":6,"v":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"b":7,"v":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"b":8,"v":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.33]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[23.85]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[74.6]}}]}, -{"f":56,"b":[{"b":0,"v":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"b":1,"v":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"b":2,"v":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"b":3,"v":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"b":4,"v":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"b":5,"v":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"b":6,"v":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"b":7,"v":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"b":8,"v":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[35.1]}}]}, -{"f":57,"b":[{"b":0,"v":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"b":1,"v":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"b":2,"v":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"b":3,"v":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"b":4,"v":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"b":5,"v":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"b":6,"v":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"b":7,"v":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"b":8,"v":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.67]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[17.51]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[77]}}]}, -{"f":58,"b":[{"b":0,"v":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"b":1,"v":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"b":2,"v":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"b":3,"v":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"b":4,"v":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"b":6,"v":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"b":7,"v":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"b":8,"v":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.17]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.58]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[93.1]}}]}, -{"f":59,"b":[{"b":0,"v":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"b":1,"v":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"b":2,"v":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"b":3,"v":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"b":4,"v":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"b":5,"v":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"b":6,"v":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"b":7,"v":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"b":8,"v":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[56.9]}}]}, -{"f":60,"b":[{"b":0,"v":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"b":1,"v":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"b":2,"v":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"b":3,"v":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"b":4,"v":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"b":5,"v":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"b":6,"v":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"b":7,"v":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"b":8,"v":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.45]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, -{"f":61,"b":[{"b":0,"v":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"b":1,"v":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"b":2,"v":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"b":3,"v":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"b":4,"v":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"b":5,"v":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"b":6,"v":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"b":7,"v":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"b":8,"v":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.02]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[45.2]}}]}, -{"f":62,"b":[{"b":0,"v":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"b":2,"v":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"b":3,"v":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"b":4,"v":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"b":6,"v":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"b":7,"v":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"b":8,"v":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.35]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.14]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[41.9]}}]}, -{"f":63,"b":[{"b":0,"v":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"b":1,"v":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"b":2,"v":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"b":3,"v":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"b":4,"v":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"b":5,"v":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"b":6,"v":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"b":7,"v":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"b":8,"v":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"b":9,"v":{"DEFAULT":[2.59]}},{"b":10,"v":{"DEFAULT":[8.07]}},{"b":11,"v":{"DEFAULT":[10.85]}},{"b":12,"v":{"DEFAULT":[8.17]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[490.3]}}]}, -{"f":64,"b":[{"b":0,"v":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"b":1,"v":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"b":2,"v":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"b":3,"v":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"b":4,"v":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"b":5,"v":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"b":6,"v":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"b":7,"v":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"b":8,"v":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.34]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[27.18]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[50]}}]}, -{"f":65,"b":[{"b":0,"v":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"b":1,"v":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"b":2,"v":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"b":3,"v":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"b":4,"v":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"b":5,"v":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"b":6,"v":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"b":7,"v":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"b":8,"v":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[56.4]}}]}, -{"f":66,"b":[{"b":0,"v":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"b":1,"v":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"b":2,"v":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"b":3,"v":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"b":4,"v":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"b":5,"v":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"b":6,"v":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"b":7,"v":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"b":8,"v":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.8]}}]}, -{"f":67,"b":[{"b":0,"v":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"b":1,"v":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"b":2,"v":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"b":3,"v":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"b":4,"v":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"b":5,"v":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"b":6,"v":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"b":7,"v":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"b":8,"v":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.77]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[291.2]}}]}, -{"f":68,"b":[{"b":0,"v":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"b":1,"v":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"b":2,"v":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"b":3,"v":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"b":4,"v":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"b":6,"v":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"b":7,"v":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"b":8,"v":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[4.01]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.8]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[42.1]}}]}, -{"f":69,"b":[{"b":0,"v":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"b":1,"v":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"b":2,"v":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"b":3,"v":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"b":4,"v":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"b":5,"v":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"b":6,"v":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"b":7,"v":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"b":8,"v":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[56.6]}}]}, -{"f":70,"b":[{"b":0,"v":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"b":1,"v":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"b":2,"v":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"b":3,"v":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"b":4,"v":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"b":5,"v":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"b":6,"v":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"b":7,"v":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"b":8,"v":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"b":9,"v":{"DEFAULT":[3.32]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[4.89]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[16.25]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[113]}}]}, -{"f":71,"b":[{"b":0,"v":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"b":1,"v":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"b":2,"v":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"b":3,"v":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"b":4,"v":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"b":5,"v":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"b":6,"v":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"b":7,"v":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"b":8,"v":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.35]}},{"b":13,"v":{"DEFAULT":[23.87]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.7]}}]}, -{"f":72,"b":[{"b":0,"v":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"b":1,"v":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"b":2,"v":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"b":3,"v":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"b":4,"v":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"b":5,"v":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"b":6,"v":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"b":7,"v":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"b":8,"v":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, -{"f":73,"b":[{"b":0,"v":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"b":1,"v":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"b":2,"v":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"b":3,"v":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"b":4,"v":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"b":5,"v":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"b":6,"v":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"b":7,"v":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"b":8,"v":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.63]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.04]}},{"b":14,"v":{"DEFAULT":[17.4]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[46.4]}}]}, -{"f":74,"b":[{"b":0,"v":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"b":1,"v":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"b":2,"v":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"b":3,"v":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"b":4,"v":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"b":5,"v":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"b":6,"v":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"b":7,"v":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"b":8,"v":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.61]}},{"b":11,"v":{"DEFAULT":[3.66]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.27]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49]}}]}, -{"f":75,"b":[{"b":0,"v":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"b":1,"v":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"b":3,"v":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"b":4,"v":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"b":5,"v":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"b":6,"v":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"b":7,"v":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"b":8,"v":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, -{"f":76,"b":[{"b":0,"v":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"b":1,"v":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"b":2,"v":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"b":3,"v":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"b":4,"v":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"b":5,"v":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"b":6,"v":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"b":7,"v":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"b":8,"v":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.04]}},{"b":13,"v":{"DEFAULT":[49.14]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, -{"f":77,"b":[{"b":0,"v":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"b":1,"v":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"b":2,"v":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"b":3,"v":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"b":4,"v":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"b":5,"v":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"b":6,"v":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"b":7,"v":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"b":8,"v":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[5.12]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.17]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[52]}}]}, -{"f":78,"b":[{"b":0,"v":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"b":1,"v":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"b":2,"v":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"b":3,"v":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"b":4,"v":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"b":5,"v":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"b":6,"v":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"b":7,"v":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"b":8,"v":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.19]}},{"b":12,"v":{"DEFAULT":[4.82]}},{"b":13,"v":{"DEFAULT":[39.51]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[108.8]}}]}, -{"f":79,"b":[{"b":0,"v":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"b":1,"v":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"b":2,"v":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"b":3,"v":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"b":4,"v":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"b":5,"v":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"b":6,"v":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"b":7,"v":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"b":8,"v":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.99]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.93]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, -{"f":80,"b":[{"b":0,"v":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"b":1,"v":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"b":2,"v":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"b":3,"v":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"b":4,"v":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"b":5,"v":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"b":6,"v":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"b":7,"v":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"b":8,"v":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.75]}},{"b":11,"v":{"DEFAULT":[8.76]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.15]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[232.5]}}]}, -{"f":81,"b":[{"b":0,"v":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"b":1,"v":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"b":2,"v":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"b":3,"v":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"b":4,"v":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"b":5,"v":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"b":6,"v":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"b":7,"v":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"b":8,"v":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.36]}},{"b":12,"v":{"DEFAULT":[3.27]}},{"b":13,"v":{"DEFAULT":[53.15]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[376]}}]}, -{"f":82,"b":[{"b":0,"v":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"b":1,"v":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"b":2,"v":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"b":4,"v":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"b":5,"v":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"b":6,"v":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"b":7,"v":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"b":8,"v":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"b":9,"v":{"DEFAULT":[1.19]}},{"b":10,"v":{"DEFAULT":[4.63]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, -{"f":83,"b":[{"b":0,"v":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"b":1,"v":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"b":2,"v":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"b":3,"v":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"b":4,"v":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"b":5,"v":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"b":6,"v":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"b":7,"v":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"b":8,"v":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.66]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[33.35]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[202.7]}}]}, -{"f":84,"b":[{"b":0,"v":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"b":1,"v":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"b":2,"v":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"b":3,"v":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"b":4,"v":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"b":5,"v":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"b":6,"v":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"b":7,"v":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"b":8,"v":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.46]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.85]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.5]}}]}, -{"f":85,"b":[{"b":0,"v":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"b":1,"v":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"b":2,"v":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"b":3,"v":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"b":4,"v":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"b":5,"v":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"b":6,"v":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"b":7,"v":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"b":8,"v":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.67]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[207.4]}}]}, -{"f":86,"b":[{"b":0,"v":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"b":1,"v":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"b":2,"v":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"b":3,"v":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"b":4,"v":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"b":5,"v":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"b":6,"v":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"b":7,"v":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"b":8,"v":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[5.79]}},{"b":11,"v":{"DEFAULT":[6.19]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[43.45]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[209.9]}}]}, -{"f":87,"b":[{"b":0,"v":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"b":1,"v":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"b":2,"v":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"b":3,"v":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"b":4,"v":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"b":5,"v":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"b":6,"v":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"b":7,"v":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"b":8,"v":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.77]}},{"b":12,"v":{"DEFAULT":[2.77]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[215.2]}}]}, -{"f":88,"b":[{"b":0,"v":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"b":1,"v":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"b":2,"v":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"b":3,"v":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"b":4,"v":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"b":5,"v":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"b":6,"v":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"b":7,"v":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"b":8,"v":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.24]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.61]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[266]}}]}, -{"f":89,"b":[{"b":0,"v":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"b":1,"v":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"b":2,"v":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"b":3,"v":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"b":4,"v":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"b":5,"v":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"b":6,"v":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"b":7,"v":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"b":8,"v":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[6.64]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[340.2]}}]}, -{"f":90,"b":[{"b":0,"v":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"b":1,"v":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"b":2,"v":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"b":3,"v":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"b":4,"v":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"b":5,"v":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"b":6,"v":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"b":7,"v":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"b":8,"v":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.64]}},{"b":11,"v":{"DEFAULT":[9.33]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[70.58]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[212.4]}}]}, -{"f":91,"b":[{"b":0,"v":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"b":1,"v":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"b":2,"v":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"b":3,"v":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"b":4,"v":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"b":5,"v":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"b":6,"v":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"b":7,"v":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"b":8,"v":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.44]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[45.41]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, -{"f":92,"b":[{"b":0,"v":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"b":1,"v":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"b":2,"v":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"b":3,"v":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"b":4,"v":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"b":5,"v":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"b":6,"v":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"b":7,"v":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"b":8,"v":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.44]}},{"b":11,"v":{"DEFAULT":[6.93]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[276.7]}}]}, -{"f":93,"b":[{"b":0,"v":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"b":1,"v":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"b":2,"v":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"b":3,"v":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"b":4,"v":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"b":5,"v":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"b":6,"v":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"b":7,"v":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"b":8,"v":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[8.62]}},{"b":11,"v":{"DEFAULT":[9.31]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.21]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[224.7]}}]}, -{"f":94,"b":[{"b":0,"v":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"b":1,"v":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"b":2,"v":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"b":3,"v":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"b":4,"v":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"b":5,"v":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"b":6,"v":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"b":7,"v":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"b":8,"v":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.43]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.95]}},{"b":13,"v":{"DEFAULT":[30.4]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219.6]}}]}, -{"f":95,"b":[{"b":0,"v":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"b":1,"v":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"b":2,"v":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"b":3,"v":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"b":4,"v":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"b":5,"v":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"b":6,"v":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"b":7,"v":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"b":8,"v":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[37.08]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, -{"f":96,"b":[{"b":0,"v":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"b":1,"v":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"b":2,"v":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"b":3,"v":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"b":4,"v":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"b":5,"v":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"b":6,"v":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"b":7,"v":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"b":8,"v":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.28]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.47]}},{"b":12,"v":{"DEFAULT":[2.48]}},{"b":13,"v":{"DEFAULT":[35.36]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[207.8]}}]}, -{"f":97,"b":[{"b":0,"v":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"b":1,"v":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"b":2,"v":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"b":3,"v":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"b":4,"v":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"b":5,"v":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"b":6,"v":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"b":7,"v":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"b":8,"v":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[6.16]}},{"b":11,"v":{"DEFAULT":[6.76]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[47.98]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, -{"f":98,"b":[{"b":0,"v":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"b":1,"v":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"b":2,"v":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"b":3,"v":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"b":4,"v":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"b":5,"v":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"b":6,"v":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"b":7,"v":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"b":8,"v":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.45]}},{"b":10,"v":{"DEFAULT":[6.31]}},{"b":11,"v":{"DEFAULT":[7.04]}},{"b":12,"v":{"DEFAULT":[2.95]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[291.4]}}]}, -{"f":99,"b":[{"b":0,"v":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"b":1,"v":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"b":2,"v":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"b":3,"v":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"b":4,"v":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"b":5,"v":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"b":6,"v":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"b":7,"v":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.51]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.15]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, -{"f":100,"b":[{"b":0,"v":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"b":1,"v":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"b":2,"v":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"b":3,"v":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"b":4,"v":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"b":5,"v":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"b":6,"v":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"b":7,"v":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"b":8,"v":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.53]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[29.02]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, -{"f":101,"b":[{"b":0,"v":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"b":1,"v":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"b":2,"v":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"b":4,"v":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"b":5,"v":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"b":6,"v":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"b":7,"v":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"b":8,"v":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.79]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[20.86]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, -{"f":102,"b":[{"b":0,"v":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"b":1,"v":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"b":2,"v":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"b":3,"v":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"b":4,"v":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"b":5,"v":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"b":6,"v":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"b":7,"v":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"b":8,"v":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[47.8]}}]}, -{"f":103,"b":[{"b":0,"v":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"b":1,"v":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"b":2,"v":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"b":3,"v":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"b":4,"v":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"b":5,"v":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"b":6,"v":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"b":7,"v":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"b":8,"v":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.49]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.96]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[46.1]}}]}, -{"f":104,"b":[{"b":0,"v":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"b":1,"v":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"b":2,"v":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"b":3,"v":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"b":4,"v":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"b":5,"v":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"b":6,"v":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"b":7,"v":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"b":8,"v":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.77]}},{"b":11,"v":{"DEFAULT":[3.81]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[31.38]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[50.8]}}]}, -{"f":105,"b":[{"b":0,"v":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"b":1,"v":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"b":2,"v":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"b":3,"v":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"b":4,"v":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"b":5,"v":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"b":6,"v":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"b":7,"v":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"b":8,"v":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.46]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[25.83]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[91.7]}}]}, -{"f":106,"b":[{"b":0,"v":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"b":1,"v":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"b":2,"v":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"b":3,"v":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"b":4,"v":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"b":5,"v":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"b":6,"v":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"b":7,"v":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"b":8,"v":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.04]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[39.64]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93.8]}}]}, -{"f":107,"b":[{"b":0,"v":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"b":1,"v":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"b":2,"v":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"b":3,"v":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"b":4,"v":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"b":5,"v":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"b":6,"v":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"b":7,"v":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"b":8,"v":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.99]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[103.3]}}]}, -{"f":108,"b":[{"b":0,"v":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"b":1,"v":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"b":3,"v":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"b":4,"v":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"b":5,"v":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"b":6,"v":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"b":7,"v":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"b":8,"v":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.42]}},{"b":11,"v":{"DEFAULT":[11.17]}},{"b":12,"v":{"DEFAULT":[23.36]}},{"b":13,"v":{"DEFAULT":[68.52]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[387.8]}}]}, -{"f":109,"b":[{"b":0,"v":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"b":1,"v":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"b":2,"v":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"b":3,"v":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"b":4,"v":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"b":5,"v":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"b":6,"v":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"b":7,"v":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"b":8,"v":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.27]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[208.5]}}]}, -{"f":110,"b":[{"b":0,"v":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"b":1,"v":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"b":3,"v":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"b":4,"v":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"b":5,"v":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"b":6,"v":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"b":7,"v":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"b":8,"v":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.43]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, -{"f":111,"b":[{"b":0,"v":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"b":1,"v":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"b":2,"v":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"b":4,"v":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"b":5,"v":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"b":6,"v":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"b":7,"v":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"b":8,"v":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.99]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[41]}}]}, -{"f":112,"b":[{"b":0,"v":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"b":1,"v":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"b":2,"v":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"b":3,"v":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"b":4,"v":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"b":5,"v":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"b":6,"v":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"b":7,"v":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"b":8,"v":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[42.3]}}]}, -{"f":113,"b":[{"b":0,"v":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"b":1,"v":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"b":2,"v":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"b":3,"v":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"b":4,"v":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"b":5,"v":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"b":6,"v":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"b":8,"v":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[22.64]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[42.2]}}]}, -{"f":114,"b":[{"b":0,"v":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"b":1,"v":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"b":2,"v":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"b":3,"v":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"b":4,"v":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"b":6,"v":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"b":7,"v":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"b":8,"v":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.82]}},{"b":11,"v":{"DEFAULT":[1.83]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.61]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.7]}}]}, -{"f":115,"b":[{"b":0,"v":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"b":1,"v":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"b":2,"v":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"b":3,"v":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"b":4,"v":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"b":5,"v":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"b":6,"v":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"b":7,"v":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"b":8,"v":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.08]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.97]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[130]}}]}, -{"f":116,"b":[{"b":0,"v":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"b":1,"v":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"b":2,"v":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"b":3,"v":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"b":4,"v":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"b":5,"v":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"b":6,"v":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"b":7,"v":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"b":8,"v":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[4.52]}},{"b":11,"v":{"DEFAULT":[4.58]}},{"b":12,"v":{"DEFAULT":[3.09]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[109.1]}}]}, -{"f":117,"b":[{"b":0,"v":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"b":1,"v":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"b":2,"v":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"b":3,"v":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"b":4,"v":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"b":5,"v":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"b":6,"v":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"b":7,"v":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"b":8,"v":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.59]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.75]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[52.6]}}]}, -{"f":118,"b":[{"b":0,"v":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"b":1,"v":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"b":2,"v":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"b":3,"v":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"b":4,"v":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"b":5,"v":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"b":6,"v":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"b":7,"v":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"b":8,"v":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.29]}},{"b":11,"v":{"DEFAULT":[3.29]}},{"b":12,"v":{"DEFAULT":[2.32]}},{"b":13,"v":{"DEFAULT":[16.46]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[51.3]}}]}, -{"f":119,"b":[{"b":0,"v":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"b":1,"v":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"b":2,"v":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"b":3,"v":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"b":4,"v":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"b":5,"v":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"b":6,"v":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"b":7,"v":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"b":8,"v":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.58]}},{"b":11,"v":{"DEFAULT":[3.65]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[52.4]}}]}, -{"f":120,"b":[{"b":0,"v":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"b":1,"v":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"b":2,"v":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"b":3,"v":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"b":4,"v":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"b":5,"v":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"b":6,"v":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"b":7,"v":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"b":8,"v":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[49.5]}}]}, -{"f":121,"b":[{"b":0,"v":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"b":1,"v":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"b":2,"v":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"b":3,"v":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"b":4,"v":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"b":5,"v":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"b":6,"v":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"b":7,"v":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"b":8,"v":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.96]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.2]}}]}, -{"f":122,"b":[{"b":0,"v":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"b":1,"v":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"b":2,"v":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"b":3,"v":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"b":4,"v":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"b":5,"v":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"b":6,"v":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"b":7,"v":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"b":8,"v":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[208.1]}}]}, -{"f":123,"b":[{"b":0,"v":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"b":1,"v":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"b":2,"v":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"b":3,"v":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"b":4,"v":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"b":5,"v":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"b":6,"v":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"b":7,"v":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"b":8,"v":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.79]}},{"b":13,"v":{"DEFAULT":[17.53]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[181.5]}}]}, -{"f":124,"b":[{"b":0,"v":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"b":1,"v":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"b":2,"v":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"b":3,"v":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"b":4,"v":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"b":5,"v":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"b":6,"v":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"b":7,"v":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"b":8,"v":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.65]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[39.9]}}]}, -{"f":125,"b":[{"b":0,"v":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"b":1,"v":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"b":2,"v":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"b":3,"v":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"b":4,"v":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"b":5,"v":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"b":6,"v":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"b":7,"v":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"b":8,"v":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[59.1]}}]}, -{"f":126,"b":[{"b":0,"v":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"b":1,"v":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"b":2,"v":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"b":3,"v":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"b":4,"v":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"b":5,"v":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"b":6,"v":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"b":7,"v":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"b":8,"v":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[21.64]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[65.8]}}]}, -{"f":127,"b":[{"b":0,"v":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"b":1,"v":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"b":2,"v":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"b":4,"v":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"b":5,"v":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"b":6,"v":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"b":7,"v":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"b":8,"v":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.76]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.17]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, -{"f":128,"b":[{"b":0,"v":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"b":1,"v":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"b":2,"v":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"b":3,"v":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"b":4,"v":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"b":5,"v":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"b":6,"v":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"b":7,"v":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"b":8,"v":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.15]}},{"b":13,"v":{"DEFAULT":[21.75]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[93]}}]}, -{"f":129,"b":[{"b":0,"v":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"b":1,"v":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"b":2,"v":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"b":3,"v":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"b":4,"v":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"b":5,"v":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"b":6,"v":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"b":7,"v":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"b":8,"v":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.06]}},{"b":11,"v":{"DEFAULT":[6.65]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.79]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[159.1]}}]}, -{"f":130,"b":[{"b":0,"v":{"total":[23.6,23.6,23.5,23.4,23.2,23.2,23.5,23.6,23,23.5,23.4,23.2,23.5,23.7,23],"script":[1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.5,1.5,1.4],"paint":[21.8,21.8,21.6,21.5,21.4,21.4,21.6,21.7,21.2,21.6,21.6,21.4,21.6,21.9,21.2]}},{"b":1,"v":{"total":[25.8,25.9,25.7,26,26.1,25.9,25.7,25.8,25.8,26,25.6,26.1,26.2,26.4,26.3],"script":[3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.1,3.3,3.3,3.4,3.4,3.6,3.5],"paint":[22.1,22.2,22,22.4,22.4,22.1,22,22.1,22.2,22.3,21.9,22.3,22.4,22.4,22.4]}},{"b":2,"v":{"total":[9.8,10.2,9.8,10.7,9.7,10.3,11,10.3,10.4,12.3,10.8,11.3,10.8,10.4,10.8],"script":[0.1,0.1,0.1,1,0.1,0.7,1,0.3,0.1,0.1,0.5,0.4,0.6,0.1,0.3],"paint":[8.3,9.2,8.8,8.7,7.7,8.1,8.9,8.9,8.4,11.3,9.7,9.7,9.7,8.6,9.3]}},{"b":3,"v":{"total":[3,2.2,1.9,2.4,1.9,2.2,2.1,2.8,3,2.3,2.4,2.3,2.7,3.2,2.3,2.4,2.4,2.4,2.7,2.3,2.2,1.8,2.4,2.4,2.9],"script":[0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,1.1,0.3,0.2,0.7,0.5,0.5,0.3,0.1,0.2,0.5,0.7,0.8],"paint":[2.3,2,1.1,1.6,1.7,1.6,1.3,2,2.8,2.1,2.2,1.4,2.5,1.5,1.3,1.8,1.5,1.4,1.5,1.6,1.3,1.1,1.8,1.6,1.5]}},{"b":4,"v":{"total":[12.8,12.4,14.8,13.4,12.7,12.4,12.3,12,12.3,13.3,12.4,12.7,12.6,12.7,11.9],"script":[0.1,0,0.1,0.1,0,0.3,0.1,0,0,0.1,0,0.1,0,0,0],"paint":[11.4,10.9,12.7,10.7,11.2,10.9,11.3,10.4,11.3,12,9.9,11.6,11.4,12.2,10.8]}},{"b":5,"v":{"total":[10.4,10.5,11.4,10.8,10.9,10.9,11.1,10.9,10.9,10.7,10.5,10.9,10.9,11,10.4],"script":[0.2,0.2,0.3,0.4,0.3,0.5,0.1,0.3,0.5,0.3,0.1,0.5,0.3,0.2,0.4],"paint":[9.4,9.7,10.4,9.7,9.9,9.8,10.1,9.9,9.8,9.5,9.8,9.3,9.8,10.3,9.6]}},{"b":6,"v":{"total":[245.1,244.4,241.6,243,244.3,241.9,242.4,260.3,241.5,240.4,241.7,243.4,245.3,242.7,241.7],"script":[15.1,15.3,15,15.4,15.2,15,15,15.3,15.3,14.6,15.4,15,15.1,15.2,15.2],"paint":[222.4,221.5,219,220,221.7,219.1,220,237.3,218.6,218.2,218.8,220.9,222.3,219.9,218.7]}},{"b":7,"v":{"total":[27.3,27.4,27.4,27.8,27.6,27,26.9,27.3,27.7,27.6,27.7,27.1,26.8,27.6,28.2],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.4,1.3,1.4,1.5],"paint":[25.2,25.3,25.3,25.6,25.4,24.9,24.8,25.2,25.5,25.4,25.5,25,24.7,25.5,25.9]}},{"b":8,"v":{"total":[8.8,10.2,9.6,9.6,9.6,9.6,9,9.4,10.6,10.3,9.4,9.2,8.6,9.9,9.3],"script":[7.5,7.9,7.7,7.3,7.9,7.4,7.1,7,8.1,8.1,7.9,7.3,6.9,8.3,7.6],"paint":[0.3,0.5,0.3,2.1,1.1,1.3,1,1.2,1.1,1.2,0.3,0.6,0.3,0.2,1]}},{"b":9,"v":{"DEFAULT":[0.47]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, -{"f":131,"b":[{"b":0,"v":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"b":1,"v":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"b":2,"v":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"b":3,"v":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"b":4,"v":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"b":6,"v":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"b":7,"v":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"b":8,"v":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.58]}},{"b":13,"v":{"DEFAULT":[12.47]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.2]}}]}, -{"f":132,"b":[{"b":0,"v":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"b":2,"v":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"b":4,"v":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"b":5,"v":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"b":6,"v":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"b":7,"v":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"b":8,"v":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.75]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[12.09]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, -{"f":133,"b":[{"b":0,"v":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"b":1,"v":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"b":2,"v":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"b":3,"v":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"b":4,"v":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"b":5,"v":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"b":6,"v":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"b":7,"v":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"b":8,"v":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.37]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, -{"f":134,"b":[{"b":0,"v":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"b":1,"v":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"b":2,"v":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"b":3,"v":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"b":4,"v":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"b":5,"v":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"b":6,"v":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"b":7,"v":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"b":8,"v":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.05]}},{"b":11,"v":{"DEFAULT":[1.99]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.8]}}]}, -{"f":135,"b":[{"b":0,"v":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"b":1,"v":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"b":2,"v":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"b":3,"v":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"b":4,"v":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"b":5,"v":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"b":6,"v":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"b":7,"v":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"b":8,"v":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.41]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.45]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[42.7]}}]}, -{"f":136,"b":[{"b":0,"v":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"b":1,"v":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"b":2,"v":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"b":3,"v":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"b":4,"v":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"b":5,"v":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"b":6,"v":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"b":7,"v":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.32]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, -{"f":137,"b":[{"b":0,"v":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"b":1,"v":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"b":2,"v":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"b":3,"v":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"b":4,"v":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"b":5,"v":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"b":6,"v":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"b":7,"v":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"b":8,"v":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.88]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[28.67]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[82.6]}}]}, -{"f":138,"b":[{"b":0,"v":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"b":1,"v":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"b":2,"v":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"b":3,"v":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"b":4,"v":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"b":5,"v":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"b":6,"v":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"b":7,"v":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"b":8,"v":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.24]}},{"b":11,"v":{"DEFAULT":[4.28]}},{"b":12,"v":{"DEFAULT":[1.22]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[81.1]}}]}, -{"f":139,"b":[{"b":0,"v":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"b":1,"v":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"b":2,"v":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"b":3,"v":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"b":4,"v":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"b":5,"v":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"b":6,"v":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"b":7,"v":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"b":8,"v":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.12]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[22.25]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[62.8]}}]}, -{"f":140,"b":[{"b":0,"v":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"b":1,"v":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"b":2,"v":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"b":3,"v":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"b":4,"v":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"b":5,"v":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"b":6,"v":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"b":7,"v":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"b":8,"v":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[31.64]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[85.3]}}]}, -{"f":141,"b":[{"b":0,"v":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"b":1,"v":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"b":2,"v":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"b":4,"v":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"b":5,"v":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"b":6,"v":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"b":7,"v":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"b":8,"v":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.03]}},{"b":11,"v":{"DEFAULT":[3.06]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.6]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[65]}}]}, -{"f":142,"b":[{"b":0,"v":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"b":1,"v":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"b":2,"v":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"b":3,"v":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"b":4,"v":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"b":5,"v":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"b":6,"v":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"b":7,"v":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"b":8,"v":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[23.32]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, -{"f":143,"b":[{"b":0,"v":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"b":1,"v":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"b":2,"v":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"b":3,"v":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"b":5,"v":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"b":6,"v":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"b":7,"v":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"b":8,"v":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.97]}},{"b":12,"v":{"DEFAULT":[1.83]}},{"b":13,"v":{"DEFAULT":[13.92]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, -{"f":144,"b":[{"b":0,"v":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"b":1,"v":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"b":2,"v":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"b":3,"v":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"b":4,"v":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"b":5,"v":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"b":6,"v":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"b":7,"v":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"b":8,"v":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.59]}},{"b":12,"v":{"DEFAULT":[4.95]}},{"b":13,"v":{"DEFAULT":[47.09]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[255.9]}}]}, -{"f":145,"b":[{"b":0,"v":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"b":2,"v":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"b":3,"v":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"b":4,"v":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"b":5,"v":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"b":6,"v":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"b":7,"v":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"b":8,"v":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.56]}},{"b":11,"v":{"DEFAULT":[6.83]}},{"b":12,"v":{"DEFAULT":[5.13]}},{"b":13,"v":{"DEFAULT":[48.33]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[262.2]}}]}, -{"f":146,"b":[{"b":0,"v":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"b":1,"v":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"b":2,"v":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"b":3,"v":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"b":4,"v":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"b":6,"v":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"b":7,"v":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"b":8,"v":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.06]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[24.1]}},{"b":14,"v":{"DEFAULT":[11.1]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, -{"f":147,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, -{"f":148,"b":[]}, -{"f":149,"b":[]}, -{"f":150,"b":[]}, +{"f":54,"b":[{"b":0,"v":{"total":[28.9,28.5,29,28.5,28.8,28.5,28.5,28.6,28.4,28.6,28.4,28.8,28.4,28.5,28.7],"script":[6.2,6,6.4,6,6.2,6.1,6,6,6,6,6,6.1,6,6,6],"paint":[22.1,21.9,22.1,22,22,21.8,22,22.1,21.8,22.2,21.9,22.1,21.8,22,22.1]}},{"b":1,"v":{"total":[32.6,32.3,32.7,32.3,33.1,32.5,32,32.4,32.6,32.8,32.2,32.4,32.3,32.4,32.4],"script":[8.8,8.8,8.9,8.9,9.2,8.9,8.7,9,8.8,8.9,8.6,8.8,8.8,8.9,8.9],"paint":[23.3,22.9,23.3,22.8,23.4,23,22.7,22.9,23.2,23.2,23,23.1,23,23,23]}},{"b":2,"v":{"total":[14.6,14.3,14.9,14.2,14.8,14.5,14.6,14.5,14.9,14.5,14.4,14.2,14.3,14.7,16.4],"script":[3.5,3.4,3.8,3.1,3.6,3.4,3.4,3.9,3.5,3.5,3.3,3.4,3.2,4,3.7],"paint":[10,9.6,9.3,10.2,10.3,9.9,10,9.5,9.7,9.5,9.5,9.9,9,9.4,11.6]}},{"b":3,"v":{"total":[10,9.1,9.1,11.2,9.4,9,9.4,9.2,9.4,8.9,9.4,9.5,9,9,8.7,9.1,8.8,8.9,9.4,10.3,9.1,9.7,9.8,9.9,9.4],"script":[6.6,6.4,6.2,6.9,6.2,5.8,6,6.2,5.8,5.9,6.1,6.2,6.2,5.8,5.4,5.6,5.6,5.9,5.9,6.9,6.1,6.4,6.6,6.7,6.5],"paint":[2.4,1.3,1.8,1.8,1.3,2.2,1.8,1.5,2.8,1.4,2.3,2.3,0.9,1.5,1.9,3.1,2.3,2,2.3,2.2,2,2.1,2.2,2.4,1]}},{"b":4,"v":{"total":[100.4,102.2,100.6,101.6,101.9,101.5,100.9,100.7,101.6,101.1,100.1,102.5,102.9,101,101.8],"script":[11.3,12.7,11.4,12.5,12.5,11.5,12.1,11.6,11.8,12.9,12.4,12.2,11.8,11.4,12],"paint":[86.7,87.7,86.8,86.4,87.4,87.6,86.5,86.5,87,84.8,85.2,87.6,88.7,86.8,87.7]}},{"b":5,"v":{"total":[11.3,11.1,11.1,11.2,11.6,11.4,11.3,11.5,11.5,10.9,11.4,11,13,11.2,11],"script":[0.5,0.5,0.5,0.5,0.4,0.5,0.3,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[10.1,10,10,9.8,10.7,10,10.2,10.4,10.2,10,10.5,9.7,11.8,10.1,10.1]}},{"b":6,"v":{"total":[279.6,282.4,280.5,283.6,289.4,280.8,280.4,279.6,282.9,281,280.9,283,281.4,280.3,282.1],"script":[57.4,59.2,58.3,58.4,57.4,58.5,58.6,58.3,57.8,58.4,58,59.2,58.6,58.4,59],"paint":[215,216,215,218,222.1,215.1,214.7,214.2,218,215.3,215.7,216.6,215.5,214.8,215.9]}},{"b":7,"v":{"total":[33.4,33.5,34.2,33.5,33.5,34.1,34.1,34.5,33.4,34.7,33.9,33.6,34.1,34.1,33.7],"script":[5.9,5.8,6.2,5.9,5.9,6,6,6.3,5.8,6.3,6.3,5.8,6,6.3,5.9],"paint":[26.5,26.8,27.1,26.7,26.7,27.2,27.2,27.3,26.7,27.4,26.6,26.8,27.2,26.8,26.9]}},{"b":8,"v":{"total":[11,11.8,10.9,11.1,11.6,11.7,11.9,11,11.6,11.8,11.6,10.8,11.1,11.4,11.8],"script":[9.1,9.8,9.4,8.8,9.6,9.3,9.8,9.2,9.6,9.6,9.5,9,9.6,9.4,9.7],"paint":[1.1,0.4,0.3,1.2,1.2,1.7,1.5,1,1.8,1.4,1.1,0.2,0.9,0.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.88]}},{"b":11,"v":{"DEFAULT":[3.97]}},{"b":12,"v":{"DEFAULT":[0.71]}},{"b":13,"v":{"DEFAULT":[32.76]}},{"b":14,"v":{"DEFAULT":[7.4]}},{"b":15,"v":{"DEFAULT":[3.5]}},{"b":16,"v":{"DEFAULT":[36.6]}}]}, +{"f":55,"b":[{"b":0,"v":{"total":[28.5,28.7,28.4,28.2,28.6,28.9,28.9,28.5,28.7,28.2,28.4,28.3,28.7,28.7,28.7],"script":[6,6,6,6,6,6,6.4,6,6.1,5.9,6.1,5.9,6,6,6.3],"paint":[22,22.1,21.8,21.7,22,22.4,22,21.9,22,21.8,21.8,21.9,22.1,22.2,21.9]}},{"b":1,"v":{"total":[32.6,32.5,32.5,33.1,32.7,32.3,33.1,32.5,32.3,32.5,33.1,32.1,32.6,32.6,32.1],"script":[8.8,8.8,8.9,9,8.8,8.9,9.2,8.9,8.9,9,9.2,8.8,9,9.2,8.7],"paint":[23.2,23.1,23,23.5,23.2,22.8,23.4,23,22.7,23,23.3,22.8,23,22.8,22.9]}},{"b":2,"v":{"total":[14.7,14.1,14.4,14.1,14.7,14.4,15.6,15,15,14,14.9,14.7,14.3,14.1,14.4],"script":[3.3,3.4,3.6,3.4,3.8,3.5,4.3,4,3.9,3.4,3.5,4.1,3.6,3.8,3.6],"paint":[9.6,9.4,9.9,9.5,9.2,9.8,10.2,10,9.6,9.5,9.4,9.6,9.6,9.3,9.9]}},{"b":3,"v":{"total":[10.1,9.7,10.1,9.6,9.7,9.9,9.6,9.9,10.3,9.7,8.9,9.5,9.5,9.6,9.8,9.9,9.9,9.4,8.8,10.1,9.8,9.6,9.2,9.1,9.5],"script":[6.7,6.8,6.8,6.5,6.4,6.7,6.5,7.2,7.2,6.1,5.9,6.5,6.3,6.5,6.7,6.5,7,5.7,6.1,7,6.8,6.3,6.4,6,6.8],"paint":[1.5,1.3,1.9,1.7,2.6,1.5,2.3,1.9,2,3.2,1.4,2.7,1.9,1.6,0.7,1.7,1.9,2.2,1.2,1.8,1.7,1.7,1.3,2.1,1]}},{"b":4,"v":{"total":[101.4,100.3,102.2,101.7,102.8,102.2,104.4,100.5,103.2,99.3,101.8,102.1,101,101.5,102.1],"script":[12,11.8,12.8,12.6,11.8,12,13.4,11.5,11.7,12.3,12.7,11.9,12.4,12.5,11.8],"paint":[86.9,86.9,87,87,89.3,87.7,88.1,87.1,89.2,84.8,86.7,87.7,86.6,86.8,87.8]}},{"b":5,"v":{"total":[11.1,11.4,11.7,11.4,11.3,10.9,10.6,11.2,10.7,10.8,11,12.2,11.4,10.8,11],"script":[0.5,0.5,0.4,0.5,0.7,0.5,0.4,0.4,0.3,0.4,0.7,0.6,0.6,0.5,0.6],"paint":[9.7,10.1,10,10.3,10.1,9.7,9.1,10.2,9.6,10,9.9,10.4,10.2,9.5,9.5]}},{"b":6,"v":{"total":[285.7,283.2,283.4,281.3,281.2,285.5,282.8,284.1,282,283.6,282,285.8,282.4,284.3,282.2],"script":[58.9,58.7,57,57.3,57.6,57.7,58.1,57.9,57.4,57.8,57.5,60.7,57.1,58.6,57.7],"paint":[219,216.8,218.5,216.4,216,220,217.1,218.2,217.4,218.3,217.2,217.9,218.2,218.3,217.2]}},{"b":7,"v":{"total":[33.5,32.8,34.3,36.5,33.7,34,33.5,33.6,34.3,33.6,34,34.1,35,33.8,34.1],"script":[5.9,5.9,6,6.4,5.9,6,5.8,5.8,6.2,5.9,6,5.9,6,6,5.9],"paint":[26.7,26.1,27.4,28.9,26.8,27,26.8,26.9,27.1,26.7,27.1,27.2,28,26.9,27.3]}},{"b":8,"v":{"total":[12,11.9,12.1,11.4,11.9,11.4,10.5,12.4,11.3,11.4,11.3,10.9,12,11.7,11.5],"script":[10,9.5,9.8,9.4,9.5,9.5,8.9,10.2,9.6,9.7,9,9.5,9.5,9.6,8.9],"paint":[0.9,2.1,1.6,0.3,1.8,1.7,0.2,1.2,0.7,0.3,1.3,0.3,2.2,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.93]}},{"b":11,"v":{"DEFAULT":[3.93]}},{"b":12,"v":{"DEFAULT":[0.68]}},{"b":13,"v":{"DEFAULT":[32.75]}},{"b":14,"v":{"DEFAULT":[7.6]}},{"b":15,"v":{"DEFAULT":[3.5]}},{"b":16,"v":{"DEFAULT":[45]}}]}, +{"f":56,"b":[{"b":0,"v":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"b":1,"v":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"b":2,"v":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"b":3,"v":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"b":4,"v":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"b":5,"v":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"b":6,"v":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"b":7,"v":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"b":8,"v":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.33]}},{"b":11,"v":{"DEFAULT":[3.35]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[23.85]}},{"b":14,"v":{"DEFAULT":[58.4]}},{"b":15,"v":{"DEFAULT":[17.6]}},{"b":16,"v":{"DEFAULT":[74.6]}}]}, +{"f":57,"b":[{"b":0,"v":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"b":1,"v":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"b":2,"v":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"b":3,"v":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"b":4,"v":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"b":5,"v":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"b":6,"v":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"b":7,"v":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"b":8,"v":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.52]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[19.07]}},{"b":14,"v":{"DEFAULT":[7.2]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[35.1]}}]}, +{"f":58,"b":[{"b":0,"v":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"b":1,"v":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"b":2,"v":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"b":3,"v":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"b":4,"v":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"b":5,"v":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"b":6,"v":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"b":7,"v":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"b":8,"v":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"b":9,"v":{"DEFAULT":[0.77]}},{"b":10,"v":{"DEFAULT":[2.67]}},{"b":11,"v":{"DEFAULT":[2.86]}},{"b":12,"v":{"DEFAULT":[1.02]}},{"b":13,"v":{"DEFAULT":[17.51]}},{"b":14,"v":{"DEFAULT":[65.2]}},{"b":15,"v":{"DEFAULT":[17.8]}},{"b":16,"v":{"DEFAULT":[77]}}]}, +{"f":59,"b":[{"b":0,"v":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"b":1,"v":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"b":2,"v":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"b":3,"v":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"b":4,"v":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"b":5,"v":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"b":6,"v":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"b":7,"v":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"b":8,"v":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.76]}},{"b":10,"v":{"DEFAULT":[3.13]}},{"b":11,"v":{"DEFAULT":[3.17]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[20.58]}},{"b":14,"v":{"DEFAULT":[83.9]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[93.1]}}]}, +{"f":60,"b":[{"b":0,"v":{"total":[25.4,24.2,25.8,24.3,24.4,24.4,24.8,23.9,24.6,24,24,23.9,24.5,24.1,24.1],"script":[3.8,3.7,4.1,3.7,3.6,3.7,4,3.8,3.9,3.8,3.7,3.6,3.7,3.7,3.7],"paint":[21.2,20,21.3,20.2,20.3,20.4,20.5,19.8,20.3,19.9,19.9,19.9,20.4,20,20.1]}},{"b":1,"v":{"total":[29.3,29.1,29.7,28.9,29.3,28.9,28.9,28.9,30.2,29.5,29.2,28.7,28.9,28.6,30.9],"script":[6.5,6.5,6.5,6.3,6.4,6.4,6.2,6.5,6.6,6.6,6.3,6.4,6.5,6.5,6.4],"paint":[22.3,22,22.6,22,22.4,22,22.1,21.9,23,22.4,22.4,21.7,21.9,21.6,23.8]}},{"b":2,"v":{"total":[12.8,12.9,13.1,21.3,12.3,20.2,12,13.1,13.2,12,12.6,11.7,13,13.5,14],"script":[2,3,3.1,3.8,1.7,2.8,2.3,2.6,2.2,1.9,1.6,2.1,2.2,2.2,2.4],"paint":[9.2,9.3,8,15,9.1,14.6,8.4,8.4,9.8,8.7,10.1,8.3,9.4,9.1,10.6]}},{"b":3,"v":{"total":[5.3,3.6,4,3.8,3.7,3.2,3.7,4.1,3.9,3.1,3.9,3.4,3.3,3.6,3.4,3.7,3.8,3.9,3.6,4.2,3.6,2.7,4.1,4,3.3],"script":[0.7,1.2,1.8,1.6,1.9,1.8,0.7,1.8,1,1.8,1,1,1.6,1,0.7,1,1.6,1.8,1.9,2.3,1.3,1.1,1.6,2.2,1.2],"paint":[1.8,1.5,1.3,1.4,1.6,1.3,2.3,1.5,2.2,1.1,2,1.2,1.1,1.8,1.6,2.5,2.1,1.9,1.2,1.6,2.2,0.7,2.1,1.8,2]}},{"b":4,"v":{"total":[18.1,16.6,15.4,15.6,14.9,15.3,17.3,15.5,15.8,16.1,15.6,15.7,14.9,16.3,15.7],"script":[2.6,2.9,2.7,2.3,2.4,2.9,2.8,2.4,2.5,2.6,2.3,2,2.5,2.7,2.8],"paint":[14.4,12.8,11.7,11,11,11.6,14,11.5,11.9,11.1,11.5,12.8,11,11.7,10.4]}},{"b":5,"v":{"total":[12.2,10.9,11.4,10.9,11.5,11.5,11,11.4,11,11.3,11,11.1,11.1,11.1,11.3],"script":[0.8,0.7,1.4,0.7,1.2,0.9,1.1,0.9,0.7,1.1,0.8,0.9,0.8,0.9,0.9],"paint":[10.7,9.6,9.5,9.6,9.6,10,9.3,9.9,9.4,9.6,9.6,9.6,9.7,9.6,9.7]}},{"b":6,"v":{"total":[272.9,268.6,268.8,267.2,268.5,271,268.5,270.8,270.6,268.2,272.6,270.2,270.8,267.5,272.1],"script":[38.1,35.9,35.7,36.7,36.7,36.1,36.5,37.2,35.9,36.4,36.5,36.2,36.6,36.7,36.6],"paint":[226.2,224.5,225.1,222.4,223.6,226.8,224,225.3,226.7,223.6,227.9,225.9,225.9,222.9,227.2]}},{"b":7,"v":{"total":[30.4,31.9,30.5,29.9,32.1,30.7,31.4,30.8,31.8,31.3,31.5,31.7,30.7,30.7,30.6],"script":[4.4,4.6,4.4,4.4,4.6,4.4,4.5,4.5,4.6,4.5,4.5,4.5,4.5,4.5,4.4],"paint":[25.2,26.6,25.3,24.8,26.8,25.5,26.2,25.5,26.4,26,26.3,26.3,25.5,25.4,25.4]}},{"b":8,"v":{"total":[10.9,10.9,10.7,11.5,10.9,11.8,11.2,11.4,10.9,11,11.4,11.2,10.3,12,11.3],"script":[9.4,9.2,8.6,9.1,8.6,10.3,9.3,9.2,8.8,9.6,8.8,9.1,8.3,9.3,8.9],"paint":[1.3,1.2,1.4,1.4,1.7,0.7,0.4,1,0.3,1.2,0.6,1.9,0.9,1.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[19.23]}},{"b":14,"v":{"DEFAULT":[11]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[42.3]}}]}, +{"f":61,"b":[{"b":0,"v":{"total":[40.6,39.9,42.4,42.7,37.7,37.1,37.6,38,39.7,35.6,42.6,41.4,38.7,40.8,40.2],"script":[13.1,14.5,13.5,14.7,14.6,13.4,13.4,13.9,13.6,13.2,14.9,14.5,13.2,14,14.7],"paint":[20.7,21.6,21.8,22.2,22.6,22,21.6,21.8,21.9,21.9,21.7,21.7,21.7,21.9,21.7]}},{"b":1,"v":{"total":[49.1,49.3,49.5,50.8,48.3,47,43.9,43.6,48.2,47.8,47.7,49,47.6,49.3,48.6],"script":[20.1,19.5,19.8,20.5,19.8,20.3,20.5,20.2,19.5,20.1,19.8,19.3,20.2,20.1,19.9],"paint":[23.1,23,23.3,23.2,23.2,23.1,22.9,23,23.3,23,22.7,23.3,23.1,23.3,23]}},{"b":2,"v":{"total":[56.5,22.3,58.5,20.5,20.9,58.3,20.7,19.5,59,20.5,20.1,57.7,21.9,58.8,21.7],"script":[6,7.8,7.5,6.4,7.1,6,6.3,6.5,7.4,6.6,6.9,6.5,6.8,7.4,7.6],"paint":[11.4,12.9,12.6,12.3,11.8,14.2,11,11,12.6,12.7,12,12.7,11.4,12.9,13]}},{"b":3,"v":{"total":[11.9,15.7,13.8,13.8,14.2,15.6,10.5,9.8,10.8,9.5,15.7,15.6,9.6,16.8,15.6,11.4,9.3,13.6,12.1,10.9,15,11.9,12,13.4,11.4],"script":[7.4,6,5.5,6.2,5.9,6,5.2,5,5.2,5.6,6.7,6.9,5.5,6,5.8,6.2,5.1,5.5,6.2,4.3,5.7,5.2,5.2,4.6,6],"paint":[4,3.5,3.1,3.6,3.7,3.7,2.7,2.8,4.7,2.8,3.1,2.8,3,4.8,3.6,3.6,3.2,3.9,4,2.9,5.2,2.3,3,3.3,3.7]}},{"b":4,"v":{"total":[109.2,147.9,145.8,145.3,108,147.3,107.8,145.8,143.9,104.9,105.4,145.6,148.2,105.8,146.1],"script":[17.1,18.5,18.4,18,18.6,17,17,17.5,17.9,16.9,16.9,18.9,17.5,16.4,17.8],"paint":[89.1,88.7,86.5,86.2,86.5,89.8,87.5,87.4,85.3,86,86,85.9,92.6,85.9,85.3]}},{"b":5,"v":{"total":[15,15.6,14.9,14.7,15.2,15.8,15.7,15.9,15,16.4,15.4,14.6,16.1,19,14.7],"script":[2.7,2.6,2.6,2.4,2.9,2.5,2.5,2.7,2.8,2.7,2.5,2.4,2.7,3.1,2.7],"paint":[11.4,11.2,10.9,11,11.1,12.5,11.9,12.1,11,11.2,11.4,11.1,12.1,11.7,10.7]}},{"b":6,"v":{"total":[361.7,351.7,354.9,352.6,362.6,353.7,355.3,359.7,359.2,357.1,354.9,364.1,352.6,359.9,352.1],"script":[126.4,122.2,126.2,123.7,128.6,124,121.2,128.5,128.5,123,123.7,128.6,123.6,126.4,122.7],"paint":[225.1,224.7,224.3,224.6,227.8,225.4,224,225,224.9,224.9,222.6,225.9,224.7,228.8,225]}},{"b":7,"v":{"total":[53.6,54.7,55.1,42.4,42.6,52.9,44,55.2,53.7,52.7,42.8,53,53.9,54.2,53.1],"script":[14.6,15.2,15.1,15.2,14.8,13.9,15.7,14.4,14.8,13.8,15.3,14.3,14.9,14.7,14.2],"paint":[26.4,26.5,26.7,26.5,26.5,26.8,27.1,28.8,26.4,26.8,26.2,27.6,26.4,26.8,26.8]}},{"b":8,"v":{"total":[66.2,66.2,22.9,68.6,21.9,23.1,23.4,23.9,68.2,23.5,68.3,22.8,22.8,21.3,68.5],"script":[19.6,18.9,18.5,18.4,18.3,18.9,18.8,19.2,18.1,18.7,17.3,18.4,19.2,17.9,17.5],"paint":[2.1,3.1,2,3.9,2.1,2.8,3.9,3.8,3.9,2.9,2.9,2.7,2.3,2.4,3.9]}},{"b":9,"v":{"DEFAULT":[0.78]}},{"b":10,"v":{"DEFAULT":[4.25]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[4.06]}},{"b":13,"v":{"DEFAULT":[32.91]}},{"b":14,"v":{"DEFAULT":[48.3]}},{"b":15,"v":{"DEFAULT":[16.6]}},{"b":16,"v":{"DEFAULT":[66.9]}}]}, +{"f":62,"b":[{"b":0,"v":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"b":1,"v":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"b":2,"v":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"b":3,"v":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"b":4,"v":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"b":5,"v":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"b":6,"v":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"b":7,"v":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"b":8,"v":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.66]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[7.7]}},{"b":16,"v":{"DEFAULT":[56.9]}}]}, +{"f":63,"b":[{"b":0,"v":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"b":1,"v":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"b":2,"v":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"b":3,"v":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"b":4,"v":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"b":5,"v":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"b":6,"v":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"b":7,"v":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"b":8,"v":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.45]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[17.34]}},{"b":14,"v":{"DEFAULT":[6.8]}},{"b":15,"v":{"DEFAULT":[2.8]}},{"b":16,"v":{"DEFAULT":[35.3]}}]}, +{"f":64,"b":[{"b":0,"v":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"b":1,"v":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"b":2,"v":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"b":3,"v":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"b":4,"v":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"b":5,"v":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"b":6,"v":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"b":7,"v":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"b":8,"v":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.02]}},{"b":11,"v":{"DEFAULT":[2.02]}},{"b":12,"v":{"DEFAULT":[0.78]}},{"b":13,"v":{"DEFAULT":[14.16]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[45.2]}}]}, +{"f":65,"b":[{"b":0,"v":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"b":2,"v":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"b":3,"v":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"b":4,"v":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"b":5,"v":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"b":6,"v":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"b":7,"v":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"b":8,"v":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.35]}},{"b":11,"v":{"DEFAULT":[2.37]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[17.14]}},{"b":14,"v":{"DEFAULT":[15.2]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[41.9]}}]}, +{"f":66,"b":[{"b":0,"v":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"b":1,"v":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"b":2,"v":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"b":3,"v":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"b":4,"v":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"b":5,"v":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"b":6,"v":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"b":7,"v":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"b":8,"v":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"b":9,"v":{"DEFAULT":[2.59]}},{"b":10,"v":{"DEFAULT":[8.07]}},{"b":11,"v":{"DEFAULT":[10.85]}},{"b":12,"v":{"DEFAULT":[8.17]}},{"b":13,"v":{"DEFAULT":[48.77]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[490.3]}}]}, +{"f":67,"b":[{"b":0,"v":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"b":1,"v":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"b":2,"v":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"b":3,"v":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"b":4,"v":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"b":5,"v":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"b":6,"v":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"b":7,"v":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"b":8,"v":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[0.57]}},{"b":10,"v":{"DEFAULT":[3.34]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.72]}},{"b":13,"v":{"DEFAULT":[27.18]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[50]}}]}, +{"f":68,"b":[{"b":0,"v":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"b":1,"v":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"b":2,"v":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"b":3,"v":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"b":4,"v":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"b":5,"v":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"b":6,"v":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"b":7,"v":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"b":8,"v":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.64]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[0.91]}},{"b":13,"v":{"DEFAULT":[32.15]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[56.4]}}]}, +{"f":69,"b":[{"b":0,"v":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"b":1,"v":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"b":2,"v":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"b":3,"v":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"b":4,"v":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"b":5,"v":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"b":6,"v":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"b":7,"v":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"b":8,"v":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.81]}},{"b":10,"v":{"DEFAULT":[3.95]}},{"b":11,"v":{"DEFAULT":[3.98]}},{"b":12,"v":{"DEFAULT":[1.19]}},{"b":13,"v":{"DEFAULT":[29.81]}},{"b":14,"v":{"DEFAULT":[56.4]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[73.8]}}]}, +{"f":70,"b":[{"b":0,"v":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"b":1,"v":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"b":2,"v":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"b":3,"v":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"b":4,"v":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"b":5,"v":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"b":6,"v":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"b":7,"v":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"b":8,"v":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[2.84]}},{"b":10,"v":{"DEFAULT":[9.77]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.5]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[291.2]}}]}, +{"f":71,"b":[{"b":0,"v":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"b":1,"v":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"b":2,"v":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"b":3,"v":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"b":4,"v":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"b":5,"v":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"b":6,"v":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"b":7,"v":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"b":8,"v":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[3.98]}},{"b":11,"v":{"DEFAULT":[4.01]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[33.8]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[42.1]}}]}, +{"f":72,"b":[{"b":0,"v":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"b":1,"v":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"b":2,"v":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"b":3,"v":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"b":4,"v":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"b":5,"v":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"b":6,"v":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"b":7,"v":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"b":8,"v":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[0.69]}},{"b":10,"v":{"DEFAULT":[2.56]}},{"b":11,"v":{"DEFAULT":[2.54]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[25.7]}},{"b":15,"v":{"DEFAULT":[8]}},{"b":16,"v":{"DEFAULT":[56.6]}}]}, +{"f":73,"b":[{"b":0,"v":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"b":1,"v":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"b":2,"v":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"b":3,"v":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"b":4,"v":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"b":5,"v":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"b":6,"v":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"b":7,"v":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"b":8,"v":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"b":9,"v":{"DEFAULT":[3.32]}},{"b":10,"v":{"DEFAULT":[4.85]}},{"b":11,"v":{"DEFAULT":[4.89]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[16.25]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[113]}}]}, +{"f":74,"b":[{"b":0,"v":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"b":1,"v":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"b":2,"v":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"b":3,"v":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"b":4,"v":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"b":5,"v":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"b":6,"v":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"b":7,"v":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"b":8,"v":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.88]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[1.35]}},{"b":13,"v":{"DEFAULT":[23.87]}},{"b":14,"v":{"DEFAULT":[79.9]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[90.7]}}]}, +{"f":75,"b":[{"b":0,"v":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"b":1,"v":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"b":2,"v":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"b":3,"v":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"b":4,"v":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"b":5,"v":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"b":6,"v":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"b":7,"v":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"b":8,"v":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.17]}},{"b":12,"v":{"DEFAULT":[0.82]}},{"b":13,"v":{"DEFAULT":[13.91]}},{"b":14,"v":{"DEFAULT":[13.6]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, +{"f":76,"b":[{"b":0,"v":{"total":[25.2,25.1,25.4,26.1,24.9,26,25.3,25.8,25.7,25.3,25.4,25.6,25.2,25.1,25.3],"script":[3,2.8,3.1,3.1,2.8,2.7,2.8,3.1,3,3,2.8,3.1,2.8,2.9,3.1],"paint":[21.8,21.9,21.9,22.5,21.7,22.9,22.1,22.3,22.2,21.9,22.2,22.1,21.9,21.9,21.8]}},{"b":1,"v":{"total":[30.8,29.4,29,28.7,28.4,28.8,28.8,29,28.9,28.7,28.3,29.1,29,28.7,28.9],"script":[6.6,6,5.8,5.8,5.3,5.8,5.8,5.7,5.9,5.9,5.7,6.2,6,5.9,5.7],"paint":[23.7,22.8,22.6,22.3,22.5,22.5,22.4,22.7,22.5,22.2,22.1,22.3,22.4,22.3,22.5]}},{"b":2,"v":{"total":[13.8,12.5,12.1,11.9,12.4,10.8,12.1,12.3,11.8,11.6,12.3,12,10.8,12.4,12.4],"script":[1.2,1,0.8,1.4,1.5,0.2,0.6,1.2,1.1,0.6,1.2,1.5,0.2,0.9,0.7],"paint":[11.1,10.5,9.6,9.5,9.8,8.9,10.3,10.2,9.5,9.7,9.9,9.5,9.8,9.9,10.6]}},{"b":3,"v":{"total":[4.8,3.2,2.8,2.2,2.1,2.6,2.7,2.1,2.1,2.2,2.6,2.3,2,2.5,2.6,2.6,2,2.3,2.2,2.6,2.2,2.4,2,2.2,2.2],"script":[0,0,0,0,0,0,0,0,0.5,0,0.4,0,0.1,0,0.6,0,0,0,0.1,0,0,0,0,0,0],"paint":[2.4,3,1.5,1.5,1.5,2.5,1.8,1.4,1.5,1.7,2,1.4,1.1,1.4,1.6,2.5,1.7,1.2,1.9,1,1.4,1.7,1.8,2,1.2]}},{"b":4,"v":{"total":[13.2,13.1,13.3,13.6,13.2,13.6,15,14.5,13.5,13.6,15.1,13.3,14,13.4,13.9],"script":[1,0.2,0.7,0.2,0.2,0.3,0.6,1.2,0.2,1.1,1,1.4,1,1,0.8],"paint":[11,11.7,11,12.2,12,12.7,13.5,12.2,12.4,11.7,13.1,10.3,11.2,11.4,11.5]}},{"b":5,"v":{"total":[10.6,11.2,10.7,10.9,10.9,10.8,11.5,10.7,10.8,10.9,10.8,10.9,10.4,10.6,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.5,0.6,0.6,0.5,0.6,0.3,0.6],"paint":[9.4,10.1,9.6,9.6,9.4,9.7,10.5,9.7,9.7,9.4,9.5,9.4,9.2,9.8,9.2]}},{"b":6,"v":{"total":[270.1,265.6,266.1,266.3,266.3,267,266.1,265.8,266.6,265.5,265.8,264.5,265.5,267.8,265.8],"script":[34,33.6,33.5,34.4,33.7,35.5,33.7,33.9,34,34,33.9,33.1,33.8,34,34],"paint":[228.3,224.5,225.1,224.5,225.1,224.1,224.9,224.5,224.9,224.2,224.4,224.1,224.4,226.5,224.4]}},{"b":7,"v":{"total":[29.8,31.8,30.4,30.5,30.1,29.7,30.8,30.2,30.4,30,30.4,31.5,30.3,30.8,30.8],"script":[3.1,3.2,3.1,3.2,3.1,3.1,3.3,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.3],"paint":[26,27.8,26.5,26.5,26.3,25.9,26.7,26.3,26.5,26.1,26.4,27.6,26.5,26.8,26.8]}},{"b":8,"v":{"total":[9.9,10.3,9.7,10.1,12.3,9.9,10.4,10.7,9.8,10.1,10.6,9.7,11.3,10.6,12.6],"script":[8.1,8,7.7,7.7,9.4,7.7,8.1,8.8,7.8,8.2,8.6,7.9,9.1,8.6,10.2],"paint":[1.3,0.6,1,0.7,1.8,1.1,1.4,1,1.1,1,1.3,0.7,1,1.2,1.2]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[0.81]}},{"b":13,"v":{"DEFAULT":[19.01]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[49.3]}}]}, +{"f":77,"b":[{"b":0,"v":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"b":1,"v":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"b":2,"v":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"b":3,"v":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"b":4,"v":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"b":5,"v":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"b":6,"v":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"b":7,"v":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"b":8,"v":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[3.61]}},{"b":11,"v":{"DEFAULT":[3.66]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[29.27]}},{"b":14,"v":{"DEFAULT":[17.3]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49]}}]}, +{"f":78,"b":[{"b":0,"v":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"b":1,"v":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"b":2,"v":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"b":3,"v":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"b":4,"v":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"b":5,"v":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"b":6,"v":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"b":7,"v":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"b":8,"v":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.35]}},{"b":11,"v":{"DEFAULT":[3.39]}},{"b":12,"v":{"DEFAULT":[0.77]}},{"b":13,"v":{"DEFAULT":[27.11]}},{"b":14,"v":{"DEFAULT":[14.6]}},{"b":15,"v":{"DEFAULT":[5.7]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":79,"b":[{"b":0,"v":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"b":1,"v":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"b":2,"v":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"b":3,"v":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"b":4,"v":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"b":5,"v":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"b":6,"v":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"b":7,"v":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"b":8,"v":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[5.74]}},{"b":11,"v":{"DEFAULT":[5.82]}},{"b":12,"v":{"DEFAULT":[1.04]}},{"b":13,"v":{"DEFAULT":[49.14]}},{"b":14,"v":{"DEFAULT":[32]}},{"b":15,"v":{"DEFAULT":[10.8]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, +{"f":80,"b":[{"b":0,"v":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"b":1,"v":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"b":2,"v":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"b":3,"v":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"b":4,"v":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"b":5,"v":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"b":6,"v":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"b":7,"v":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"b":8,"v":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[5.12]}},{"b":11,"v":{"DEFAULT":[5.14]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[43.17]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[52]}}]}, +{"f":81,"b":[{"b":0,"v":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"b":1,"v":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"b":2,"v":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"b":3,"v":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"b":4,"v":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"b":5,"v":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"b":6,"v":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"b":7,"v":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"b":8,"v":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[1.07]}},{"b":10,"v":{"DEFAULT":[5.21]}},{"b":11,"v":{"DEFAULT":[5.19]}},{"b":12,"v":{"DEFAULT":[4.82]}},{"b":13,"v":{"DEFAULT":[39.51]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[21.8]}},{"b":16,"v":{"DEFAULT":[108.8]}}]}, +{"f":82,"b":[{"b":0,"v":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"b":1,"v":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"b":2,"v":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"b":3,"v":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"b":4,"v":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"b":5,"v":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"b":6,"v":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"b":7,"v":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"b":8,"v":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[9.99]}},{"b":11,"v":{"DEFAULT":[9.99]}},{"b":12,"v":{"DEFAULT":[9.27]}},{"b":13,"v":{"DEFAULT":[86.93]}},{"b":14,"v":{"DEFAULT":[87.7]}},{"b":15,"v":{"DEFAULT":[30.6]}},{"b":16,"v":{"DEFAULT":[41.7]}}]}, +{"f":83,"b":[{"b":0,"v":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"b":1,"v":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"b":2,"v":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"b":3,"v":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"b":4,"v":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"b":5,"v":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"b":6,"v":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"b":7,"v":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"b":8,"v":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.75]}},{"b":11,"v":{"DEFAULT":[8.76]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[73.15]}},{"b":14,"v":{"DEFAULT":[227.4]}},{"b":15,"v":{"DEFAULT":[59.6]}},{"b":16,"v":{"DEFAULT":[232.5]}}]}, +{"f":84,"b":[{"b":0,"v":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"b":1,"v":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"b":2,"v":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"b":3,"v":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"b":4,"v":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"b":5,"v":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"b":6,"v":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"b":7,"v":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"b":8,"v":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"b":9,"v":{"DEFAULT":[1.85]}},{"b":10,"v":{"DEFAULT":[7.64]}},{"b":11,"v":{"DEFAULT":[8.36]}},{"b":12,"v":{"DEFAULT":[3.27]}},{"b":13,"v":{"DEFAULT":[53.15]}},{"b":14,"v":{"DEFAULT":[351.1]}},{"b":15,"v":{"DEFAULT":[80.8]}},{"b":16,"v":{"DEFAULT":[376]}}]}, +{"f":85,"b":[{"b":0,"v":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"b":1,"v":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"b":2,"v":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"b":4,"v":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"b":5,"v":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"b":6,"v":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"b":7,"v":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"b":8,"v":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"b":9,"v":{"DEFAULT":[1.19]}},{"b":10,"v":{"DEFAULT":[4.63]}},{"b":11,"v":{"DEFAULT":[5.08]}},{"b":12,"v":{"DEFAULT":[1.93]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[184.6]}},{"b":15,"v":{"DEFAULT":[50.2]}},{"b":16,"v":{"DEFAULT":[202.6]}}]}, +{"f":86,"b":[{"b":0,"v":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"b":1,"v":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"b":2,"v":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"b":3,"v":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"b":4,"v":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"b":5,"v":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"b":6,"v":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"b":7,"v":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"b":8,"v":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.66]}},{"b":11,"v":{"DEFAULT":[5.06]}},{"b":12,"v":{"DEFAULT":[1.94]}},{"b":13,"v":{"DEFAULT":[33.35]}},{"b":14,"v":{"DEFAULT":[183]}},{"b":15,"v":{"DEFAULT":[50]}},{"b":16,"v":{"DEFAULT":[202.7]}}]}, +{"f":87,"b":[{"b":0,"v":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"b":1,"v":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"b":2,"v":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"b":3,"v":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"b":4,"v":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"b":5,"v":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"b":6,"v":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"b":7,"v":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"b":8,"v":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[4.46]}},{"b":11,"v":{"DEFAULT":[4.91]}},{"b":12,"v":{"DEFAULT":[1.85]}},{"b":13,"v":{"DEFAULT":[31.58]}},{"b":14,"v":{"DEFAULT":[182.2]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[199.5]}}]}, +{"f":88,"b":[{"b":0,"v":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"b":1,"v":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"b":2,"v":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"b":3,"v":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"b":4,"v":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"b":5,"v":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"b":6,"v":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"b":7,"v":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"b":8,"v":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[4.53]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[31.67]}},{"b":14,"v":{"DEFAULT":[182.4]}},{"b":15,"v":{"DEFAULT":[49.6]}},{"b":16,"v":{"DEFAULT":[207.4]}}]}, +{"f":89,"b":[{"b":0,"v":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"b":1,"v":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"b":2,"v":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"b":3,"v":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"b":4,"v":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"b":5,"v":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"b":6,"v":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"b":7,"v":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"b":8,"v":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[5.79]}},{"b":11,"v":{"DEFAULT":[6.19]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[43.45]}},{"b":14,"v":{"DEFAULT":[188.3]}},{"b":15,"v":{"DEFAULT":[51.3]}},{"b":16,"v":{"DEFAULT":[209.9]}}]}, +{"f":90,"b":[{"b":0,"v":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"b":1,"v":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"b":2,"v":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"b":3,"v":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"b":4,"v":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"b":5,"v":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"b":6,"v":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"b":7,"v":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"b":8,"v":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[1.39]}},{"b":10,"v":{"DEFAULT":[7.16]}},{"b":11,"v":{"DEFAULT":[7.77]}},{"b":12,"v":{"DEFAULT":[2.77]}},{"b":13,"v":{"DEFAULT":[55.66]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[215.2]}}]}, +{"f":91,"b":[{"b":0,"v":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"b":1,"v":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"b":2,"v":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"b":3,"v":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"b":4,"v":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"b":5,"v":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"b":6,"v":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"b":7,"v":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"b":8,"v":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"b":9,"v":{"DEFAULT":[1.55]}},{"b":10,"v":{"DEFAULT":[6.24]}},{"b":11,"v":{"DEFAULT":[6.72]}},{"b":12,"v":{"DEFAULT":[2.33]}},{"b":13,"v":{"DEFAULT":[44.61]}},{"b":14,"v":{"DEFAULT":[242.8]}},{"b":15,"v":{"DEFAULT":[64]}},{"b":16,"v":{"DEFAULT":[266]}}]}, +{"f":92,"b":[{"b":0,"v":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"b":1,"v":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"b":2,"v":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"b":3,"v":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"b":4,"v":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"b":5,"v":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"b":6,"v":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"b":7,"v":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"b":8,"v":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.71]}},{"b":10,"v":{"DEFAULT":[5.07]}},{"b":11,"v":{"DEFAULT":[6.64]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[32.48]}},{"b":14,"v":{"DEFAULT":[297.7]}},{"b":15,"v":{"DEFAULT":[78.6]}},{"b":16,"v":{"DEFAULT":[340.2]}}]}, +{"f":93,"b":[{"b":0,"v":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"b":1,"v":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"b":2,"v":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"b":3,"v":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"b":4,"v":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"b":5,"v":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"b":6,"v":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"b":7,"v":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"b":8,"v":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[8.64]}},{"b":11,"v":{"DEFAULT":[9.33]}},{"b":12,"v":{"DEFAULT":[2.15]}},{"b":13,"v":{"DEFAULT":[70.58]}},{"b":14,"v":{"DEFAULT":[193.9]}},{"b":15,"v":{"DEFAULT":[52.9]}},{"b":16,"v":{"DEFAULT":[212.4]}}]}, +{"f":94,"b":[{"b":0,"v":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"b":1,"v":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"b":2,"v":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"b":3,"v":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"b":4,"v":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"b":5,"v":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"b":6,"v":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"b":7,"v":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"b":8,"v":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"b":9,"v":{"DEFAULT":[1.22]}},{"b":10,"v":{"DEFAULT":[5.99]}},{"b":11,"v":{"DEFAULT":[6.44]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[45.41]}},{"b":14,"v":{"DEFAULT":[185.9]}},{"b":15,"v":{"DEFAULT":[50.6]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, +{"f":95,"b":[{"b":0,"v":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"b":1,"v":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"b":2,"v":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"b":3,"v":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"b":4,"v":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"b":5,"v":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"b":6,"v":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"b":7,"v":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"b":8,"v":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.44]}},{"b":11,"v":{"DEFAULT":[6.93]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[47.44]}},{"b":14,"v":{"DEFAULT":[246.1]}},{"b":15,"v":{"DEFAULT":[64.7]}},{"b":16,"v":{"DEFAULT":[276.7]}}]}, +{"f":96,"b":[{"b":0,"v":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"b":1,"v":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"b":2,"v":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"b":3,"v":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"b":4,"v":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"b":5,"v":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"b":6,"v":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"b":7,"v":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"b":8,"v":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"b":9,"v":{"DEFAULT":[1.33]}},{"b":10,"v":{"DEFAULT":[8.62]}},{"b":11,"v":{"DEFAULT":[9.31]}},{"b":12,"v":{"DEFAULT":[2.18]}},{"b":13,"v":{"DEFAULT":[70.21]}},{"b":14,"v":{"DEFAULT":[200.2]}},{"b":15,"v":{"DEFAULT":[54.7]}},{"b":16,"v":{"DEFAULT":[224.7]}}]}, +{"f":97,"b":[{"b":0,"v":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"b":1,"v":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"b":2,"v":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"b":3,"v":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"b":4,"v":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"b":5,"v":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"b":6,"v":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"b":7,"v":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"b":8,"v":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"b":9,"v":{"DEFAULT":[1.24]}},{"b":10,"v":{"DEFAULT":[4.43]}},{"b":11,"v":{"DEFAULT":[4.83]}},{"b":12,"v":{"DEFAULT":[1.95]}},{"b":13,"v":{"DEFAULT":[30.4]}},{"b":14,"v":{"DEFAULT":[196.8]}},{"b":15,"v":{"DEFAULT":[53.3]}},{"b":16,"v":{"DEFAULT":[219.6]}}]}, +{"f":98,"b":[{"b":0,"v":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"b":1,"v":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"b":2,"v":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"b":3,"v":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"b":4,"v":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"b":5,"v":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"b":6,"v":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"b":7,"v":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"b":8,"v":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"b":9,"v":{"DEFAULT":[1.16]}},{"b":10,"v":{"DEFAULT":[5.06]}},{"b":11,"v":{"DEFAULT":[5.52]}},{"b":12,"v":{"DEFAULT":[1.88]}},{"b":13,"v":{"DEFAULT":[37.08]}},{"b":14,"v":{"DEFAULT":[181.6]}},{"b":15,"v":{"DEFAULT":[49.5]}},{"b":16,"v":{"DEFAULT":[203.1]}}]}, +{"f":99,"b":[{"b":0,"v":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"b":1,"v":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"b":2,"v":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"b":3,"v":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"b":4,"v":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"b":5,"v":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"b":6,"v":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"b":7,"v":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"b":8,"v":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"b":9,"v":{"DEFAULT":[1.28]}},{"b":10,"v":{"DEFAULT":[4.95]}},{"b":11,"v":{"DEFAULT":[5.47]}},{"b":12,"v":{"DEFAULT":[2.48]}},{"b":13,"v":{"DEFAULT":[35.36]}},{"b":14,"v":{"DEFAULT":[185.7]}},{"b":15,"v":{"DEFAULT":[50.8]}},{"b":16,"v":{"DEFAULT":[207.8]}}]}, +{"f":100,"b":[{"b":0,"v":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"b":1,"v":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"b":2,"v":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"b":3,"v":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"b":4,"v":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"b":5,"v":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"b":6,"v":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"b":7,"v":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"b":8,"v":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"b":9,"v":{"DEFAULT":[1.18]}},{"b":10,"v":{"DEFAULT":[6.16]}},{"b":11,"v":{"DEFAULT":[6.76]}},{"b":12,"v":{"DEFAULT":[1.97]}},{"b":13,"v":{"DEFAULT":[47.98]}},{"b":14,"v":{"DEFAULT":[182.9]}},{"b":15,"v":{"DEFAULT":[49.8]}},{"b":16,"v":{"DEFAULT":[204.3]}}]}, +{"f":101,"b":[{"b":0,"v":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"b":1,"v":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"b":2,"v":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"b":3,"v":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"b":4,"v":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"b":5,"v":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"b":6,"v":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"b":7,"v":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"b":8,"v":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"b":9,"v":{"DEFAULT":[1.45]}},{"b":10,"v":{"DEFAULT":[6.31]}},{"b":11,"v":{"DEFAULT":[7.04]}},{"b":12,"v":{"DEFAULT":[2.95]}},{"b":13,"v":{"DEFAULT":[42.01]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[291.4]}}]}, +{"f":102,"b":[{"b":0,"v":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"b":1,"v":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"b":2,"v":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"b":3,"v":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"b":4,"v":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"b":5,"v":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"b":6,"v":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"b":7,"v":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"b":8,"v":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[2.51]}},{"b":11,"v":{"DEFAULT":[2.56]}},{"b":12,"v":{"DEFAULT":[2.46]}},{"b":13,"v":{"DEFAULT":[19.15]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, +{"f":103,"b":[{"b":0,"v":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"b":1,"v":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"b":2,"v":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"b":3,"v":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"b":4,"v":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"b":5,"v":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"b":6,"v":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"b":7,"v":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"b":8,"v":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[3.53]}},{"b":11,"v":{"DEFAULT":[3.62]}},{"b":12,"v":{"DEFAULT":[0.69]}},{"b":13,"v":{"DEFAULT":[29.02]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[46.2]}}]}, +{"f":104,"b":[{"b":0,"v":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"b":1,"v":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"b":2,"v":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"b":3,"v":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"b":4,"v":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"b":5,"v":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"b":6,"v":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"b":7,"v":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"b":8,"v":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.83]}},{"b":11,"v":{"DEFAULT":[2.79]}},{"b":12,"v":{"DEFAULT":[0.86]}},{"b":13,"v":{"DEFAULT":[20.86]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.3]}}]}, +{"f":105,"b":[{"b":0,"v":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"b":1,"v":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"b":2,"v":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"b":3,"v":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"b":4,"v":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"b":5,"v":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"b":6,"v":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"b":7,"v":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"b":8,"v":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[3.74]}},{"b":11,"v":{"DEFAULT":[3.77]}},{"b":12,"v":{"DEFAULT":[0.92]}},{"b":13,"v":{"DEFAULT":[30.81]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[47.8]}}]}, +{"f":106,"b":[{"b":0,"v":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"b":1,"v":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"b":2,"v":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"b":3,"v":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"b":4,"v":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"b":5,"v":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"b":6,"v":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"b":7,"v":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"b":8,"v":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.49]}},{"b":12,"v":{"DEFAULT":[0.76]}},{"b":13,"v":{"DEFAULT":[17.96]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[46.1]}}]}, +{"f":107,"b":[{"b":0,"v":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"b":1,"v":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"b":2,"v":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"b":3,"v":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"b":4,"v":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"b":5,"v":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"b":6,"v":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"b":7,"v":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"b":8,"v":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.77]}},{"b":11,"v":{"DEFAULT":[3.81]}},{"b":12,"v":{"DEFAULT":[0.79]}},{"b":13,"v":{"DEFAULT":[31.38]}},{"b":14,"v":{"DEFAULT":[19.8]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[50.8]}}]}, +{"f":108,"b":[{"b":0,"v":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"b":1,"v":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"b":2,"v":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"b":3,"v":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"b":4,"v":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"b":5,"v":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"b":6,"v":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"b":7,"v":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"b":8,"v":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.39]}},{"b":11,"v":{"DEFAULT":[3.46]}},{"b":12,"v":{"DEFAULT":[1.13]}},{"b":13,"v":{"DEFAULT":[25.83]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[91.7]}}]}, +{"f":109,"b":[{"b":0,"v":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"b":1,"v":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"b":2,"v":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"b":3,"v":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"b":4,"v":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"b":5,"v":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"b":6,"v":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"b":7,"v":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"b":8,"v":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.94]}},{"b":10,"v":{"DEFAULT":[4.94]}},{"b":11,"v":{"DEFAULT":[5.04]}},{"b":12,"v":{"DEFAULT":[1.12]}},{"b":13,"v":{"DEFAULT":[39.64]}},{"b":14,"v":{"DEFAULT":[81.4]}},{"b":15,"v":{"DEFAULT":[20]}},{"b":16,"v":{"DEFAULT":[93.8]}}]}, +{"f":110,"b":[{"b":0,"v":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"b":1,"v":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"b":2,"v":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"b":3,"v":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"b":4,"v":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"b":5,"v":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"b":6,"v":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"b":7,"v":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"b":8,"v":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.99]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.75]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[25.86]}},{"b":14,"v":{"DEFAULT":[92.5]}},{"b":15,"v":{"DEFAULT":[23]}},{"b":16,"v":{"DEFAULT":[103.3]}}]}, +{"f":111,"b":[{"b":0,"v":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"b":1,"v":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"b":2,"v":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"b":3,"v":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"b":4,"v":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"b":5,"v":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"b":6,"v":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"b":7,"v":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"b":8,"v":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"b":9,"v":{"DEFAULT":[1.78]}},{"b":10,"v":{"DEFAULT":[8.42]}},{"b":11,"v":{"DEFAULT":[11.17]}},{"b":12,"v":{"DEFAULT":[23.36]}},{"b":13,"v":{"DEFAULT":[68.52]}},{"b":14,"v":{"DEFAULT":[277.6]}},{"b":15,"v":{"DEFAULT":[81]}},{"b":16,"v":{"DEFAULT":[387.8]}}]}, +{"f":112,"b":[{"b":0,"v":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"b":1,"v":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"b":2,"v":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"b":3,"v":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"b":4,"v":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"b":5,"v":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"b":6,"v":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"b":7,"v":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"b":8,"v":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.78]}},{"b":11,"v":{"DEFAULT":[3.76]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.27]}},{"b":14,"v":{"DEFAULT":[173.9]}},{"b":15,"v":{"DEFAULT":[44.3]}},{"b":16,"v":{"DEFAULT":[208.5]}}]}, +{"f":113,"b":[{"b":0,"v":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"b":1,"v":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"b":2,"v":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"b":3,"v":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"b":4,"v":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"b":5,"v":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"b":6,"v":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"b":7,"v":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"b":8,"v":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.75]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[20.43]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[38.1]}}]}, +{"f":114,"b":[{"b":0,"v":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"b":1,"v":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"b":2,"v":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"b":3,"v":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"b":4,"v":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"b":5,"v":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"b":6,"v":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"b":7,"v":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"b":8,"v":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.53]}},{"b":12,"v":{"DEFAULT":[1.36]}},{"b":13,"v":{"DEFAULT":[18.99]}},{"b":14,"v":{"DEFAULT":[5.2]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[41]}}]}, +{"f":115,"b":[{"b":0,"v":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"b":1,"v":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"b":2,"v":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"b":3,"v":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"b":4,"v":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"b":5,"v":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"b":6,"v":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"b":7,"v":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"b":8,"v":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"b":9,"v":{"DEFAULT":[0.49]}},{"b":10,"v":{"DEFAULT":[2.74]}},{"b":11,"v":{"DEFAULT":[2.77]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[21.07]}},{"b":14,"v":{"DEFAULT":[11.5]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[42.3]}}]}, +{"f":116,"b":[{"b":0,"v":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"b":1,"v":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"b":2,"v":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"b":3,"v":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"b":4,"v":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"b":5,"v":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"b":6,"v":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"b":7,"v":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"b":8,"v":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.51]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[3.01]}},{"b":12,"v":{"DEFAULT":[0.83]}},{"b":13,"v":{"DEFAULT":[22.64]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[42.2]}}]}, +{"f":117,"b":[{"b":0,"v":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"b":1,"v":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"b":2,"v":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"b":3,"v":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"b":4,"v":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"b":6,"v":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"b":7,"v":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"b":8,"v":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.82]}},{"b":11,"v":{"DEFAULT":[1.83]}},{"b":12,"v":{"DEFAULT":[0.64]}},{"b":13,"v":{"DEFAULT":[12.61]}},{"b":14,"v":{"DEFAULT":[10.4]}},{"b":15,"v":{"DEFAULT":[3.6]}},{"b":16,"v":{"DEFAULT":[33.7]}}]}, +{"f":118,"b":[{"b":0,"v":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"b":1,"v":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"b":2,"v":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"b":3,"v":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"b":4,"v":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"b":5,"v":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"b":6,"v":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"b":7,"v":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"b":8,"v":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[5.08]}},{"b":11,"v":{"DEFAULT":[5.13]}},{"b":12,"v":{"DEFAULT":[3.58]}},{"b":13,"v":{"DEFAULT":[33.97]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[130]}}]}, +{"f":119,"b":[{"b":0,"v":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"b":1,"v":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"b":2,"v":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"b":3,"v":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"b":4,"v":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"b":5,"v":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"b":6,"v":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"b":7,"v":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"b":8,"v":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[4.52]}},{"b":11,"v":{"DEFAULT":[4.58]}},{"b":12,"v":{"DEFAULT":[3.09]}},{"b":13,"v":{"DEFAULT":[29.5]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[109.1]}}]}, +{"f":120,"b":[{"b":0,"v":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"b":1,"v":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"b":2,"v":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"b":3,"v":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"b":4,"v":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"b":5,"v":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"b":6,"v":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"b":7,"v":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"b":8,"v":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.59]}},{"b":11,"v":{"DEFAULT":[2.64]}},{"b":12,"v":{"DEFAULT":[1.05]}},{"b":13,"v":{"DEFAULT":[17.75]}},{"b":14,"v":{"DEFAULT":[27.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[52.6]}}]}, +{"f":121,"b":[{"b":0,"v":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"b":1,"v":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"b":2,"v":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"b":3,"v":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"b":4,"v":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"b":5,"v":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"b":6,"v":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"b":7,"v":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"b":8,"v":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.74]}},{"b":10,"v":{"DEFAULT":[3.29]}},{"b":11,"v":{"DEFAULT":[3.29]}},{"b":12,"v":{"DEFAULT":[2.32]}},{"b":13,"v":{"DEFAULT":[16.46]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[51.3]}}]}, +{"f":122,"b":[{"b":0,"v":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"b":1,"v":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"b":2,"v":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"b":3,"v":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"b":4,"v":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"b":5,"v":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"b":6,"v":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"b":7,"v":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"b":8,"v":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[3.58]}},{"b":11,"v":{"DEFAULT":[3.65]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[29.51]}},{"b":14,"v":{"DEFAULT":[17.6]}},{"b":15,"v":{"DEFAULT":[7.2]}},{"b":16,"v":{"DEFAULT":[52.4]}}]}, +{"f":123,"b":[{"b":0,"v":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"b":1,"v":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"b":2,"v":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"b":3,"v":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"b":4,"v":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"b":5,"v":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"b":6,"v":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"b":7,"v":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"b":8,"v":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.88]}},{"b":13,"v":{"DEFAULT":[20.33]}},{"b":14,"v":{"DEFAULT":[19.5]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[49.5]}}]}, +{"f":124,"b":[{"b":0,"v":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"b":1,"v":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"b":2,"v":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"b":3,"v":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"b":4,"v":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"b":5,"v":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"b":6,"v":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"b":7,"v":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"b":8,"v":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[2.92]}},{"b":11,"v":{"DEFAULT":[2.96]}},{"b":12,"v":{"DEFAULT":[1.44]}},{"b":13,"v":{"DEFAULT":[21.58]}},{"b":14,"v":{"DEFAULT":[22.9]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[54.2]}}]}, +{"f":125,"b":[{"b":0,"v":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"b":1,"v":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"b":2,"v":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"b":3,"v":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"b":4,"v":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"b":5,"v":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"b":6,"v":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"b":7,"v":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"b":8,"v":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"b":9,"v":{"DEFAULT":[1.75]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.85]}},{"b":12,"v":{"DEFAULT":[3.52]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[208.1]}}]}, +{"f":126,"b":[{"b":0,"v":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"b":1,"v":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"b":2,"v":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"b":3,"v":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"b":4,"v":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"b":5,"v":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"b":6,"v":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"b":7,"v":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"b":8,"v":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[1.34]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.79]}},{"b":13,"v":{"DEFAULT":[17.53]}},{"b":14,"v":{"DEFAULT":[191.7]}},{"b":15,"v":{"DEFAULT":[32.4]}},{"b":16,"v":{"DEFAULT":[181.5]}}]}, +{"f":127,"b":[{"b":0,"v":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"b":1,"v":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"b":2,"v":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"b":3,"v":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"b":4,"v":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"b":5,"v":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"b":6,"v":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"b":7,"v":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"b":8,"v":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.17]}},{"b":11,"v":{"DEFAULT":[2.18]}},{"b":12,"v":{"DEFAULT":[0.65]}},{"b":13,"v":{"DEFAULT":[15.87]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[2.7]}},{"b":16,"v":{"DEFAULT":[39.9]}}]}, +{"f":128,"b":[{"b":0,"v":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"b":1,"v":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"b":2,"v":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"b":3,"v":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"b":4,"v":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"b":5,"v":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"b":6,"v":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"b":7,"v":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"b":8,"v":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"b":9,"v":{"DEFAULT":[0.61]}},{"b":10,"v":{"DEFAULT":[2.78]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.75]}},{"b":13,"v":{"DEFAULT":[21.59]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[59.1]}}]}, +{"f":129,"b":[{"b":0,"v":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"b":1,"v":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"b":2,"v":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"b":3,"v":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"b":4,"v":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"b":5,"v":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"b":6,"v":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"b":7,"v":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"b":8,"v":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"b":9,"v":{"DEFAULT":[0.67]}},{"b":10,"v":{"DEFAULT":[2.85]}},{"b":11,"v":{"DEFAULT":[2.87]}},{"b":12,"v":{"DEFAULT":[0.85]}},{"b":13,"v":{"DEFAULT":[21.64]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[65.8]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"b":1,"v":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"b":2,"v":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"b":4,"v":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"b":5,"v":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"b":6,"v":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"b":7,"v":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"b":8,"v":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"b":9,"v":{"DEFAULT":[0.66]}},{"b":10,"v":{"DEFAULT":[2.76]}},{"b":11,"v":{"DEFAULT":[2.73]}},{"b":12,"v":{"DEFAULT":[0.87]}},{"b":13,"v":{"DEFAULT":[20.17]}},{"b":14,"v":{"DEFAULT":[17.5]}},{"b":15,"v":{"DEFAULT":[6.7]}},{"b":16,"v":{"DEFAULT":[50.7]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"b":1,"v":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"b":2,"v":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"b":3,"v":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"b":4,"v":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"b":5,"v":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"b":6,"v":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"b":7,"v":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"b":8,"v":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.21]}},{"b":12,"v":{"DEFAULT":[1.15]}},{"b":13,"v":{"DEFAULT":[21.75]}},{"b":14,"v":{"DEFAULT":[76]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[93]}}]}, +{"f":132,"b":[{"b":0,"v":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"b":1,"v":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"b":2,"v":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"b":3,"v":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"b":4,"v":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"b":5,"v":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"b":6,"v":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"b":7,"v":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"b":8,"v":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"b":9,"v":{"DEFAULT":[1.15]}},{"b":10,"v":{"DEFAULT":[6.06]}},{"b":11,"v":{"DEFAULT":[6.65]}},{"b":12,"v":{"DEFAULT":[2.86]}},{"b":13,"v":{"DEFAULT":[46.79]}},{"b":14,"v":{"DEFAULT":[145.2]}},{"b":15,"v":{"DEFAULT":[41.3]}},{"b":16,"v":{"DEFAULT":[159.1]}}]}, +{"f":133,"b":[{"b":0,"v":{"total":[23.1,23.6,23.4,23.9,23.6,23.6,23.7,23.5,23.4,23.2,23.6,23.8,23.7,23.4,23.7],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.5],"paint":[21.3,21.8,21.6,22.1,21.8,21.8,21.8,21.6,21.6,21.4,21.7,22,21.9,21.5,21.9]}},{"b":1,"v":{"total":[25.8,26.1,26.2,26,26.1,26.3,28.9,26.2,27,26.3,29.1,26.8,26.4,26.2,27.2],"script":[3.3,3.6,3.3,3.3,3.4,3.4,3.5,3.5,3.6,3.3,3.6,3.8,3.5,3.5,3.6],"paint":[22.1,22.2,22.4,22.3,22.4,22.5,24.9,22.3,23,22.5,24.8,22.6,22.5,22.3,23.2]}},{"b":2,"v":{"total":[11.2,10.4,11.8,11.1,11.1,10.7,10.2,10.2,10.5,9.8,11.4,9.8,10.8,10.8,10.5],"script":[0.5,0.8,0.6,0.1,0.1,0.3,0.1,0.4,0.1,0.7,0.1,0.1,0.5,0.9,0.1],"paint":[9.6,8.6,9.9,10.8,9.8,9.3,8.6,8.6,9.3,7.8,10.3,8.6,9.2,8.8,8.9]}},{"b":3,"v":{"total":[2.9,1.7,3,2.4,2.2,2.3,2.1,2.1,2.7,2.7,2.1,1.9,2.5,2.4,2.4,2.6,3.3,2.5,2.9,3.6,2,2.9,3.1,2.8,2.8],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.6,0.1,0.3,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[2.3,1.5,2.8,1.5,1.3,1.8,1.6,1.3,2.5,1.4,1.1,1.1,1.7,2.2,1.2,2.2,2.1,2.3,2,2.3,1,2.4,2.9,1,2.1]}},{"b":4,"v":{"total":[13.4,12.6,12.3,12.9,13.1,13.2,12.6,12.3,13.2,13.1,12.7,13.2,14,12.5,13.1],"script":[0.1,0.1,0.1,0,0.1,0.6,0.1,0.4,0.9,0,0,0.2,0.1,0.1,0.1],"paint":[12.4,11.5,11.3,11.3,11.6,11.6,10.2,10.7,11.2,11.8,12,12,12.7,11.5,12.1]}},{"b":5,"v":{"total":[10.7,10.3,10.3,10.4,10.4,10.4,10.4,10.3,10.4,10.2,10.3,10.2,10.3,10.6,11.2],"script":[0.5,0.4,0.2,0.3,0.5,0.3,0.3,0.4,0.4,0.1,0.3,0.4,0.3,0.3,0.2],"paint":[9.7,9,9.5,9.6,8.7,9.4,9.4,8.9,9.4,9.5,9,9,9.6,9.4,10]}},{"b":6,"v":{"total":[243.9,244.7,239.9,241.8,241.7,248.1,244.2,239.4,242.4,244.7,241.2,242.5,239.9,240.4,246.2],"script":[15.3,15.5,15.3,15.3,15.4,15.2,15.1,15.2,15.5,15.2,15.3,15.3,15.2,15.4,15.2],"paint":[221.1,221.7,217.1,219.2,218.7,225.6,221.7,216.6,219.4,222.1,218.6,219.7,217.3,217.6,223.1]}},{"b":7,"v":{"total":[26.5,27,27.8,27.1,27.1,27.1,27,27.8,26.9,27.3,26.8,27,27.5,27,26.8],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4],"paint":[24.4,24.9,25.7,25,25,25,24.9,25.7,24.8,25.1,24.6,24.9,25.4,24.9,24.7]}},{"b":8,"v":{"total":[8.9,8.9,9.4,9.2,9,9.7,9.5,8.7,8.4,9.3,9.8,9.5,10.3,8.8,9],"script":[7.3,7,7.5,7.4,7.5,7.9,7.5,6.6,7.1,6.8,7.7,7.3,7.9,7.3,7],"paint":[0.5,1.6,1,1,0.2,1.5,0.7,1.6,0.3,1.6,1.2,2,1.4,0.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[1.93]}},{"b":11,"v":{"DEFAULT":[1.94]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[13.01]}},{"b":14,"v":{"DEFAULT":[11.3]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.2]}}]}, +{"f":134,"b":[{"b":0,"v":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"b":1,"v":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"b":2,"v":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"b":3,"v":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"b":4,"v":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"b":5,"v":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"b":6,"v":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"b":7,"v":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"b":8,"v":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.45]}},{"b":10,"v":{"DEFAULT":[1.79]}},{"b":11,"v":{"DEFAULT":[1.8]}},{"b":12,"v":{"DEFAULT":[0.58]}},{"b":13,"v":{"DEFAULT":[12.47]}},{"b":14,"v":{"DEFAULT":[5.3]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[36.2]}}]}, +{"f":135,"b":[{"b":0,"v":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"b":1,"v":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"b":2,"v":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"b":3,"v":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"b":4,"v":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"b":5,"v":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"b":6,"v":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"b":7,"v":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"b":8,"v":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.53]}},{"b":10,"v":{"DEFAULT":[1.75]}},{"b":11,"v":{"DEFAULT":[1.75]}},{"b":12,"v":{"DEFAULT":[0.62]}},{"b":13,"v":{"DEFAULT":[12.09]}},{"b":14,"v":{"DEFAULT":[4.9]}},{"b":15,"v":{"DEFAULT":[1.4]}},{"b":16,"v":{"DEFAULT":[39.5]}}]}, +{"f":136,"b":[{"b":0,"v":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"b":1,"v":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"b":2,"v":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"b":3,"v":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"b":4,"v":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"b":5,"v":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"b":6,"v":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"b":7,"v":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"b":8,"v":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[3.89]}},{"b":11,"v":{"DEFAULT":[3.89]}},{"b":12,"v":{"DEFAULT":[15.97]}},{"b":13,"v":{"DEFAULT":[32.37]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[42.5]}}]}, +{"f":137,"b":[{"b":0,"v":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"b":1,"v":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"b":2,"v":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"b":3,"v":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"b":4,"v":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"b":5,"v":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"b":6,"v":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"b":7,"v":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"b":8,"v":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.56]}},{"b":10,"v":{"DEFAULT":[2.05]}},{"b":11,"v":{"DEFAULT":[1.99]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[14.02]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[41.8]}}]}, +{"f":138,"b":[{"b":0,"v":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"b":1,"v":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"b":2,"v":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"b":3,"v":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"b":4,"v":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"b":5,"v":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"b":6,"v":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"b":7,"v":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"b":8,"v":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"b":9,"v":{"DEFAULT":[0.55]}},{"b":10,"v":{"DEFAULT":[2.37]}},{"b":11,"v":{"DEFAULT":[2.41]}},{"b":12,"v":{"DEFAULT":[0.66]}},{"b":13,"v":{"DEFAULT":[18.45]}},{"b":14,"v":{"DEFAULT":[5.8]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[42.7]}}]}, +{"f":139,"b":[{"b":0,"v":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"b":1,"v":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"b":2,"v":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"b":3,"v":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"b":4,"v":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"b":5,"v":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"b":6,"v":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"b":7,"v":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"b":8,"v":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[4.32]}},{"b":11,"v":{"DEFAULT":[4.42]}},{"b":12,"v":{"DEFAULT":[0.97]}},{"b":13,"v":{"DEFAULT":[35.38]}},{"b":14,"v":{"DEFAULT":[39.9]}},{"b":15,"v":{"DEFAULT":[11.1]}},{"b":16,"v":{"DEFAULT":[59.6]}}]}, +{"f":140,"b":[{"b":0,"v":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"b":1,"v":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"b":2,"v":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"b":3,"v":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"b":4,"v":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"b":5,"v":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"b":6,"v":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"b":7,"v":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"b":8,"v":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[3.82]}},{"b":11,"v":{"DEFAULT":[3.88]}},{"b":12,"v":{"DEFAULT":[1.18]}},{"b":13,"v":{"DEFAULT":[28.67]}},{"b":14,"v":{"DEFAULT":[63.7]}},{"b":15,"v":{"DEFAULT":[22.8]}},{"b":16,"v":{"DEFAULT":[82.6]}}]}, +{"f":141,"b":[{"b":0,"v":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"b":1,"v":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"b":2,"v":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"b":3,"v":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"b":4,"v":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"b":5,"v":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"b":6,"v":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"b":7,"v":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"b":8,"v":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"b":9,"v":{"DEFAULT":[0.86]}},{"b":10,"v":{"DEFAULT":[4.24]}},{"b":11,"v":{"DEFAULT":[4.28]}},{"b":12,"v":{"DEFAULT":[1.22]}},{"b":13,"v":{"DEFAULT":[32.45]}},{"b":14,"v":{"DEFAULT":[62.5]}},{"b":15,"v":{"DEFAULT":[22.1]}},{"b":16,"v":{"DEFAULT":[81.1]}}]}, +{"f":142,"b":[{"b":0,"v":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"b":1,"v":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"b":2,"v":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"b":3,"v":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"b":4,"v":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"b":5,"v":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"b":6,"v":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"b":7,"v":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"b":8,"v":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.11]}},{"b":11,"v":{"DEFAULT":[3.12]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[22.25]}},{"b":14,"v":{"DEFAULT":[40.7]}},{"b":15,"v":{"DEFAULT":[14.4]}},{"b":16,"v":{"DEFAULT":[62.8]}}]}, +{"f":143,"b":[{"b":0,"v":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"b":1,"v":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"b":2,"v":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"b":3,"v":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"b":4,"v":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"b":5,"v":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"b":6,"v":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"b":7,"v":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"b":8,"v":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"b":9,"v":{"DEFAULT":[0.89]}},{"b":10,"v":{"DEFAULT":[4.22]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.38]}},{"b":13,"v":{"DEFAULT":[31.64]}},{"b":14,"v":{"DEFAULT":[66.2]}},{"b":15,"v":{"DEFAULT":[24.1]}},{"b":16,"v":{"DEFAULT":[85.3]}}]}, +{"f":144,"b":[{"b":0,"v":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"b":1,"v":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"b":2,"v":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"b":3,"v":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"b":4,"v":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"b":5,"v":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"b":6,"v":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"b":7,"v":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"b":8,"v":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"b":9,"v":{"DEFAULT":[0.71]}},{"b":10,"v":{"DEFAULT":[3.03]}},{"b":11,"v":{"DEFAULT":[3.06]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[21.6]}},{"b":14,"v":{"DEFAULT":[40.6]}},{"b":15,"v":{"DEFAULT":[14.3]}},{"b":16,"v":{"DEFAULT":[65]}}]}, +{"f":145,"b":[{"b":0,"v":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"b":1,"v":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"b":2,"v":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"b":3,"v":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"b":4,"v":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"b":5,"v":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"b":6,"v":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"b":7,"v":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"b":8,"v":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.08]}},{"b":11,"v":{"DEFAULT":[3.14]}},{"b":12,"v":{"DEFAULT":[0.98]}},{"b":13,"v":{"DEFAULT":[23.32]}},{"b":14,"v":{"DEFAULT":[21.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[48.4]}}]}, +{"f":146,"b":[{"b":0,"v":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"b":1,"v":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"b":2,"v":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"b":3,"v":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"b":4,"v":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"b":5,"v":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"b":6,"v":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"b":7,"v":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"b":8,"v":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"b":9,"v":{"DEFAULT":[1.72]}},{"b":10,"v":{"DEFAULT":[2.95]}},{"b":11,"v":{"DEFAULT":[2.97]}},{"b":12,"v":{"DEFAULT":[1.83]}},{"b":13,"v":{"DEFAULT":[13.92]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[63.4]}}]}, +{"f":147,"b":[{"b":0,"v":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"b":1,"v":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"b":2,"v":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"b":3,"v":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"b":4,"v":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"b":5,"v":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"b":6,"v":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"b":7,"v":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"b":8,"v":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.43]}},{"b":11,"v":{"DEFAULT":[6.59]}},{"b":12,"v":{"DEFAULT":[4.95]}},{"b":13,"v":{"DEFAULT":[47.09]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[255.9]}}]}, +{"f":148,"b":[{"b":0,"v":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"b":1,"v":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"b":2,"v":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"b":3,"v":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"b":4,"v":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"b":5,"v":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"b":6,"v":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"b":7,"v":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"b":8,"v":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[6.56]}},{"b":11,"v":{"DEFAULT":[6.83]}},{"b":12,"v":{"DEFAULT":[5.13]}},{"b":13,"v":{"DEFAULT":[48.33]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[262.2]}}]}, +{"f":149,"b":[{"b":0,"v":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"b":1,"v":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"b":2,"v":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"b":3,"v":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"b":4,"v":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"b":5,"v":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"b":6,"v":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"b":7,"v":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"b":8,"v":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.59]}},{"b":10,"v":{"DEFAULT":[3.06]}},{"b":11,"v":{"DEFAULT":[3.08]}},{"b":12,"v":{"DEFAULT":[0.73]}},{"b":13,"v":{"DEFAULT":[24.1]}},{"b":14,"v":{"DEFAULT":[11.1]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[39.1]}}]}, +{"f":150,"b":[{"b":0,"v":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"b":1,"v":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"b":2,"v":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"b":3,"v":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"b":4,"v":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"b":5,"v":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"b":6,"v":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"b":7,"v":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"b":8,"v":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.65]}},{"b":10,"v":{"DEFAULT":[2.62]}},{"b":11,"v":{"DEFAULT":[2.65]}},{"b":12,"v":{"DEFAULT":[0.95]}},{"b":13,"v":{"DEFAULT":[18.29]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[40.8]}}]}, {"f":151,"b":[]}, {"f":152,"b":[]}, {"f":153,"b":[]}, @@ -203,15 +203,18 @@ export const results: RawResult[]=[ {"f":199,"b":[]}, {"f":200,"b":[]}, {"f":201,"b":[]}, -{"f":202,"b":[]}, +{"f":202,"b":[{"b":0,"v":{"total":[44.7,45.7,45.1,45.4,45.1,46,44.8,44.5,45.3,45.1,44.5,45.6,45,45,45.2],"script":[20.5,21.1,20.6,20.9,21,21.6,20.6,20.2,20.9,20.9,20.5,21.1,20.8,21,21.1],"paint":[23.6,24.1,24,24,23.7,23.9,23.7,23.8,23.9,23.7,23.5,24,23.7,23.6,23.6]}},{"b":1,"v":{"total":[17.7,20.2,18.1,17.1,17.4,17.8,17.8,17.5,17.8,18.4,20.1,18.3,18.1,18.2,17.6],"script":[6.2,6.5,6,5.9,5.8,5.9,5.9,5.9,6,6.2,6.8,6.1,6.1,6.2,5.9],"paint":[11,12.9,11.3,10.7,11.1,11.4,11.3,11.1,11.3,11.6,12.6,11.5,11.4,11.4,11.1]}},{"b":2,"v":{"total":[15,16.5,15.7,15.2,16.4,15.9,16,15.8,16.3,15.1,16.2,15.4,16.5,16.3,15.7],"script":[1.6,2.4,2.6,2.1,1.9,1.8,1.8,1.8,2.2,1.8,2.1,1.5,1.7,1.8,2.1],"paint":[11,12.1,12,12.3,13.1,12.4,13.1,12,11.8,12,12.6,11.4,13,12.7,12.5]}},{"b":3,"v":{"total":[9.7,9.7,9.4,9,10.2,9.7,10.8,9.8,11.1,9.2,9.5,10.5,10.6,9.7,10,9.5,9.9,12.3,10.3,9.3,9.8,10.1,9.2,10,9.6],"script":[6,6.7,6.8,6.4,7,5.9,7.7,6.4,8,6.1,7,7.3,7.6,6.8,6.7,6.9,6.7,8.2,7,6.1,6.9,7,5.9,6.9,6.4],"paint":[1.1,2.5,1.6,1.7,2.2,1.9,2.1,2.2,1.8,1.9,1.5,2.2,2.3,2.3,2.3,1,2.6,2.7,2.4,2.2,1.8,2.3,3,1.9,1.2]}},{"b":4,"v":{"total":[13,13.1,13,13.5,12.5,17.8,13.4,14.1,12.2,13.1,13.2,13.1,13.3,12.8,13.2],"script":[2.3,1.9,2.2,2.1,2.4,3,1.7,3,2.1,2.2,2.2,2.3,2.3,2,1.6],"paint":[9.4,10.1,8.5,9.2,9,11.7,9.2,8.9,8.7,9.3,9.4,8.5,8.8,9.2,9.5]}},{"b":5,"v":{"total":[26.1,25.8,26.1,26,26.4,25.2,25.8,25.9,26.1,25.5,26.2,26.1,25.5,26.3,25.3],"script":[8,8,8,7.9,8.2,7.5,7.9,7.9,8.1,7.8,8.3,7.9,7.9,8.1,7.7],"paint":[16.8,16.6,17.1,16.9,17.2,16.4,16.7,17.1,16.9,16.7,16.7,17.3,16.9,17.3,16.7]}},{"b":6,"v":{"total":[443.6,442,445.4,441.4,440.4,441,441.9,443.8,445.8,440.1,443.9,442.8,441.7,443.3,445.3],"script":[188.8,187.1,190.1,187.9,186.7,187.9,188.8,188.4,190.6,186.8,188.9,187.7,187.5,188.1,189.4],"paint":[245,245.1,245.5,243.8,244,243.4,243.6,245.6,245.5,243.8,245.4,245.5,244.3,245.4,246]}},{"b":7,"v":{"total":[51.9,51.4,50.9,51.6,51.2,51,50.9,52,50.8,50.9,50.9,50.7,51.7,50.8,50.7],"script":[21,21.1,20.9,21,21.2,21,20.8,21,21.1,21,20.9,20.7,20.9,20.7,20.8],"paint":[29.6,29.1,28.8,29.4,28.9,28.9,29,29.9,28.6,28.9,28.9,28.8,29.5,29,28.8]}},{"b":8,"v":{"total":[22.1,22.1,22.7,22,21.6,24.5,22.3,22.6,22.5,24,22.9,22.7,22.9,22,22.2],"script":[20.1,20.9,20.8,21,20.6,22.3,20.5,20.7,20.4,21.7,21.5,20.5,21.6,20.5,20.5],"paint":[1.1,0.3,1.8,0.9,0.3,1.7,1,1.2,2,1.7,0.9,2.1,0.3,1.4,0.9]}},{"b":9,"v":{"DEFAULT":[0.62]}},{"b":10,"v":{"DEFAULT":[8.44]}},{"b":11,"v":{"DEFAULT":[8.46]}},{"b":12,"v":{"DEFAULT":[1.26]}},{"b":13,"v":{"DEFAULT":[76.75]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[41.9]}}]}, {"f":203,"b":[]}, {"f":204,"b":[]}, {"f":205,"b":[]}, {"f":206,"b":[]}, {"f":207,"b":[]}, -{"f":208,"b":[]}, +{"f":208,"b":[{"b":0,"v":{"total":[23.3,23.1,23.5,23.5,22.9,23,23.7,24,23.6,23.4,23.1,23.3,25.5,23.3,23.5],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[21.6,21.5,21.8,21.8,21.3,21.4,22,22.3,21.9,21.7,21.5,21.6,23.7,21.6,21.8]}},{"b":1,"v":{"total":[10.9,10.7,10.7,11,11,11,10.6,10.9,10.8,10.8,10.8,11.1,10.9,10.7,11],"script":[1.4,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[9.1,9.1,9.1,9.3,9.3,9.2,9,9.3,9.1,9.2,9.1,9.4,9.3,9,9.3]}},{"b":2,"v":{"total":[11.3,11.5,10.7,11.6,12.1,10.8,12.4,12,11.1,11.6,10.5,10.5,11.1,10.8,11.1],"script":[0.1,0.5,0.1,0.1,1.1,0.1,0.1,0.9,0.5,0.9,0.1,0.4,0.1,0.2,0.7],"paint":[10.3,9.8,9.6,10.2,9,9.5,10.9,10.1,8.5,9.4,9.4,9.1,9.8,9.7,9.8]}},{"b":3,"v":{"total":[2.4,2.3,2.7,2.2,3.2,2.5,2.5,2.8,2.2,1.9,2.4,2.6,1.9,2.6,2,4,2.8,2.9,2.7,3.3,2.2,2.1,2.8,2.5,2.8],"script":[0,0,0,0,1,0,0,0,0,0,0,0.6,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[2.2,1.5,2.5,2,2.1,2.4,2.1,2.6,1.3,1.7,1.9,1.4,1.1,2.4,1.8,1.9,1.5,2.6,2.4,1.6,1.3,1.7,1.3,2.4,1.5]}},{"b":4,"v":{"total":[24.4,8.5,7.9,12,8.3,7.9,8.9,8.1,8.2,10.4,8.6,9.1,7.9,8.2,8.5],"script":[0.1,0.1,0.1,0.6,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[6.1,7.4,6.1,9.2,6.8,7,6.4,6.9,6.5,8.9,7.5,8.1,6.8,7.2,6.6]}},{"b":5,"v":{"total":[18.8,18.3,19.5,18.5,18.9,18.7,18.6,18.5,18.8,18.1,18.2,18.2,17.8,18.5,18.3],"script":[2.5,2.1,2.8,2.8,2.5,2.5,2.7,2.4,2.5,2.4,2.4,2.5,2.4,2.4,2.4],"paint":[15.6,15.6,16,15.1,15.8,15.6,15,15.4,15.6,15.1,15.2,15.1,14.7,15.4,15.2]}},{"b":6,"v":{"total":[252.5,250.3,250.3,251.7,249.7,253.1,249.4,250.3,248.6,252.8,253,250.8,248.8,251.1,251.9],"script":[14.8,14.7,14.9,14.8,14.8,14.7,14.6,14.6,14.7,14.8,14.8,14.6,14.5,14.4,15],"paint":[229.7,228.4,228,229.6,227.8,231.1,227.6,228.6,226.6,230.5,230.7,228.9,227.1,229.6,229.8]}},{"b":7,"v":{"total":[27.3,27.3,27.3,27.3,27.4,27.2,27.1,27.2,27.5,26.9,27.3,27.2,27.4,27.2,26.9],"script":[1.3,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4],"paint":[25.3,25.2,25.3,25.2,25.4,25.1,25.1,25.2,25.4,24.8,25.2,25.2,25.4,25.1,24.8]}},{"b":8,"v":{"total":[10.3,9.5,9.5,9.1,9.2,9,9.9,8.8,9.4,8.9,9.5,8.9,8.8,9.5,9.9],"script":[7.4,7.3,7,7,7.5,6.8,7.8,7.2,7.1,7.3,8.1,7.1,6.8,7.4,7.9],"paint":[1.3,1.1,1.7,0.9,0.2,1.3,1.4,0.3,0.8,0.4,0.2,1,0.9,1.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.89]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[40.5]}}]}, {"f":209,"b":[]}, {"f":210,"b":[]}, -{"f":211,"b":[]},]; -export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.1-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v1.0.8-keyed","dir":"keyed/hellajs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.204-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zess-v1.0.8-keyed","dir":"keyed/zess","keyed":true,"frameworkHomeURL":"https://rpsffx.github.io/zess/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v11.5.1-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.0.2-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":211,"b":[{"b":0,"v":{"total":[30.1,31.8,36.1,35.5,35.8,37.5,29.7,34.9,37,36.2,31.6,37.1,34.3,35.5,36.5],"script":[7.4,7.8,6.6,6.7,6.5,7.5,6.9,6.7,6.6,7.4,6.6,6.6,7.4,6.9,7.4],"paint":[22.4,23.6,22.7,22.7,22.3,22.5,22.5,22.6,22.5,22.2,22.8,22.6,22.7,22.3,22.1]}},{"b":1,"v":{"total":[18.9,18.9,19,14.8,19.2,21.1,17.5,18.6,16.5,16.7,16.9,18.1,18.6,17.4,17.7],"script":[3.8,3.7,3.7,3.8,3.9,3.8,3.6,3.7,3.7,3.6,3.7,4,4.3,3.7,3.7],"paint":[8.9,8.7,9,9,9.2,9.1,8.9,8.9,8.8,8.7,9,9.1,10.2,8.8,9]}},{"b":2,"v":{"total":[29.3,30,13.9,30.1,30.1,30,30,31.7,29.6,30.1,31.4,28.5,14.2,32,15.7],"script":[2.8,2.8,2.7,2.7,2,2.6,2.5,2.6,2.5,2.7,2.3,2.5,1.9,2.8,2.6],"paint":[9.7,11.1,11,9.7,12,11.8,11.4,12.2,10,11.8,13,10.6,10.1,12.8,10.4]}},{"b":3,"v":{"total":[3.9,3.9,6.1,3.6,4.1,5,3.7,6.8,7.3,3.4,3.7,4.2,4,4,3.8,4.2,3.4,4,3.5,3.8,4,3.9,3.6,3.7,3.5],"script":[0.6,1.7,0.9,1,0.9,0.9,1.5,1.6,1.9,0.3,1.5,1.9,1.7,1.5,1.6,1.1,1.2,1,0.7,1.4,1.6,0.8,1.3,0.9,1.4],"paint":[2.7,1.4,1.6,2.4,3,1.7,1.3,2.3,1.8,1.4,1.3,1.4,1.4,1.4,1.6,1.6,1.3,1.4,2,1.9,1.4,2.2,1.4,1.7,1.3]}},{"b":4,"v":{"total":[24.8,24.3,9.5,24.9,24.6,9.1,25.5,25.3,9.4,25.1,25.4,25.4,24.4,25.8,25.7],"script":[0.6,0.8,0.6,1.1,0.6,1.1,1.3,1.3,0.7,1.1,1.2,0.7,1.1,1.8,1.5],"paint":[7.7,7.1,7.2,7.9,7.5,7,8,7.6,7.7,7.4,7.8,8.6,7.2,8.4,8.3]}},{"b":5,"v":{"total":[24.5,22.4,21.9,24.6,21.8,21.4,23.3,22.2,22.9,23.8,22.8,24.6,21.6,21.9,24.7],"script":[6.4,6.3,6.3,6.6,6.6,6.2,6.2,6.3,6.3,6.4,6.4,6.4,6.2,6.6,6.7],"paint":[15.3,14.7,14.7,15.5,14.6,14.9,14.7,14.7,15.3,14.5,14.5,15.2,14.8,14.8,15.1]}},{"b":6,"v":{"total":[307,311.7,311.7,310.6,307.6,310.6,306.7,314.4,308.9,310,310.6,312.2,309.6,306.6,313.3],"script":[75.5,78.6,75.9,76,75.7,76.3,77.2,75.2,75.4,75.1,76.7,76.7,76.4,76.2,77.9],"paint":[227.2,224.5,225.9,227.7,226.2,224,223.5,230.9,226.3,224.4,226.5,226.4,223.3,223.7,227.1]}},{"b":7,"v":{"total":[38.2,40.8,34.4,34.1,38.3,38,38.1,34.9,34.1,34,34.5,38.6,38.4,38,39.2],"script":[6.3,6.2,6.6,6.5,6.2,6.3,6.3,6.8,6.3,6.4,6.7,6.4,6.4,6.3,6.4],"paint":[26.7,27.1,27.2,27.1,26.9,26.8,26.7,27.2,27.2,27.1,27.2,26.9,26.9,26.8,27.1]}},{"b":8,"v":{"total":[28,27.6,29.1,28.3,29,26.9,12.4,26.7,27.7,27.2,27.3,10.7,11.6,26.8,27.5],"script":[10.6,9.5,10.8,10.9,11.5,9.7,10.6,9.1,10.1,9.6,9.5,9.6,10,9,9.4],"paint":[1.2,1.2,2.2,0.3,0.7,0.8,0.8,1.1,0.4,0.6,1.2,0.3,1.3,0.9,0.8]}},{"b":9,"v":{"DEFAULT":[0.58]}},{"b":10,"v":{"DEFAULT":[2.97]}},{"b":11,"v":{"DEFAULT":[2.95]}},{"b":12,"v":{"DEFAULT":[0.74]}},{"b":13,"v":{"DEFAULT":[22.53]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.4]}},{"b":16,"v":{"DEFAULT":[37.7]}}]}, +{"f":212,"b":[]}, +{"f":213,"b":[]}, +{"f":214,"b":[]},]; +export const frameworks = [{"name":"alpine-v3.14.7-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v20.0.1-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-new-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-new-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-v20.0.1-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"angular-cf-signals-nozone-v20.0.1-keyed","dir":"keyed/angular-cf-signals-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v20.0.1-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.dev/"},{"name":"apprun-v3.33.9-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia2-v2.0.0-beta.22-keyed","dir":"keyed/aurelia2","keyed":true,"frameworkHomeURL":""},{"name":"blazor-wasm-v9.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v9.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.29-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.11.2-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.1-beta.1-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io/"},{"name":"crank-v0.6.0-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.4.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"deleight-v5.5.8-keyed","dir":"keyed/deleight","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"destam-dom-v0.10.2-keyed","dir":"keyed/destam-dom","keyed":true,"frameworkHomeURL":"https://github.com/Nefsen402/destam-dom"},{"name":"dioxus-v0.5.1-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"doohtml-lite-keyed","dir":"keyed/doohtml-lite","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com/"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v6.4.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"endr-v0.2.1-keyed","dir":"keyed/endr","keyed":true,"frameworkHomeURL":"https://github.com/caseywebdev/endr"},{"name":"fntags-v0.5.1-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"frei-hooks-v1.2.1-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"gxt-v0.0.57-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hellajs-v1.0.8-keyed","dir":"keyed/hellajs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://hellajs.com/"},{"name":"hono-v4.6.13-keyed","dir":"keyed/hono","keyed":true,"frameworkHomeURL":"https://hono.dev/"},{"name":"hydro-js-v1.8.9-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v4.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v4.0.1-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev/"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.17.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev/"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.7.0-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.2.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v2.2.0-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lui-noeval-v2.2.0-keyed","dir":"keyed/lui-noeval","keyed":true,"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v8.12.0-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marko-v6.0.88-keyed","dir":"keyed/marko","keyed":true,"issues":[1139],"frameworkHomeURL":"https://markojs.com/"},{"name":"marko-classes-v5.37.60-keyed","dir":"keyed/marko-classes","keyed":true,"issues":[1139],"frameworkHomeURL":"https://markojs.com/"},{"name":"mettle-v1.7.0-keyed","dir":"keyed/mettle","keyed":true,"frameworkHomeURL":"https://maomincoding.github.io/mettle-doc/"},{"name":"michijs-v2.3.2-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://dev.michijs.com/"},{"name":"mikado-v0.8.400-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.400-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.16.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"nanoviews-v1.0.0-alpha.2-keyed","dir":"keyed/nanoviews","keyed":true,"frameworkHomeURL":"https://github.com/TrigenSoftware/nanoviews/tree/main/packages/nanoviews#readme"},{"name":"native-document-v1.0.34-keyed","dir":"keyed/native-document","keyed":true,"frameworkHomeURL":"https://github.com/afrocodeur/native-document"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.5.1-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v7.2.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.19.206-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.27.1-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.27.1-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","dir":"keyed/preact-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"preact-signals-v10.27.1 + 2.3.1-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"quel-v0.23.1-keyed","dir":"keyed/quel","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"qwik-v1.11.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.4.4-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"re-frame-v1.4.3-keyed","dir":"keyed/re-frame","keyed":true,"frameworkHomeURL":"https://day8.github.io/re-frame/re-frame/"},{"name":"react-classes-v19.0.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org/"},{"name":"react-compiler-hooks-v19.0.0-keyed","dir":"keyed/react-compiler-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-v19.0.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v19.0.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-kr-observable-v19.0.0 + 3.0.8-keyed","dir":"keyed/react-kr-observable","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/kr-observable"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v19.0.0 + 6.13.5-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-native-onyx-v2.0.108-keyed","dir":"keyed/react-native-onyx","keyed":true,"frameworkHomeURL":"https://github.com/Expensify/react-native-onyx"},{"name":"react-redux-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v19.0.0 + 0.10.7-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-tagged-state-v19.0.0 + 2.1.0-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v19.0.0 + 2.0.1-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v19.0.0 + 5.0.2-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v4.1.5-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-js-v0.25.3-keyed","dir":"keyed/reflex-js","keyed":true,"frameworkHomeURL":"https://github.com/zouloux/reflex"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.4.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"ripple-v0.2.61-keyed","dir":"keyed/ripple","keyed":true,"frameworkHomeURL":"https://ripplejs.com/"},{"name":"rvjs-v0.3.31-keyed","dir":"keyed/rvjs","keyed":true,"frameworkHomeURL":"https://rvjs.xyz/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.15.1 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.15.1 + 2.2.7-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.61.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"silkenweb-v0.9.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.7.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io/"},{"name":"solid-v1.9.3-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.9.3-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"sonnet-v0.0.33-keyed","dir":"keyed/sonnet","keyed":true,"issues":[772],"frameworkHomeURL":"https://sonnet.js.org/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spheres-v0.24.0-keyed","dir":"keyed/spheres","keyed":true,"frameworkHomeURL":"https://github.com/brian-watkins/spheres"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.23.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"svelte-v5.13.0-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.13.0-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"targetjs-v1.0.142-keyed","dir":"keyed/targetjs","keyed":true,"issues":[772],"frameworkHomeURL":"https://targetjs.io/"},{"name":"thyn-v0.0.218-keyed","dir":"keyed/thyn","keyed":true,"frameworkHomeURL":"https://github.com/thynjs/thyn"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"valtio-v18.2.0 + 2.1.2-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-keyed","dir":"keyed/vanillajs-3","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-lite-keyed","dir":"keyed/vanillajs-lite","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-signals-v0.2.2-keyed","dir":"keyed/vanillajs-signals","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/tc39/proposal-signals"},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.5.2-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"viewfly-v1.2.3-keyed","dir":"keyed/viewfly","keyed":true,"frameworkHomeURL":"https://github.com/viewfly/viewfly"},{"name":"vue-v3.6.0-alpha.2-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-jsx-vapor","keyed":true,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-pinia-v3.5.13 + 2.3.0-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.6.0-alpha.2-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"zess-v1.0.8-keyed","dir":"keyed/zess","keyed":true,"frameworkHomeURL":"https://rpsffx.github.io/zess/"},{"name":"zune-v1.0.8-keyed","dir":"keyed/zune","keyed":true,"frameworkHomeURL":""},{"name":"aberdeen-v1.0.4-non-keyed","dir":"non-keyed/aberdeen","keyed":false,"frameworkHomeURL":"https://aberdeenjs.org/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.33.9-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.4.1-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.92.0-non-keyed","dir":"non-keyed/bau","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v23.1.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.9-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"deku-v0.12.1-non-keyed","dir":"non-keyed/deku","keyed":false,"frameworkHomeURL":"http://github.com/mikesol/purescript-deku"},{"name":"deleight-v5.5.10-non-keyed","dir":"non-keyed/deleight","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/mksunny1/deleight"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v5.2.6-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.1-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.2.1-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.8.9-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.2.1-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.2.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v4.0.2-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.400-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.28.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.23.1-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.4.4-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"ravel-v0.3.0-non-keyed","dir":"non-keyed/ravel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/kmicklas/ravel"},{"name":"redom-v4.1.5-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev/"},{"name":"riot-v9.4.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.15.1-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.35.26-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"skruv-liten-v0.0.4-non-keyed","dir":"non-keyed/skruv-liten","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/skruv/liten"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"sprae-v12.1.0-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"svelte-classic-v5.13.0-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v5.0.3-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v2.5.0-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-3-non-keyed","dir":"non-keyed/vanillajs-3","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vode-v1.2.0-non-keyed","dir":"non-keyed/vode","keyed":false,"frameworkHomeURL":"https://github.com/ryupold/vode"},{"name":"vue-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-jsx-vapor","keyed":false,"frameworkHomeURL":"https://github.com/vuejs/vue-jsx-vapor"},{"name":"vue-vapor-v3.6.0-alpha.2-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index e69a008a3..c5efe6d46 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"framework":"endr-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"framework":"endr-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5984573364257812]}},{"framework":"endr-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.399202346801758]}},{"framework":"endr-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4502687454223633]}},{"framework":"endr-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6829929351806641]}},{"framework":"endr-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.966672897338867]}},{"framework":"endr-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902833938598633]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.638214111328125]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.687821388244629]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6624860763549805]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.004850387573242]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.4,28.9,29.3,29.7,29.4,29.8,29.1,29.7,28.8,29.7,30,28.8,29,29.3],"script":[7.6,6.9,6.7,7.1,7,7,7.5,6.8,7.1,6.7,6.9,7.5,6.8,6.7,6.8],"paint":[21.7,22,21.7,21.6,22.2,21.9,21.8,21.8,22,21.6,22.2,22,21.5,21.8,21.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.1,33.8,35.1,33.9,34.7,34.4,34.5,34.7,34.5,33.8,34,33.9,34,33.7],"script":[11.1,11.1,11.2,11.9,11.6,11.4,11.2,11.9,11.4,11.5,11.1,11.2,11.2,11.1,11.1],"paint":[22.5,22.5,22.1,22.5,21.8,22.8,22.7,22.1,22.8,22.5,22.1,22.2,22.2,22.3,22]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.8,15,14.4,14.1,13.9,15.2,14.6,17.5,13.7,13.6,14.5,14,14.6,13.2],"script":[3.9,3.9,4.2,4,3.5,3.7,4.2,3.9,4,3.2,3.4,3.9,3.7,3.7,3.4],"paint":[9.7,10,9.7,9.4,9.2,8.9,9.5,10.1,11.5,9.4,8.9,9.2,8.5,9.3,8.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[5.7,5.3,5.1,4.8,5.9,5,5.3,5,5.4,5.1,5.3,5.7,5.5,5.3,5.3,4.9,5.4,5.2,5.9,5.5,6.5,5.9,5.1,5.6,5.8],"script":[3.7,3.1,3.3,3.2,3.6,3.2,3.4,3.2,2.5,3.3,3.1,3.6,3.1,3.1,3.2,3.1,3.2,2.6,3.8,3.4,3.9,3.5,2.7,3.2,3.5],"paint":[1.2,1.2,1.3,0.7,1.4,1.6,1.2,1,2.4,1.5,1.3,1.4,2,2,1.6,1.2,1.3,2.5,2,1.5,2.1,2.2,1.5,1.8,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.1,18.8,16,16.1,15.7,16.4,16.4,17.5,16.7,16.4,15.8,16.5,16.4,16.1,16.4],"script":[3.6,3.6,3.2,3.1,3.2,3.8,3.8,3.7,3.9,3.4,3.1,3.1,3.8,3.3,3.7],"paint":[11.6,13.6,11.5,11.8,11.3,11.6,11.2,12,11.9,12.1,11.2,12.4,11.7,11.8,12]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,13.7,12.8,12.2,12.3,12.5,13.3,12.4,12.9,13.7,12.3,12.4,12.3,13.9,12.6],"script":[2.4,2.4,2.4,2.2,2.3,2.2,3,2.3,2.5,3.2,2.2,2.1,2.2,2.4,2.2],"paint":[9.5,10.5,9.5,9.6,9.1,9.8,9.8,9.7,9.5,9.5,9.5,9.7,9.7,11.1,9.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[297.4,299.4,298.1,298.9,299.2,299.2,299.1,298.6,299.4,298.2,299.8,298.5,300.7,298.3,297.5],"script":[65,66.3,66.3,66.6,67.7,66.8,66.8,66.2,65.2,65.7,66.5,65.7,67.3,66.7,66],"paint":[225,225.9,224.5,225,224.1,225.1,225.1,225.1,226.8,225.3,225.8,224.6,225.8,224.4,224.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33.9,34.3,34.4,34.6,34.7,34.1,34,35.2,34.2,34.3,34.3,33.9,35.2,33.8],"script":[6.8,6.7,7,7,7.4,7.4,6.8,6.9,7.5,6.8,6.8,7.5,6.8,7,6.7],"paint":[26.3,26.2,26.4,26.4,26.3,26.4,26.4,26.2,26.8,26.4,26.5,25.9,26.1,27.1,26.1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,20.2,19.5,18.6,18.2,17.4,17.1,18.3,17.6,17.6,18,17.1,17.9,18,17.7],"script":[16.2,17.7,16.4,16.1,16.1,15.5,15,16.3,15.1,15.3,15.4,15.6,15.3,15.8,15.8],"paint":[1.1,1.7,1.1,1.6,0.6,0.3,1.2,0.8,1.9,1.8,1.7,0.7,2.3,1.2,1]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.761427879333496]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.528393745422363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.534985542297363]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.5551347732543945]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.22614765167236]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.4,27.6,27.6,27.9,27.8,27.8,27.9,27.6,28,27.7,28,28.4,27.6,27.8],"script":[5.8,5.9,5.5,5.6,5.6,5.8,5.6,5.6,5.6,5.7,5.6,5.8,5.9,5.5,5.5],"paint":[21.9,21.9,21.5,21.4,21.7,21.4,21.7,21.7,21.5,21.7,21.5,21.6,22,21.6,21.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[32,31.9,32.8,31.6,32.2,32.8,32.9,32.7,32.1,31.7,31.8,31.6,32,31.8,32.1],"script":[9.1,8.7,9.3,8.8,9,9.1,9.4,8.9,9.1,8.8,8.7,8.8,9.1,8.9,8.8],"paint":[22.4,22.7,22.9,22.3,22.6,23,23,23.2,22.4,22.3,22.5,22.2,22.4,22.3,22.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,14.3,14.1,14.2,13.8,13.8,14.5,15,13.8,13.4,13.8,14.6,14.8,13.6,14.1],"script":[2.8,3.4,3.2,3,3.1,3.1,3.3,4,2.7,3,2.8,3.2,3.6,2.9,3.3],"paint":[9.2,10,9.6,9.8,9.8,9.8,10.6,9.5,10.4,9.8,9.9,10.2,9.9,9.7,9.8]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.7,9.2,9,8.9,8.9,8.4,9.1,8.6,9,9.5,8.6,8.9,8.7,9.4,9.6,8.9,9.2,9.3,9.5,8.6,8.9,9.5,9.5,9.1,9.4],"script":[5.5,5.7,5.8,5.8,5.5,5.8,6.1,5.8,6,6.8,6.1,5.8,5.5,6.6,5.8,5.8,6.2,6,6.3,5.3,6.1,6.1,6.4,5.5,5.8],"paint":[2.2,1.6,1.5,1.6,1.8,1.3,2.3,1.1,1.2,1.4,1.3,0.8,1.9,1.4,2.7,2.3,1.1,1.3,1.8,0.8,1.3,1.3,2.9,2.4,3.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[102.9,99.9,100.7,99.2,98,98.7,98.7,98.7,97.6,97,98.5,98.9,97.5,96.6,97.6],"script":[11.8,11.9,12.3,12.4,11.6,11.3,12.5,11.5,11.8,11.3,12.3,12.4,11.2,11.1,11.1],"paint":[88.8,85.4,84.7,84.5,84.2,84.6,83.8,85.1,83.4,82.5,84.2,84.9,83.6,83.8,83.7]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,10.7,10.7,11,10.4,11.2,10.9,11,11.3,11,11.1,10.9,10.8,11.1],"script":[0.6,0.6,0.4,0.3,0.6,0.6,0.5,0.6,0.4,0.5,0.6,0.3,0.5,0.6,0.2],"paint":[9.4,9.5,9.5,9.2,9.8,9.6,10,9.7,9.9,10,9.6,10.2,9.8,9.6,10.3]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.5,285.3,286.6,286.4,288.4,289.3,285.9,288.7,285.8,285.5,286.3,286.7,285.5,288.3],"script":[56.1,55.9,54.6,55.2,54.9,55.9,55.3,55.7,56.9,55,55.8,54.9,56.1,55.5,57],"paint":[225.3,224.4,223.2,224.2,224.2,224.4,226.3,222.9,224.5,223.5,222.5,224.2,223.4,222.3,224.1]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.7,32.5,31.9,31.2,31.5,31.7,32.2,32.7,31.4,32.9,32.4,32.3,33.1,32.3,32.3],"script":[5.5,5.4,5.1,5,5,5,5.2,5.3,5.1,5.3,5.4,5.1,5.3,5.2,5.2],"paint":[26.3,26.2,26,25.5,25.5,25.8,26.1,26.5,25.4,26.6,26,26.3,26.8,26.2,26.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,11,12,11.7,11.9,11.8,11.1,11.1,11.1,12,11.4,11.3,12.1,13.2,12],"script":[11.4,9.6,9.7,10,9.8,9.9,9,9.7,9.3,10.1,9.5,9.5,10,10.7,10.1],"paint":[1.5,1.1,1.5,1,1.3,1.2,0.2,0.2,0.9,1,0.5,0.9,1.9,1.5,0.2]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5939311981201172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0459794998168945]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.073793411254883]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6935033798217773]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.88069725036621]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.204-keyed","benchmark":"01_run1k","values":{"total":[25.1,25.1,24.9,25.1,24.8,25,24.9,24.8,24.8,25.2,24.6,25.2,25.2,24.7,25.2],"script":[2.8,3,3,2.8,2.8,2.8,2.7,2.8,2.8,2.8,2.7,3.1,3.1,2.7,3],"paint":[22,21.8,21.5,21.9,21.6,21.8,21.8,21.6,21.7,22,21.5,21.8,21.8,21.6,21.8]}},{"framework":"pota-v0.19.204-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28.4,29.2,28.7,28.3,28.8,28.7,28.5,28.6,29.2,28.6,28.6,28.8,29,28.8],"script":[5.7,5.8,6,5.7,5.6,5.7,6.1,5.7,5.6,6,6,5.7,5.8,5.9,6],"paint":[22.1,22.1,22.6,22.4,22.1,22.5,22.1,22.3,22.3,22.6,22,22.3,22.4,22.5,22.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.9,11.2,11.3,12.1,11.6,10.7,11.6,13,10.8,10.7,10.8,11.2,10.4,11.6],"script":[1,0.6,1,1.3,1,1.2,0.9,1,1.1,1.1,0.2,0.2,1.1,0.2,1.2],"paint":[9.1,8.5,9.2,7.7,10.2,9.1,8.4,7.9,11,8.2,8.9,8.9,8.6,9,9.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.1,1.9,2,2.2,2.6,2.4,2.4,2.6,3,1.5,2.3,2.1,2.1,1.9,2.1,2.6,2.4,2.8,2.2,2.5,2.2,2.4,2.3,2.5],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0,0.1,0,0,0],"paint":[2,1.9,1.1,1.1,2,2.4,2.2,2.2,1.5,1.9,1.3,1.3,1.4,1.9,1.2,1.5,1.9,1.4,2.5,1.2,1.6,2,0.8,2.1,1.5]}},{"framework":"pota-v0.19.204-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.8,14.2,13.2,13.1,14,13.4,13.2,12.9,14.3,13,14.2,13.4,14,13],"script":[0.5,0.7,0.9,0.8,0.5,0.9,0.8,0.7,0.5,1,0.3,1.3,0.9,1.1,1],"paint":[11.3,11.2,12.2,10.6,11.5,12.1,11.5,11.8,11.3,12.4,11.2,11.4,11.4,11.6,10.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.7,10.6,10.8,11.9,10.5,10.9,10.7,10.7,10.8,10.7,10.5,10.7,10.5,10.6],"script":[0.6,0.6,0.4,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.6,0.4,0.6,0.3,0.6],"paint":[9.3,9.5,9.2,9.5,9.9,9.5,9.5,9.5,9.6,9.7,9.1,9.7,9.5,9.3,9.6]}},{"framework":"pota-v0.19.204-keyed","benchmark":"07_create10k","values":{"total":[261.9,264.1,263.1,263,260.9,265.6,264.4,261.7,266.4,263.3,264.3,264.6,264.8,261.6,263.3],"script":[33.9,33.5,34.2,33.7,33.4,33.2,34.4,33.8,33.9,33.9,34.3,33.7,33.8,33.2,33.9],"paint":[220.8,223.4,221.5,222,220.3,224.5,222.7,220.8,225,222.2,222.7,223.4,223.8,221.1,222.2]}},{"framework":"pota-v0.19.204-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,30.4,30,30.5,29.8,29.8,30,29.5,30.3,30.6,30.2,29.9,29.9,30.2,30.3],"script":[3,3.2,3.1,3.3,3,3,3.1,3,3.2,3.2,3.2,3.2,3.2,3.2,3.2],"paint":[26,26.4,26.1,26.5,26.1,26,26,25.6,26.4,26.6,26.2,25.9,26,26.3,26.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,10,10.2,9.2,9.4,9.1,10,9.8,8.6,9.7,9.7,9.2,10.1,10.2,9.4],"script":[7.9,8.6,7.8,7.7,8.1,7.7,7.7,8.1,7,7.3,7.4,7.7,8.1,7.9,7.4],"paint":[1.2,0.2,1.7,0.3,0.2,0.2,1.2,1,0.7,1.2,0.3,0.6,0.8,1.3,0.9]}},{"framework":"pota-v0.19.204-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6121883392333984]}},{"framework":"pota-v0.19.204-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.617323875427246]}},{"framework":"pota-v0.19.204-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.631587028503418]}},{"framework":"pota-v0.19.204-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8059463500976562]}},{"framework":"pota-v0.19.204-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.044757843017578]}},{"framework":"pota-v0.19.204-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"pota-v0.19.204-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.204-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6048908233642578]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4003725051879883]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4941368103027344]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7644691467285156]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.955724716186523]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.6,23.6,23.5,23.4,23.2,23.2,23.5,23.6,23,23.5,23.4,23.2,23.5,23.7,23],"script":[1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.4,1.5,1.5,1.5,1.4],"paint":[21.8,21.8,21.6,21.5,21.4,21.4,21.6,21.7,21.2,21.6,21.6,21.4,21.6,21.9,21.2]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.8,25.9,25.7,26,26.1,25.9,25.7,25.8,25.8,26,25.6,26.1,26.2,26.4,26.3],"script":[3.3,3.3,3.3,3.3,3.4,3.3,3.3,3.3,3.1,3.3,3.3,3.4,3.4,3.6,3.5],"paint":[22.1,22.2,22,22.4,22.4,22.1,22,22.1,22.2,22.3,21.9,22.3,22.4,22.4,22.4]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.2,9.8,10.7,9.7,10.3,11,10.3,10.4,12.3,10.8,11.3,10.8,10.4,10.8],"script":[0.1,0.1,0.1,1,0.1,0.7,1,0.3,0.1,0.1,0.5,0.4,0.6,0.1,0.3],"paint":[8.3,9.2,8.8,8.7,7.7,8.1,8.9,8.9,8.4,11.3,9.7,9.7,9.7,8.6,9.3]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[3,2.2,1.9,2.4,1.9,2.2,2.1,2.8,3,2.3,2.4,2.3,2.7,3.2,2.3,2.4,2.4,2.4,2.7,2.3,2.2,1.8,2.4,2.4,2.9],"script":[0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,1.1,0.3,0.2,0.7,0.5,0.5,0.3,0.1,0.2,0.5,0.7,0.8],"paint":[2.3,2,1.1,1.6,1.7,1.6,1.3,2,2.8,2.1,2.2,1.4,2.5,1.5,1.3,1.8,1.5,1.4,1.5,1.6,1.3,1.1,1.8,1.6,1.5]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[12.8,12.4,14.8,13.4,12.7,12.4,12.3,12,12.3,13.3,12.4,12.7,12.6,12.7,11.9],"script":[0.1,0,0.1,0.1,0,0.3,0.1,0,0,0.1,0,0.1,0,0,0],"paint":[11.4,10.9,12.7,10.7,11.2,10.9,11.3,10.4,11.3,12,9.9,11.6,11.4,12.2,10.8]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,11.4,10.8,10.9,10.9,11.1,10.9,10.9,10.7,10.5,10.9,10.9,11,10.4],"script":[0.2,0.2,0.3,0.4,0.3,0.5,0.1,0.3,0.5,0.3,0.1,0.5,0.3,0.2,0.4],"paint":[9.4,9.7,10.4,9.7,9.9,9.8,10.1,9.9,9.8,9.5,9.8,9.3,9.8,10.3,9.6]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[245.1,244.4,241.6,243,244.3,241.9,242.4,260.3,241.5,240.4,241.7,243.4,245.3,242.7,241.7],"script":[15.1,15.3,15,15.4,15.2,15,15,15.3,15.3,14.6,15.4,15,15.1,15.2,15.2],"paint":[222.4,221.5,219,220,221.7,219.1,220,237.3,218.6,218.2,218.8,220.9,222.3,219.9,218.7]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.4,27.4,27.8,27.6,27,26.9,27.3,27.7,27.6,27.7,27.1,26.8,27.6,28.2],"script":[1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.4,1.3,1.4,1.5],"paint":[25.2,25.3,25.3,25.6,25.4,24.9,24.8,25.2,25.5,25.4,25.5,25,24.7,25.5,25.9]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,10.2,9.6,9.6,9.6,9.6,9,9.4,10.6,10.3,9.4,9.2,8.6,9.9,9.3],"script":[7.5,7.9,7.7,7.3,7.9,7.4,7.1,7,8.1,8.1,7.9,7.3,6.9,8.3,7.6],"paint":[0.3,0.5,0.3,2.1,1.1,1.3,1,1.2,1.1,1.2,0.3,0.6,0.3,0.2,1]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4691810607910156]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9343862533569336]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9426498413085938]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5968742370605469]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.009733200073242]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"framework":"zess-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"framework":"zess-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"framework":"zess-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"framework":"zess-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"framework":"zess-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5937604904174805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0592880249023438]}},{"framework":"zess-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763320922851562]}},{"framework":"zess-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325544357299805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.096689224243164]}},{"framework":"zess-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"zess-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}}] \ No newline at end of file +[{"framework":"alpine-v3.14.7-keyed","benchmark":"01_run1k","values":{"total":[76,79.4,77.2,77.1,76.6,77.6,77.4,75.8,75.1,77,77.9,75.8,75.8,75.9,76.4],"script":[52.4,55.1,53,53.4,52.9,53.7,53.7,52.3,51.6,53.4,54.2,52.2,52.4,52.5,52.9],"paint":[23.1,23.8,23.7,23.1,23.2,23.4,23.3,23,23,23.1,23.2,23.1,23,22.9,23]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"02_replace1k","values":{"total":[95.1,94.7,95.9,100.1,96.6,95.4,96.7,97,97.3,97.2,95.6,96.9,97.1,97.7,95.8],"script":[70,69.5,71,78.8,71.1,70.2,71.6,71.7,72.2,72,70.2,71.5,71.8,72.3,70.8],"paint":[24.6,24.7,24.4,20.8,24.9,24.7,24.5,24.9,24.6,24.7,24.8,24.9,24.7,24.9,24.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,15.9,15.7,16,15.5,15.7,16.5,16.2,16.5,15.6,15.6,16.1,15.1,15.6,15.9],"script":[4,3.6,4.1,4.2,4.2,4.1,4.5,4.5,4,3.1,4,3.7,4,4.1,4],"paint":[11,10.9,9.3,10.9,9.9,10,10.8,10.3,10.2,10.9,10,10.6,9.7,10.2,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"04_select1k","values":{"total":[29.5,29.5,29.3,28.5,30.1,29.8,29.7,30,29.7,29.7,30.1,29.1,29.5,34.6,28.8,29.8,30,30.2,31.2,29.5,29,30,29.3,30.2,31.4],"script":[25.6,26.2,26.1,25.7,26.6,26.7,25.6,26.1,25.9,26.1,26.6,25.3,26.4,29,25,26.4,25.5,26,27.3,25.7,25.8,26.6,25.8,26.9,28],"paint":[2.9,2.3,2.1,1.7,2.2,1.4,2.9,2,2,1.2,1.3,3.3,2,3.3,2.6,1.9,3,2.3,2.5,3.2,1.9,1.9,2,2.3,2.1]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.6,26.8,27.2,26.6,27.4,27.3,26.3,26.9,27.4,27,28,27.2,27.1,26.5],"script":[10.1,9.8,9.8,10.1,10.7,10.8,9.8,10.6,10.2,9.7,9.7,11.1,10.5,11.3,9.6],"paint":[14.8,14.5,15.3,15.3,14.8,14.6,15,14.6,14.7,16.3,15.9,15.8,15.2,14.1,14.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.2,18.4,18.5,18.8,18.3,18.4,18,18.2,18.6,18.2,19,18.2,18,18.1,18.3],"script":[6.6,6.7,7,7.1,6.8,6.7,6.4,6.7,7.1,6.7,7,6.7,6.7,6.7,6.6],"paint":[10.8,10.6,10.5,11.1,10.7,11.1,10.6,10.6,10.7,10.5,11.3,10.8,10.8,10.9,10.6]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"07_create10k","values":{"total":[653.4,656.9,646.5,661.4,665.2,654.8,658.4,663.3,667.6,657.4,665.9,666.5,658.9,653.6,671.5],"script":[416.4,416,409,425.5,423,418,423.3,424.4,426.5,421.6,425.9,426.8,419.8,415.7,433.4],"paint":[228.1,231.8,228.3,226.9,232.8,227.9,226.4,230.1,231.9,226.9,230.9,230.5,230.2,229.2,229.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87,87.7,88,88,87.6,87.8,88.9,88.2,86.5,88.2,88,88.4,87.3,88.3,89],"script":[58.5,59.1,59.2,59.3,58.8,58.9,60,59.2,58.1,59.4,59.3,60,58.6,59.5,60.1],"paint":[27.5,27.5,27.7,27.7,27.7,27.8,27.9,27.9,27.3,27.8,27.6,27.4,27.6,27.7,27.8]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[58.9,57.9,60.3,60.4,60.5,59.6,57.5,62,62.1,62,59.7,58.2,58.3,57.1,64.9],"script":[57.4,55.9,58.2,58.7,58.9,57.6,56.1,59.7,60.3,59.6,58.1,56.2,55.9,55.2,62.7],"paint":[0.7,1.6,1.6,0.8,0.8,1.2,0.3,1.7,1.1,1.8,1.2,0.7,2.3,1.4,1.5]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7817211151123047]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[16.669071197509766]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[16.710464477539062]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5001764297485352]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[155.93081378936768]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.3]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.7]}},{"framework":"alpine-v3.14.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[34.4,35,34.8,34.4,35,34.7,35.6,35.4,34.9,35,35.6,34.7,35.7,34.9,35.5],"script":[12.6,12.8,12.5,12.5,12.9,12.7,13,12.8,12.8,12.7,13.1,12.5,13.1,12.6,13],"paint":[21.3,21.6,21.7,21.3,21.5,21.4,22.1,22.1,21.6,21.7,22,21.6,22,21.8,21.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[42.1,42.2,42.3,42.9,42.8,42.9,42.4,42.3,42.8,42.9,42.3,42.5,42.2,42.7,42.7],"script":[19.1,19,19,19.6,19.4,19.1,19.4,19.4,19.5,19.5,19.1,19.2,19.1,19.4,19.3],"paint":[22.4,22.5,22.7,22.6,22.8,23.2,22.4,22.3,22.7,22.9,22.6,22.6,22.5,22.7,22.7]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,19.3,18.8,19.9,19.7,20.3,19.5,19,19.3,19.7,20,18.9,20,19.3,20.6],"script":[7.7,7.1,7.1,7.4,7.4,7.4,7.1,6.7,6.8,7.1,7.1,6.7,7.5,7.1,7.9],"paint":[9.9,9.8,9.3,10.7,10.7,10.8,11.2,10.5,10.5,10.2,11.4,10.6,10.9,10.7,10.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[9,8.8,10.5,9.4,8.6,8.2,9.4,8.8,8.9,8.8,9.6,9.6,9.3,9.1,9.5,9.6,8.8,9.2,9,9.2,8.8,9.1,8.4,9,9.7],"script":[5.8,5.5,7.6,5.3,5.9,5.6,6,6.2,6.3,5.6,6.3,6.6,6.2,6.4,5.9,6.6,6.1,6.2,5.8,6.7,6.3,5.9,5.9,5.4,6.6],"paint":[2,2,2.2,2.8,1.2,1.2,2.1,0.8,1.6,2.3,2.2,2.2,1.9,1.3,3.3,1.2,1.9,2.3,2.5,1.1,0.7,2.3,1.1,2.1,1.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[22.2,22.8,21.6,22.5,21,21.7,21.1,22.1,21.9,22,22,22.1,21.9,22.1,22.5],"script":[6.4,6.8,6.5,7.1,6.8,6.2,6.2,7.2,7.1,6.4,7,6.6,7.1,7.5,7.5],"paint":[14.3,14.2,13.4,13,13.1,12,13.3,13.1,12.4,13.6,13.9,14.1,12.5,12.6,13.3]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[69.8,70.2,70.4,69,70.1,71.3,69.9,71.3,69.8,70.5,70.3,68,70.9,69.9,69.7],"script":[25.5,25.5,25.4,24.6,25.1,24.6,24.9,25.6,25,25.3,25.7,24.5,25,24.7,24.8],"paint":[43,43.5,43.3,43.4,43.6,45.3,43.7,44.4,43.9,43.8,43.2,42.2,44.1,43.8,43.6]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[342.8,340.6,339.2,340.4,343.3,340.3,342.6,343.2,343.2,344.4,341.4,339.6,342.4,339.9,340.8],"script":[117.3,116.5,116.3,116.1,120.7,117.8,118.6,120.4,119,116.1,116.4,116.9,118.8,118.1,117.7],"paint":[217.8,216.1,215.2,216.7,214.8,214.9,215.5,215,216.2,220.1,217.3,215.1,215.9,214.2,215.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.9,39.9,40.8,40.3,40.8,40.4,40.8,40.9,40.4,40.6,40.9,40.8,41,40.6,40.7],"script":[14.7,14.4,14.5,14.1,14.8,14.5,14.5,14.4,14.4,14.5,14.7,14.5,14.8,14.6,14.6],"paint":[25.2,24.5,25.3,25.3,25,24.9,25.4,25.5,25.1,25.1,25.2,25.3,25.2,25.1,25.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.8,13.8,13.8,13.1,15.5,13.3,14.4,13.7,14.3,14.1,13.7,14.2,13.8,14.2,14.2],"script":[11,12.3,11.4,11,13.1,11.6,12.2,11.7,12.8,11.9,11.3,11.8,11.3,12.3,12.3],"paint":[1.7,0.7,1.4,1.5,1.7,0.3,1.1,1.1,0.6,0.8,2.2,1,1.5,0.3,1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4695415496826172]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.462567329406738]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.27407169342041]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.792963981628418]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.33736228942871]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.5]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,32.8,32.5,32.7,32.7,32.8,32.6,32.8,33.4,32.9,32.4,32.6,32.4,32.7],"script":[6.5,6.6,6.4,6.2,6.5,6.3,6.2,6.3,6.5,6.7,6.4,6.3,6.5,6.4,6.5],"paint":[23.1,22.7,23.1,23,22.8,23.1,23.1,22.9,22.8,23.2,23.1,22.8,22.8,22.7,22.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39,39.3,39.4,38,38.5,38.2,39.2,38.7,39.1,39.3,39.7,38,38.1,37.5,39],"script":[12.4,12.6,12.5,11.9,12.4,12.2,12.4,12.3,12.3,12.3,12.6,12.1,12.2,12.1,12.5],"paint":[23.3,23.2,23.2,22.7,22.7,22.5,23.3,23,23.3,23.6,23.5,22.6,22.6,22,23.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.2,12.5,13.1,12.6,13.1,16.3,12.3,13.2,13.6,12.3,12.2,12.7,12.3,14.2,13],"script":[1.9,2.5,2.3,2.3,2.7,2.4,2,2.4,2.6,2,1.9,2.1,2,1.8,2.4],"paint":[9.4,8.7,9.3,9.4,8.8,11.8,9.3,9.6,10.2,9.1,9,9.5,9.1,11.2,9.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.5,4.1,3.6,3.9,3.6,4.3,4.8,4.4,3.1,3.6,4,3.9,4.8,4.6,4.1,3.5,3.2,4.3,4.3,4,4,4.6,4.1,4.5],"script":[0.3,0.7,1.9,0.6,1,0.7,1.4,1.5,2.4,1,0.9,1.2,1,2.2,2.1,1.8,1.6,1.2,2,1.6,1.2,1.9,2.1,1.4,2.4],"paint":[2.9,2.7,1.5,2.8,2.7,2.7,2.8,2.2,1.3,2,2.5,1.7,2.4,2.3,2.4,1.7,1,1.9,2.2,0.9,1.8,1.6,1.7,1.6,1.4]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[16.6,16.2,15.4,15.2,15.3,16,14.9,15.4,15.3,15.5,15.7,15.7,15.6,16.9,15.9],"script":[1.6,1.8,1.5,2.6,1.9,1.6,1.2,2,0.7,2.2,1.8,1.6,1,2,1.4],"paint":[12.6,13.4,12.9,11.7,12.5,12.7,12.3,12.2,13.3,12.4,12.3,12,13.1,13.8,13.2]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,10.9,11.5,11.6,11.9,11.2,11.9,11.3,12.2,11.2,12.3,11,11.6,11.5],"script":[0.8,0.9,0.7,0.7,0.8,0.7,0.8,0.9,1,1.2,0.9,1.2,0.7,0.7,0.9],"paint":[10.4,10.5,9.4,10.3,9.9,10.6,9.5,10,9.6,10.7,9.4,10.2,9.7,10.4,9.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[350.2,348.7,347.5,348.9,349.1,346.7,356.5,349.6,352.3,347.9,349.9,350.8,351.1,348.6,349.9],"script":[68.3,68.6,68.6,68.8,68.5,68,69.4,68.5,68.3,68.5,69.2,68.7,69.5,68.9,68.8],"paint":[229.5,229.3,227.7,228.9,228.9,228,232.2,230.2,229.9,228,230,230.2,230.7,229.7,230.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.2,37.5,37.8,37.4,36.9,36.6,37.3,38.2,38.3,37.3,36.8,38,37.2,37.7,36.6],"script":[6,6.3,6.2,6.2,6,6,6.1,6.3,6.2,6,6.3,6.1,6.3,6.1,5.9],"paint":[27.2,27.3,27.6,27.3,26.9,26.8,27.3,27.9,28,27.4,26.6,27.9,27.1,27.5,26.9]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.9,18.4,19.9,20.4,20,21.6,18.3,19,20.7,20.7,20.2,19.6,20.5,19.6,19.2],"script":[17.9,16.4,18,18.9,17.7,19.2,16.4,16.6,18.6,18.1,18.1,18,19,16.8,16.8],"paint":[0.3,0.6,0.3,0.9,2.1,1,0.3,1.3,1,1.1,1.5,1.1,0.7,1.3,1.5]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5145835876464844]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.751943588256836]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.800432205200195]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0664501190185547]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.181106567382812]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.8]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"angular-cf-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.5]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[35.3,38.4,39.4,37.8,38.5,38.5,38.7,39.5,38.3,39.4,37.6,38.8,37.9,38.8,38.6],"script":[5.8,5.8,5.8,5.8,5.6,5.7,5.7,5.9,5.8,5.9,5.5,5.9,5.9,5.5,5.7],"paint":[22.7,22.5,22.4,21.9,23.4,22.4,22.7,22.3,22.3,22.2,21.9,22.7,21.8,22,21.6]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[40.6,41.6,42.2,40,39.6,36.6,42.3,37.8,37.2,38.3,38.1,40.6,39.5,38.7,39.2],"script":[10.1,10.1,10.1,10.1,9.7,10.1,10.1,10.1,10,10.1,10,10.3,10.1,10.3,9.9],"paint":[22.9,23.6,22.8,23.6,23,23.4,23.1,23.2,23.1,23.2,23.8,22.8,23.2,23.2,23]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,27.8,12.3,12,11.5,12.8,11.8,14.3,28.1,12.8,28,12.2,12.4,12.3,12.3],"script":[2.4,2.7,2.2,2.1,2.6,2.5,2.5,2.5,2.1,2.6,2.3,2.3,2.4,2,2.7],"paint":[8.8,8.4,8.9,9.8,8.1,10.2,9.3,10.5,9.9,9.9,9,9.1,9.9,9.5,9.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[5,3.9,4.6,5,4,4.9,3.4,4,4.5,4.6,4,5,3.8,4.6,4.2,3.6,4.5,5,4.8,5,3.9,4.5,4.4,5.3,4.4],"script":[2.2,1.7,2.4,2.6,1.6,2.5,0.9,1.3,2.2,2.2,1.4,2.6,2,2.4,1.3,0.9,1.8,3,2.6,2.1,0.7,2.4,2,2.4,2.2],"paint":[1.9,2.1,1.7,1.7,1.5,2.3,1.3,1.4,2,2.3,2,2.3,1.6,1.7,2.2,2.5,2,1.9,1.6,2.7,2.7,1.7,2.1,2.1,1.3]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[31.8,31.2,15.4,31.2,31.3,31.4,14.9,31.1,15,31.9,14.9,14.5,15,30.3,30.6],"script":[2.6,2,2.6,1.9,1.8,1.8,2.6,1,1.7,2.3,1.5,1.8,2.3,1.9,2.2],"paint":[13.1,12.9,11.9,12,13.8,13.5,11.5,14,13.1,13.1,13.3,12.1,11.7,11.2,12]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,14.1,11,14.8,13.4,14.4,10.9,12,10.4,12.8,16,14.7,10.4,14.1,11.5],"script":[1,1.3,1.4,0.7,1.2,0.6,0.7,0.9,1.2,1,1.2,1,0.9,0.9,1.2],"paint":[9.2,9.3,9.3,8.9,8.8,8.9,9.3,9.7,9,9.3,9.1,9.2,9.1,9.4,9.9]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[347.8,344.9,348,347.8,345.5,349.6,344.8,344.8,348,349.5,344.5,345.9,345.5,343.7,345.6],"script":[56.7,55.4,57,54.9,56.7,56.5,54,55.3,55.4,56.6,55.8,56.3,55.1,56.2,54.7],"paint":[237.1,234.2,235.5,237.5,237.1,238,235.2,236.9,237.5,238.1,236.6,235.1,236.5,235.6,237]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.7,41.3,35.5,41.6,41.5,35.9,41.9,41.5,41,40.9,41.6,41.3,41.3,41.3,41.2],"script":[6.1,5.7,5.8,6,6,6,5.9,6,5.7,5.8,5.9,6,5.9,5.9,5.8],"paint":[26.3,26,26.2,26.6,26.4,26.5,26.5,26.3,26.1,26.1,26.6,26.2,26.4,26.4,26.4]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,13.7,31.2,15.6,15.8,13.9,16.3,14.1,13.8,31.8,14.3,13.9,13.4,15.1,13.5],"script":[14.1,11.8,13.3,13.3,14,12.5,14.5,12.2,12.1,13.7,12.9,11.5,11.8,12.1,11.6],"paint":[1,1,0.9,2,1.5,0.3,0.3,1.3,1.4,0.8,1.3,1.2,0.2,1,1.1]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1282529830932617]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.686117172241211]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.740973472595215]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.720728874206543]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.681446075439453]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-new-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[120.5]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.2,30.8,31.3,31.1,31.1,31.5,31.3,30.7,31,31.7,32,31.8,31.6,31.4,31.9],"script":[5.4,5.3,5.5,5.3,5.3,5.5,5.5,5.1,5.4,5.3,5.7,5.5,5.4,5.5,5.5],"paint":[22.5,22.3,22.4,22.5,22.4,22.7,22.6,22.2,22.3,23.1,22.9,22.9,22.9,22.6,23]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[37.7,36.6,36.3,36.2,36.7,36.1,36.2,36.7,36.5,36.2,36.8,37.5,36.6,36.4,37.3],"script":[10.7,10.2,10.2,10.1,10.1,10.1,10,10.5,10.2,10.1,10.5,10.3,10.2,10.2,10.6],"paint":[23.6,23,22.7,22.7,23.1,22.7,22.8,22.8,22.9,22.7,23,23.5,23,22.9,23.4]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.5,12.6,12.3,11.5,12,11.4,12.7,12.2,12.7,13.2,12,12.5,13.1,12.2],"script":[2.5,2.4,2.2,2.3,1,2.1,0.9,2.3,2.5,1.8,2.5,2.2,2.7,2.3,2.4],"paint":[9.8,9.1,9.5,8.5,9.5,8.9,9,9.1,8.7,9.7,8.4,8.8,8.8,9.7,9.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4.4,4.1,4,3.9,4.3,3.8,4.2,4.1,4.2,3.7,3.4,3.8,4.5,4.5,4.1,3.4,3.1,4.1,3.7,4.1,4.5,4.6,4.1,4.2],"script":[1.6,1.5,1.1,1.8,1.2,1.9,1.8,1.5,1.8,1.9,1.6,0.6,1.4,1.9,1.3,1.7,0.6,0.6,2.1,1.7,2.1,1.3,1.9,1.7,1.8],"paint":[2,1.7,2.4,1.7,1.8,1.7,1.9,2.6,1.9,1.4,2,2.3,1.3,2.3,2.6,1.3,2.1,1.9,1.2,1.3,1,2.6,2.5,2.3,1.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.7,15.8,14.9,15.6,16.1,16.1,16.6,15.1,15.9,16.2,16.9,16,16.5,14.7,14.8],"script":[2.4,2.5,1.3,2,2.3,1.7,1.6,1.2,1.8,2.1,2,1,2.2,0.6,2.1],"paint":[11.7,12.5,12.6,12.4,12.7,13.4,12.9,12.8,12.1,13,13,13.1,13.6,13,11]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.5,11.5,11.4,11.5,11.4,11.7,12.4,11,11.5,11.2,11.9,11.6,12,11.4],"script":[1.1,0.7,0.7,0.7,0.9,1,1,1.3,0.6,0.7,0.8,1,1,1.4,0.7],"paint":[9.9,9.9,10.2,9.8,10.2,9.5,10.2,10.4,9.9,10.2,9.4,10.5,9.9,10.1,10.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[341.7,342.3,343.8,341.1,340.8,343.6,339.6,342.4,343.3,342.8,340.5,339.6,343.3,341.9,342.9],"script":[54.5,55.9,55.2,54.5,55,56.6,55.8,55.6,53.9,56.1,55.6,53.8,56.2,55.7,56.2],"paint":[235.6,235.7,233.8,235.6,235.1,235.5,232.8,235.7,238.3,235.7,234.7,234.6,235.2,235.1,235.6]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.4,35.8,35.4,35.7,35.4,35.3,36,35.3,35.7,36.1,35.5,35.3,36.2,35.3],"script":[5.8,6,5.7,5.8,5.9,5.9,5.8,5.9,5.8,5.9,5.9,5.6,5.9,5.9,5.5],"paint":[26.7,26.3,26.1,25.7,25.9,25.7,25.7,26.2,25.8,26,26.3,26.1,25.6,26.4,26]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,14.3,15.9,15.4,14.4,14.6,14.8,18.4,15.3,15.5,16.2,15.1,14.7,15.1,14.9],"script":[13.9,12.3,14,12.8,12.5,12.6,11.9,16.3,12.8,13.4,13.8,13.3,12.2,12.8,13],"paint":[1.3,1,0.4,1.6,1.1,1.5,1.6,0.9,1.9,1.2,1,0.4,1.5,1.4,0.7]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1274042129516602]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.66009521484375]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7217235565185547]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7018194198608398]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.656683921813965]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[109.3]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.2]}},{"framework":"angular-cf-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.9,32.7,33.2,33.1,33.4,32.9,33.5,33.5,32.5,33.4,33.7,32.4,33,32.8,33.1],"script":[6.3,6.5,6.6,6.7,6.7,6.3,6.6,6.6,6.5,6.6,6.3,6.3,6.6,6.3,6.7],"paint":[23.3,22.9,23.2,23.1,23.3,23.2,23.5,23.5,22.7,23.5,24,22.8,23,23.2,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[39.5,38.7,38.4,38.4,38.3,39.6,38.1,37.9,39.6,38.6,38.9,39.1,39.1,39.1,38.9],"script":[12.4,12.4,12.3,12.3,12.1,12.6,12,12,12.5,12.3,12.5,12.4,12.4,12.2,12.4],"paint":[23.5,23,22.6,22.7,22.8,23.4,22.7,22.4,23.5,23,23.1,23.3,23.2,23.5,23.1]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,12.6,13.7,13.1,13.6,12.9,13.7,13.8,14,14,13.1,12.8,12.9,13.5,13.3],"script":[2.3,2.4,2.5,2.8,2.5,3,2.2,2.5,3.4,3.2,2.7,2.5,2.5,3.1,2.5],"paint":[9.7,9.1,9.7,9.4,10.1,8.8,10.3,10,9.5,9.5,9.5,9.2,8.9,9,8.3]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.4,4,5.5,4.4,4.4,4.4,4.3,5.4,4,4.9,4.9,4.4,5.2,4.3,4.3,4.3,4.3,4.4,4.7,4,4.7,4.8,4.9,4.8,4.5],"script":[1.8,1.3,2.8,2,1.7,1.9,2.4,2.1,1.9,2.8,1.8,2,3,2.3,1.7,1.2,1.2,1.5,2.2,1,2.1,1.6,2.4,2.3,1.9],"paint":[1.3,2.6,1.9,1.5,2.4,1.5,1.1,3.2,1.1,2,2.2,1.8,1.4,1.9,2.1,2.1,2.1,2.8,1.5,2.2,1.8,2.8,2.3,2.3,2.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.6,16.1,16.4,15.8,16.9,17.3,15.5,15.7,15,14.9,16.1,17.1,16,14.8,14.8],"script":[2.5,2.2,2.5,1,2.5,2.4,2.4,1.9,1.4,2.2,1.6,1.9,2.4,1.9,1.9],"paint":[11.3,12.4,12.5,12.8,12.8,13.8,11.7,12.7,12.2,11.7,14.2,13.9,12.1,11.9,11.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.9,13.6,13.5,13.8,13.6,13.6,13.7,13.3,13.2,13.4,13.4,13.4,13.5,13.2],"script":[1.5,1.5,1.3,1.4,1.4,1.5,1.3,1.5,1.5,1.3,1.3,1.3,1.3,1.4,1.5],"paint":[11,11.1,11.2,10.9,11.3,11.1,11.2,11.2,10.6,10.8,11,11.2,10.9,11.6,10.6]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[348,352.5,349.3,351.1,351.4,351.3,351.9,349.2,356.3,349.5,352.8,351.6,355.6,348.3,349],"script":[68.2,68.7,68.6,68.2,68.8,70,70.2,70.1,68.9,69.9,69.3,69.9,69,69.5,69.3],"paint":[228.8,229.2,229.2,230.3,231.4,230.4,230.7,228.2,232.5,228.9,232.5,230.4,231.8,227.8,228.9]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.6,37.1,37,37.7,37,38,38.3,37.5,37.5,37.6,38.1,38.2,38.2,38],"script":[6.2,6.4,6.2,6.2,6.2,6.3,6.5,6.3,6.4,6.1,6.2,6.3,6.2,6.5,6.3],"paint":[27.5,27.3,27,26.9,27.5,26.7,27.4,27.9,27.2,27.6,27.5,27.7,27.8,27.8,27.8]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,19.7,20.2,21.2,21.1,19.4,20.9,18.9,20.6,18.6,20.2,19.6,19.4,20.7,20.3],"script":[17.3,17.5,18.3,19,18.7,17.4,19.1,17.4,18.8,16.5,17.9,17,17.3,18.3,18.4],"paint":[1.1,0.5,0.3,1.5,1.4,1.1,1,0.3,0.3,1.1,1.2,1.7,1.8,1.6,1.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5208921432495117]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.786499977111816]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.856507301330566]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1196794509887695]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.35379695892334]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.2]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.7]}},{"framework":"angular-cf-signals-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[148.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[36.5,38,38.2,37.9,39.2,39,37.8,36.6,38.1,37.2,38.8,38.5,39.3,39.2,38.8],"script":[5.7,5.8,6,5.7,5.8,5.9,5.8,5.9,5.8,5.9,5.8,5.8,5.8,5.8,5.6],"paint":[22.2,22,21.7,21.9,22.2,21.7,21.7,21.9,22.1,21.9,21.8,22.4,22.2,22.1,21.9]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[42.8,37.8,39.1,38.9,36.9,44.8,40.7,40.3,37.9,38.9,37.9,41.9,38.6,38.3,40.8],"script":[10.2,10.1,10.1,10.2,10.4,10.3,10.3,10.4,10.6,10.4,10.6,9.9,10.1,10.2,10.2],"paint":[22.9,22.8,23.1,22.9,23.2,23.4,23.5,22.8,23.2,22.8,23.1,22.7,23,23,22.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,13.3,13,30,13.8,12.2,13.3,12,28.2,13.6,13.3,11.9,27.7,12.3,12.6],"script":[3.2,3,3.2,2.7,3.3,3.1,3.4,2.2,2.6,3.1,3.6,2.9,2.2,2.8,2.5],"paint":[9.2,9.6,9.4,11.7,9.1,8.2,9.7,8.8,8,9.4,8.7,8.5,9.7,9.4,10]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,5.1,4.2,4,4.8,4.5,4.1,4.6,4.6,3.9,4.5,4.7,4.6,3.9,4.8,5.9,5.2,4.9,4.6,4,4.3,4,5,4.6,5],"script":[2.7,2.7,2,2.2,1.9,2.6,2.2,2.4,2.3,1.9,1.9,2.3,2.4,1.3,2.2,2.9,2.3,2.4,2.3,2,2.4,0.9,2.8,2.2,2.7],"paint":[2,2.2,2.2,1.7,2.7,1.7,1.3,1.6,2.2,1.1,1.1,2.3,1.6,2.5,1.1,2,2,1.6,2.1,1.1,1.8,1.9,1.1,1.8,2.2]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[15.9,14.9,14.9,31.5,14.6,15,14.4,15.6,15.3,14.4,14.8,31.9,30.6,14.4,30.5],"script":[2.2,2.2,1.7,1.8,1.9,2.5,2.3,2,1.3,1.7,2.5,2.5,1.7,1.4,1.7],"paint":[13.6,11.9,12.6,13.5,11.6,12.4,11.9,12.4,11.3,12.6,12,12.6,13.6,12.8,12.5]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,14.9,15.6,12.3,11.2,15.3,13.9,14.8,12.7,15.3,15.6,13.7,11.6,15.3,13.2],"script":[1.8,1.3,1.9,1.4,0.9,1.8,1.3,1.1,1.4,1.1,1.7,1.4,1.6,1,1.3],"paint":[9.6,10,10.1,9.9,9.8,9.8,10,10,9.7,10.1,9.8,10.1,9.8,10.8,10.3]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[346.9,349.2,344.2,349.2,345.4,344.8,343.6,346.9,346.9,347.4,346.9,343.1,344.3,345,346.3],"script":[56.7,56.7,56.3,56.9,56.6,55.5,56.5,57.5,57.4,57.5,57.2,55,57.3,56.6,56.6],"paint":[237.9,235.9,236.3,236.7,235.6,236.3,234.9,236.5,235.6,236.9,236.3,236.4,236,236.3,235.4]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.1,41.4,41.7,42.6,42.8,41.7,42,41.3,43.7,41.8,41.3,41,41.5,43.8,41.9],"script":[6.3,6.1,6.1,6.2,6.3,6.1,6.2,6,6.2,6.1,6,5.8,6.2,6.1,6.2],"paint":[26.6,26.2,26.6,26.5,26.4,26.6,26.5,25.9,26.3,26.3,26.2,26.4,26.3,26.5,26.8]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,16.1,13.9,15.5,16,14.1,32.9,13.6,16.6,31.2,17,14.7,14.5,14.1,13.2],"script":[13.4,14.2,12.3,12.4,13.9,11.2,14.5,12.4,14.7,13.6,15,12.5,12.9,11.9,12.5],"paint":[0.5,1.1,0.7,2.3,1.3,1.3,1.5,0.3,1.2,1.3,1.4,1.8,0.9,2,0.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.134002685546875]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7211294174194336]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7938852310180664]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7688980102539062]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.881278038024902]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[110.6]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[33.7]}},{"framework":"angular-cf-signals-nozone-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.5]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.5,33.1,33,32.7,32.5,32.5,32.5,32.2,33.7,32.4,33.3,32.4,33.3,33.4],"script":[6.6,6.5,6.4,6.6,6.6,6.7,6.7,6.6,6.6,6.6,6.4,6.8,6.4,6.9,6.7],"paint":[22.6,22.7,23.4,23.1,22.8,22.6,22.5,22.5,22.3,23.7,22.6,23.1,22.6,23.1,23.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.9,38.3,39.2,38.4,38.8,37.6,38.5,38.5,37.9,39,38.2,38.4,38.4,38.2,39.2],"script":[12.2,11.9,12.3,12.1,11.9,11.8,11.9,11.8,12,11.9,11.9,11.8,12.1,11.8,12.2],"paint":[23,23,23.4,23,23.4,22.5,23.2,23.1,22.6,23.4,22.9,23.1,23,23,23.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,11.7,12.8,12.6,12,12.6,12.6,13.1,12.5,12.9,12.8,12.1,12.5,13.2],"script":[2.3,2.4,1.9,2.5,2.3,0.9,2.6,2.1,2.7,2.1,2.7,2.3,2.5,2.3,2.6],"paint":[8.7,9.5,8.7,7.9,9.2,10.3,9.4,9.3,9.7,9.5,9.3,8.7,8.1,9.2,9.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"04_select1k","values":{"total":[4.5,4.2,4.4,3.8,3.8,4.3,4.4,3.9,3.9,4.6,5.1,4.5,4.2,4.9,4.4,4.5,4,3.4,4.9,4.1,3.6,4.4,4.5,4.4,3.5],"script":[2.1,1.6,1.8,1.4,1.8,1.9,1.6,1.2,1.8,1.6,2.7,1.9,2,2.1,1.8,2,1,0.3,2.3,1.9,1.4,1.3,1.5,1.6,0.7],"paint":[1.4,2,1.8,2,1.3,1.9,1.9,2.6,2,2.9,1.9,1.8,1.3,1.6,2.4,1.7,2.9,2.6,1.8,1.6,1.6,2.5,1.9,1.9,2.7]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"05_swap1k","values":{"total":[123.5,123.8,119.3,122,121.7,125,130.3,123.6,122.8,123,125.3,120.1,123,125.4,123.9],"script":[21.9,21.9,21.8,22.5,21.5,21.6,25.2,23.8,22.3,21.3,23.1,21.4,23,22.7,22.8],"paint":[86.4,86.9,83.3,85.6,85.4,89.8,90.6,84.5,85.6,86.5,86.7,83.8,86.5,88.3,88]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.6,11.7,11.5,11.7,11.2,11.8,11.6,11.3,11.9,11.1,11.4,11.6,11.9,11.6],"script":[0.9,1,1.1,0.7,1.2,0.7,1.2,0.7,0.7,1.2,0.7,1.1,1.2,1.2,1.2],"paint":[10,9.9,9.9,10.2,9.7,9.5,9.9,10.5,10.2,10.4,9.2,9.4,9.6,10.1,9.8]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"07_create10k","values":{"total":[352.5,353.9,354.1,353.9,355.3,359,352.1,354.3,355.4,354.1,350.9,352,354.4,356.1,355.4],"script":[71.3,72,72.8,71.8,72.4,73.7,71.4,72.3,71.9,71.8,71.8,71.3,72.3,71.5,72],"paint":[230.8,230.6,231,231.3,232,233.9,230,231.4,232.3,231.8,228.2,230.2,230.7,232.8,232.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.9,38.2,38.1,37.8,38.1,38,37.8,38.5,37.7,39.1,38.5,37.9,37.4,37.7,37.9],"script":[6.5,6.5,6.7,6.6,6.7,6.7,6.5,6.6,6.7,6.6,6.6,6.7,6.7,6.5,6.7],"paint":[27.5,27.7,27.4,27.4,27.4,27.4,27.6,27.9,27.2,28.3,27.8,27.3,26.8,27.3,27.2]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.5,21.2,22.1,22.7,22.4,21.6,21.9,22.5,21.3,23.5,22.2,22.1,20.6,20.5,21.2],"script":[19.6,19.4,20.2,20.6,19.8,18.9,20,20.4,19.2,21.7,20.3,20,18.9,18,19.2],"paint":[0.3,0.3,1.2,1.2,2.1,1.7,1.1,1,0.6,1.2,0.5,0.5,0.3,1.7,1.6]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5740928649902344]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.957246780395508]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.019704818725586]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3534717559814453]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.683992385864258]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[151.4]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.3]}},{"framework":"angular-ngfor-v20.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[166.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"01_run1k","values":{"total":[30.6,30.1,31.3,32.4,31.6,31.3,31,30.9,30.7,31.2,31.2,31,30.9,30.9,31.7],"script":[7.7,7.6,8.6,8.9,8.8,8.7,8.5,8.5,8.4,8.7,8.6,8.4,8.6,8.4,8.7],"paint":[22.3,21.9,22.1,22.8,22.2,22,21.9,21.8,21.7,21.9,22,22,21.8,21.9,22.5]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"02_replace1k","values":{"total":[36.2,35.4,36.5,36.6,35.5,36.2,36,37.2,36.6,36.1,36.5,36.8,36.2,35.8,36],"script":[12.5,12.5,13.3,13.4,12.8,13,13.3,13.4,13.5,13.4,13.3,13.4,13.2,13.4,13.5],"paint":[23.1,22.3,22.5,22.6,22.1,22.6,22.1,23.2,22.5,22,22.5,22.8,22.3,21.8,21.9]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40,40.1,39.9,39.5,39.7,39.7,39.4,42.1,39,40.7,38.5,39.9,40.8,39.3,39.8],"script":[28.5,27.2,27.7,27.3,27.2,28.1,27.7,28.5,27.2,28.2,26.9,28.8,29.1,27.1,27.2],"paint":[9.7,11.5,10.6,10.6,10.4,9.7,9.3,11.1,10.5,10.7,9.2,8.9,9.7,10.5,10.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"04_select1k","values":{"total":[30.1,32,29.3,29.9,29.7,30.4,29.9,31.4,31,29.8,30.2,29.6,32.4,29.6,33.4,30.7,30.8,30.7,30.1,31.7,30.4,30.3,30.6,30.6,30.4],"script":[26.3,28.5,25.6,26.4,26.1,27.2,26.5,27.9,27.6,26.6,27,26.3,28.2,25.7,29.2,27.6,27.1,27.4,27.3,28.1,27.5,27.1,26.7,27.2,27.1],"paint":[2.4,1.8,2.1,1.8,2.2,2,1.9,1.8,2.6,1.1,1.9,2.3,1.2,2.1,2.9,1.1,2.3,2,1.2,1.6,1.6,1.7,2.4,1.6,2.2]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"05_swap1k","values":{"total":[42,42.3,42.9,41.1,42,41.7,41.3,42.5,42.7,46.5,40.8,44.1,41.9,43.4,42.7],"script":[27.5,26.9,27.5,26,26.8,26.9,26.6,27.2,27.2,28.6,26.3,28.5,26.7,27.7,28.1],"paint":[12.3,13.1,13.9,13.1,13,11.8,13.2,13.1,13.9,14.4,12.6,13,14,14.2,12.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[91.6,95.2,89.8,90.2,91.6,90.5,88.7,90,90.2,89.9,90.6,90.3,90.8,89.9,90.8],"script":[46.1,50.2,45.7,45.7,47.5,45.4,44.6,45.5,45.9,46.2,45.7,46,47.2,45.2,46.4],"paint":[43.5,43.4,42.6,43.2,42.8,43.6,42.9,43.2,42.7,42.6,43.4,43,42.5,43.4,43.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"07_create10k","values":{"total":[310,303.4,312.5,317.8,314.8,313.9,314,315,316.6,314.8,311.5,316.2,318.2,317.7,313.4],"script":[80.8,76.3,87.9,90.8,87.9,87.9,87.1,87.6,88.9,87.7,87.1,88.4,90.3,87.8,87],"paint":[221.2,219.3,217.1,219.5,219.2,218.5,219.1,219.7,220.1,219.4,216.8,219.9,220.4,221.7,218.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.7,41.5,42.4,43.1,41.9,42.4,42.7,42.7,42,42.8,43.1,43.2,42.9,42.3,43.5],"script":[15.3,14.9,15.2,15.8,15.1,15.3,15.5,15.6,15.1,15.4,15.8,16,15.8,15.6,16],"paint":[26.3,25.6,26.1,26.1,25.8,26.1,26.2,26.1,25.8,26.3,26.3,26.1,26,25.6,26.4]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.2,12.5,12.6,13,13.1,13.5,14.8,12.3,13.1,13.7,13,13.3,12,13.4,12.8],"script":[11.1,11,10.5,10.9,11.2,11.8,12.7,10.9,10.9,12.2,10.9,11.4,10.8,11.4,10.1],"paint":[1.8,0.7,1.4,1.4,0.7,0.3,0.5,0.3,0.8,0.9,1.2,0.9,1,1.1,1.7]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6324319839477539]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4939041137695312]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.546539306640625]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.399325370788574]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.93657112121582]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"apprun-v3.33.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[67.8,67.8,65.7,67,66.7,67.9,68,64.4,66.9,69.9,64.2,68.4,66.2,70.4,68],"script":[37.1,36.8,36.2,37.2,37.1,37.3,37.5,37.3,36.6,36.8,36.5,36.8,36.6,37.7,38.2],"paint":[24.4,23.9,24,24.5,23.8,23.7,24.2,24,24.4,24,23.8,24.5,24.1,24.6,24.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[70.7,72.9,69,70.6,69,71.3,70.5,72,71,71.5,69,70.7,69.6,71.3,70.2],"script":[41.2,42.4,41.6,41.5,40.9,41.3,40.3,41.7,40.8,41.6,40.9,41.6,40.7,42.3,41.4],"paint":[23.7,23.8,24,23.8,23.6,23.8,24,23.9,23.7,24,23.7,24.2,23.9,23.9,24]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38.9,39.5,55,38.7,54.4,38.6,40.7,38.1,38.8,40.2,54.1,54.8,38.4,39.5,38.7],"script":[24.4,24.1,24.2,23.1,23.5,23.9,24.7,22.8,22.9,23.5,22.8,23.4,22.9,24.1,24],"paint":[13.2,13.7,13.9,13.9,14.2,13.6,13.4,14.3,14.2,15.2,12.4,13.9,14.5,13.2,14.1]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.2,12,13.3,11.4,11.3,12.3,12.1,12,11.3,10.9,11.6,11.5,13.9,15.4,11.8,11.8,12.4,12,10.2,10.6,11.9,11.5,12,11.6],"script":[7.4,6.8,6.3,6.7,6.7,6.2,6.3,6.9,6.6,6.3,6.1,7.2,6.7,7.3,6,6.9,7.1,6.6,7,6.2,6.2,6.5,7.3,6.2,7],"paint":[3.1,3.3,5,3,3.6,3.8,4.1,4.1,5,2.6,2.4,3.2,3.6,4.6,4.3,3.4,3.2,3.6,3.4,3.1,3.6,4.3,3,3,3.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[44.1,42.9,44.6,43.2,45.3,43.3,57.9,58.1,61.4,42.8,43.7,42.7,59,60.4,60.2],"script":[23.7,22.9,24.2,25.1,25.7,25,23.9,24.3,26,24.8,23.6,23.5,23.6,24.9,25.1],"paint":[17.1,16.3,17.3,16.4,17.3,16.7,15.7,16.4,18.3,16.5,17.4,16.1,17.3,17.5,17.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[68.4,69.8,71.7,69.5,69.8,69.4,68.8,69.5,68.9,69.5,69.1,69,69.5,68.9,68.9],"script":[18.5,19.2,17.7,19.3,19.2,19.2,18.9,19.1,18.8,19.4,18,19.2,19.6,19.2,18.9],"paint":[48.3,49.2,47.5,48.6,49,48.8,48.5,48.3,49,48.4,45.9,48,48.3,48.7,48.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[537.7,542.2,541.8,542.6,543.2,543.1,547,542.7,539.5,541.1,543.9,536.5,549.5,546.8,543.6],"script":[288.2,289.2,290.6,292.9,294.1,291.7,299.1,292.5,290.4,292.6,293.1,289.9,295.2,289.1,294.2],"paint":[244.2,248,245.8,244.8,244.2,246.2,242.8,245.2,243.7,243.4,245.3,241.5,249.1,252.6,244.2]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.5,78.3,79.1,79,79.6,79.5,81.4,79.2,82.2,80.7,80.1,79.2,84.4,81.1,79.5],"script":[45.7,44.7,45.8,45.8,46,46.2,45,46.1,45,45.8,46,46.1,45.6,45.9,45.7],"paint":[28.3,28.5,28.3,28.2,28.2,28.3,28.1,27.2,29,28.9,28.8,27.9,29.3,28.9,28.5]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.3,20.9,22.7,23.2,21.3,21.8,23.3,42.3,24,42.9,22.1,23.4,42.9,22.7,23],"script":[19,17.4,18.6,18.6,17.9,18.1,19.9,18.9,18.9,17.5,18.5,19.5,17.1,18.2,18],"paint":[3.4,2.3,1.8,3.6,2.9,3.5,2.3,1.7,2.8,3,2.6,2.1,3.2,2.6,3.4]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589818000793457]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.91542911529541]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.991326332092285]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.80441665649414]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[103.83210372924805]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[31.8,39.4,33.3,33.4,33.9,40,33.7,39.8,31.9,32.3,31,37.8,31.8,34.2,33.1],"script":[5.4,5.6,5.9,6.1,5.9,5.7,5.6,5.7,5.8,5.5,5.5,5.7,5.3,5.8,5.7],"paint":[21.2,21.6,21.9,21.9,22.8,22.8,22.4,22.1,21.4,22.3,21.9,22.2,21.6,23.1,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[36.9,35.7,38.5,35.3,36.6,37.6,38.1,37.4,38.7,33.6,37.9,34.3,39.3,38.1,35],"script":[8.7,8.6,8.2,8.4,8.5,8.8,8.7,8.6,8.6,8.9,8.6,8.6,8.6,8.6,8.6],"paint":[22.8,22.6,22.5,22.5,21.9,22.9,22.1,22.6,22.4,22.6,22.1,22.1,22.4,22.7,22.7]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.4,17.8,34,34.7,18.4,18.9,20,36.8,16.7,17.1,34.4,17.1,33.6,35.2,17.8],"script":[5.8,5,5.1,4.6,5.3,4.8,5.5,6.3,4.5,4,4.7,4.2,4.9,5.2,5.1],"paint":[10.5,12.2,11.7,11.9,12.2,11.2,13.2,14.5,11,11.6,12.2,11.2,12.3,11.8,12]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[12.1,5.7,5.7,6.3,5.5,12.1,7.6,8,8.6,12.1,9.7,8.3,11.2,5,12.2,13.8,13.3,5.2,12.3,5,11.2,8.1,12.2,12,6.3],"script":[3.1,1.8,2.4,2.2,1,1.3,2.3,1.4,2,1.5,2.6,1.1,2.7,1.9,2.2,1.7,2.6,1.6,1.9,1.7,3.2,2.4,1.5,1.7,3],"paint":[3.3,2.3,3.1,2.9,3.4,2.3,3,1.8,2.6,3.1,3.7,2.4,3.9,2.9,3.4,3,3.7,2.7,2.8,2.6,3.1,3.4,3.1,3.3,3]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[34.3,32,32.4,33.6,33.3,32.9,33.7,32.8,33.7,32.3,33.7,33,33.1,32.9,32.7],"script":[1.8,2.1,1.9,1.6,1.5,1.4,1.8,1.9,2.6,2.3,2.1,1.9,1.2,2.3,2.3],"paint":[14.8,14.7,15.4,15.7,16.7,15.6,15.3,15.1,14.8,13.2,15.1,14.9,16,15.6,14.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.5,13.4,13.6,16.9,18.2,17,13.3,15.9,13.2,12.8,16.4,13.3,18.6,15.2,13.4],"script":[1,0.9,1,1.3,1.4,0.8,0.8,0.8,1,0.8,1,1.3,1.8,0.9,0.9],"paint":[11.5,11,11.3,11,10.8,11.6,11.2,11.2,11,10.6,11.8,10.6,11.4,11.2,11.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[286,289.1,291.3,288,289.7,286.8,290.9,287.8,293,285.3,288.9,290.6,287.8,290,287.8],"script":[69.8,71,67.4,70,66.9,67,66.9,68.4,66.3,67.1,70,70.2,72.2,68.5,68.6],"paint":[212.8,211.6,214.5,213.4,214.4,215.9,214.6,212.1,216.8,214.4,211.7,213,211.8,213.9,214.9]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.8,40.2,40,53.1,41,40.8,41.1,40.9,40,39.9,34.4,39.4,39.3,41.9,40.4],"script":[7,7.2,7.2,7.5,7.3,7.3,7.3,7,7.2,7.2,7.3,7.2,7.1,7.2,7.2],"paint":[26.9,26.9,26.7,26,27.9,27.6,26.3,25.8,26.8,26.7,26.6,26.4,26.3,27.6,27.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,12.3,12.9,11.7,11.9,11.7,11.7,32.3,13.8,12.2,11.4,12.7,11,32.4,13.8],"script":[8.6,7.8,9.1,7.9,8.5,8.7,8.1,8.4,9.3,9.4,8.3,8.8,7.9,7.6,9.4],"paint":[1.6,3,2.2,3.6,2.7,1.7,2.4,2,2.5,1.9,2.6,3.4,2.3,2,2.1]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.530360221862793]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.815603256225586]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.858466148376465]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8146648406982422]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.57434844970703]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"01_run1k","values":{"total":[32.7,32.1,33.3,32.6,32.6,32.5,32.2,31.9,33.2,31.7,32.3,32.2,33,32.3,31.8],"script":[9.9,9.4,9.6,9.7,9.8,9.6,9.9,9.4,10,9.4,9.9,9.7,10.3,9.7,9.6],"paint":[22.2,22.1,23.1,22.3,22.2,22.3,21.7,21.9,22.6,21.8,21.9,21.9,22.1,22.1,21.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"02_replace1k","values":{"total":[39.3,39.2,39.3,39.2,39.5,39.3,39.6,39.4,39.6,38.6,39.3,39.3,39.1,39.1,39.1],"script":[14.9,15.3,15.2,15.2,15.5,15.2,15.7,15.3,15.4,14.5,15.4,15.1,15.3,14.8,15],"paint":[23.9,23.3,23.5,23.4,23.5,23.5,23.3,23.5,23.6,23.6,23.3,23.7,23.2,23.7,23.5]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,24.1,14.8,12.9,12.6,11.4,22.7,26,12.4,24.9,13.5,24.4,11.9,13.9,22.7],"script":[1.1,2.2,2.1,1.9,1.4,1.3,1,1.2,1.8,0.9,1.9,1.8,1.2,1.2,2.1],"paint":[10.2,10,11.2,10.4,10.3,9.9,9.4,12.2,10.4,12.1,10.8,10.3,8.4,11.7,9.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"04_select1k","values":{"total":[7.3,7,6.7,7.2,6.9,7.6,6.6,7.8,6.5,9.4,6.2,6.5,7,8.1,7.9,7.4,7.1,7.1,6.2,6.3,7.8,7.5,7.2,6.4,6.5],"script":[4.4,4.2,3.9,4.8,3.1,3.8,3.5,4,3.8,3.6,4,4.5,3.9,4,3.8,4.3,4.8,4.3,4.3,4.3,4,4.9,4.9,4.5,4.1],"paint":[1.3,2.6,2.6,1.7,2.7,2.3,1.5,1.8,2.5,2.6,1.6,1.8,2,2.2,2.2,1.6,1.5,2,1.7,0.8,1.4,1.7,1.7,1.8,1.8]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.3,17.4,15.9,16,18,16.7,15.3,17.4,17.3,16.6,17.5,18.4,18.9,15.5],"script":[1.6,2.2,2.9,1.9,2.3,3.5,3.6,2.2,3.7,3.4,2.4,3.7,4,3.4,1.9],"paint":[13.2,13.2,13.4,13.4,12.7,13.2,11.6,12,13.4,12.5,13,12.5,13.4,14,12.7]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.7,12,11.9,11.9,11.6,11.6,12.4,12.5,11.6,11.8,11.5,12.4,11.6,11.5],"script":[1.2,0.9,1.1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.2],"paint":[9.5,10.2,10.6,10.2,10.4,9.4,9.8,10.2,10.4,9.9,9.7,9.8,10.5,9.8,9.4]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"07_create10k","values":{"total":[342.6,343.6,346,344.1,340.3,341.7,345.1,345,344.1,343.9,344.7,346.4,342.9,343.8,342.7],"script":[110.1,109,109,110,107.5,108.6,108.9,109.2,108.5,109.9,109.8,109.1,108.4,108.1,108.2],"paint":[224.1,226.6,228.8,226.2,224.9,225.1,227.9,227.2,227.5,226.1,227,229.1,226.1,227.6,226.2]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.9,39.4,38.3,38.4,38.7,38.5,39.8,38.9,39.8,38.9,38.9,39.3,39.2,39.3,39.9],"script":[10.9,10.7,10.7,10.9,10.9,10.9,10.9,10.8,10.8,10.5,11,11,10.9,11,10.8],"paint":[27.9,27.6,26.5,26.5,26.8,26.5,27.9,27,27.9,27.4,26.7,27.2,27.3,27.3,28]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.3,22.6,23.7,22.4,22.3,23,22.8,24.8,22.5,24,23.6,22.8,22.3,23,22.4],"script":[20.4,20.4,21,20.5,20.4,21.2,20.4,22.3,20.1,21.9,21.3,20.4,20.6,20.8,20.7],"paint":[1,1.2,2,1.2,1,1.3,1.5,1.6,1.4,0.6,1.2,0.7,1.1,1.2,1]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.9729595184326172]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.929535865783691]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.9566802978515625]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.956061363220215]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.92422866821289]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[203.9]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[56.3]}},{"framework":"aurelia2-v2.0.0-beta.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[81.8,84.2,83.1,84.1,83.8,85.1,84.3,82.8,82.9,84.1,83.2,85.2,85.4,82.7,84],"script":[52.2,53.9,53.4,53.7,53.6,54.8,53.5,52.5,52.8,53.6,53,55,55.1,52.6,53.1],"paint":[26.3,27,26.5,27.1,27,27,27.5,27.1,26.9,27.3,27.1,26.9,27.1,26.9,27.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[98.2,105.1,97.4,99,98.8,98.9,98.9,98.6,97.7,99.1,98.3,98.6,98.2,98.2,97.5],"script":[67,72.1,67.1,68.2,67.8,67.8,67.5,67.7,67.1,67.3,67,67.6,67.3,67.4,67],"paint":[27.6,28.9,26.9,27.5,27.6,27.6,27.9,27.5,27.3,28.3,27.9,27.4,27.4,27.4,27.2]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.8,94.6,95.2,95.9,94.8,94.4,95.4,93,93.5,94.5,94.2,94.1,95.2,94.8,95.7],"script":[50,50.3,50.1,50.8,50.8,50.5,50.3,49.8,50.1,50.9,50.9,50.3,51,50.6,49.6],"paint":[13.1,11.8,13.2,12.3,13.4,12.7,10.9,11.7,12.5,12.4,12.4,12.3,12.5,11.8,12.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88.7,83,81.4,81.3,85.5,83.6,83.9,79.9,82.4,80.8,79.9,81.8,80.6,84.3,84.5,84.2,82.4,81.2,82.2,82.6,83.2,83,82.9,83.3,83.8],"script":[43.4,44.8,42.9,42.6,42.9,43,43.2,43,43.8,44.5,44.6,44.8,44,45.4,43.5,43.6,43,43.8,44.5,45.2,46.1,43.5,44.8,44.4,44.4],"paint":[2.9,3.1,2.6,2.1,2.2,2.6,2.7,3,3.1,2.4,2.9,2.9,2.3,3,2.1,2.6,1.6,2.2,2,2.1,2.8,2.2,2.2,2.6,2.4]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[95.1,88.1,83.6,86.6,86.5,85.2,84.7,88.4,81.5,95,84.2,86.1,82.4,88.6,94.5],"script":[40.1,41.2,40.1,39.8,40.3,41.1,40.3,42.3,40,40.7,40.3,40,40.6,40.3,39.2],"paint":[17,14.6,16.1,14.2,14.6,15.1,14.6,15.1,16,14.3,15.2,14.6,14.6,15.2,14.9]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[93.4,35.4,34.6,36.7,34.4,34,36.3,35.3,36.4,34.4,36.8,35,35.4,36.9,39.5],"script":[21.6,20.2,20.7,20.2,21.7,21.1,21,20.2,21.5,21.8,21,21,20,21.7,21.5],"paint":[11.3,10.6,11.2,11.3,10.9,10.8,11,11.3,11.2,11.4,11,10.9,11.4,12.2,11.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[752.2,776.6,768.9,760.1,769.3,760.9,766.9,749.6,758,761,765.5,770.9,762.8,770.6,767.6],"script":[436.2,430.2,429.3,437.4,425.5,424.7,428.5,435.8,444.8,441.5,441.5,427,440.6,428.7,432],"paint":[257.8,292.3,286.5,265.1,288.6,283.2,284.9,256.2,256.9,263.9,267.9,287.5,265.9,286.7,281.8]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.2,115.8,111.7,119.3,112.3,111,111.9,114.4,114.1,111.5,111.1,116.9,117.5,114.7,111.3],"script":[65.1,65.1,65.6,65.5,66.3,65.8,65.3,65.6,65.3,65.2,64.8,65.6,65.2,66.1,65.3],"paint":[26.3,25.9,26.6,25.9,26.4,26.2,26.1,26,26.6,26.4,26.1,26.3,27.1,25.8,26.7]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[45.1,41.8,42.5,42.4,44.4,43.8,44.1,42.2,42.2,43.3,41.5,41.7,41.1,41.8,42.1],"script":[43.2,39.7,40.5,40.8,42.2,41.1,42.4,40.3,40.5,40.8,39.8,40,40,39.7,40.4],"paint":[1.8,1.9,1.1,0.7,1,2.6,0.7,0.9,0.7,1.9,1.7,1.2,0.4,1,1.6]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.078660011291504]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.697035789489746]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[52.88167858123779]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.37940216064453]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.09615325927734]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4208.3]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1377]}},{"framework":"blazor-wasm-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"01_run1k","values":{"total":[77.8,80.6,81,85.3,79.2,81.5,85.1,82.3,86.4,79.6,84.7,81.3,80,79.7,85.6],"script":[47.8,50.1,50.6,50.3,49.5,50.3,49.6,50.8,51,49.7,48.9,50.7,49.9,49.4,50.3],"paint":[26.6,27.3,27.3,27.1,26.5,27.7,27.5,27.2,27.7,26.6,28.2,27.1,26.8,27,27.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"02_replace1k","values":{"total":[82.1,91,91.5,92.3,91.8,91.9,91.4,90,90.6,89.8,90.8,90.4,90.7,91.6,90.7],"script":[56.2,58.5,59.7,59.5,59.6,59.5,59.1,57.9,59.1,58.1,58.2,58.1,58.9,59.3,58.9],"paint":[22.2,29,28.4,29.2,28.6,28.9,28.8,28.4,28,28.2,29.1,28.8,28.4,28.8,28.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[94.7,94.8,95.7,94.4,94.7,94,94.6,95.1,88.3,93.9,94.6,94.4,94.1,94.4,95],"script":[40.2,40.8,40.7,40,39.8,40.3,39.6,39.5,40.1,39.7,40.4,40,39,39.6,40.8],"paint":[12.6,12.2,12.6,12.1,12.6,13.5,11.8,12.2,11.5,11.4,14.1,11.8,13.1,12,12]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"04_select1k","values":{"total":[88,81.8,79.6,87.2,87.3,88.3,87.8,88.1,88,88.2,89.1,87.7,87.1,82.1,79.6,87.4,88.1,83.3,88.2,80.5,87.4,87.9,89,87,88.8],"script":[38.1,38.4,38.4,35.8,38.1,39,37.9,37.3,36.4,38.1,37.9,38,37.8,35.7,36.3,38.2,36.4,37.3,38.4,37,37.3,37.3,37.5,38.8,37.4],"paint":[1.9,1.9,2.4,3.2,3.6,3.1,2.3,2.7,1.9,2.3,3.2,2.1,2.1,1.7,2.3,2,2.2,1.7,1.3,2.1,2.5,2.7,2.5,3,2.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"05_swap1k","values":{"total":[88.8,85.3,87.9,86.6,93.9,87.7,94.8,83.1,94.4,94.6,94.5,89.9,88.6,89.9,88.4],"script":[32.8,32.1,33.4,33.1,33.3,32.4,32.1,31.5,32.8,32.3,33,32.2,32.6,32.8,32.6],"paint":[16.3,15.4,15.6,13.4,14.3,15.2,15.7,15.4,14.9,14.1,14.7,14.2,14.2,15.3,14.2]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[84.8,87.2,90.5,91.4,86.9,87.8,91,89.8,87.8,90.4,85.5,90.8,90.6,88.8,89.9],"script":[18.3,19,18.1,18.6,17.8,18.8,17.5,18.2,17.6,19.5,18.6,17.9,18.9,18.3,18],"paint":[11.5,11.5,11.2,12.1,11.6,11.8,11.4,11.3,11,11.4,11.4,11.5,11.4,11.3,11]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"07_create10k","values":{"total":[731.9,735.3,734.3,733,732.1,739.4,741.7,741.3,732.8,738.5,738.5,736.3,738.3,736.7,743.6],"script":[396,399.3,404.6,402.2,402.2,400.4,409.6,407.7,404.8,409.1,405.5,402.8,402.9,402.3,413.3],"paint":[281.9,280.4,276.4,274.8,275.9,283.1,278.4,279.2,274.7,275.9,276.5,279.9,281.8,280.5,276.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[117.9,108.9,107.8,110.7,107.2,110.9,115,112.6,112.6,110.2,112.9,111,111.7,113.8,111.8],"script":[55.2,54.5,53.7,54.6,54.5,54.3,54.3,54,54.7,54.9,54.4,54,54.1,54.3,55.7],"paint":[31.4,32.7,32.4,32.4,31.9,32,32.5,32.5,32.4,32.6,32.5,32.7,32.7,33.2,32.3]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[43.3,43.5,42.8,45,45.8,43.8,43.6,44.1,42.9,43.9,42.9,41.6,42.8,42.2,42.9],"script":[41.8,41.4,41.3,43.4,43.7,42,42.3,42.6,41.6,41.7,41.2,40.6,41.2,41,41.2],"paint":[1.3,1.8,0.6,1.5,1.4,1,1.2,0.3,1.1,2.1,1.2,0.9,1.5,1.2,1.4]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[51.824092864990234]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[64.79552936553955]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[64.815016746521]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[61.357441902160645]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[136.91233348846436]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12639]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2951.5]}},{"framework":"blazor-wasm-aot-v9.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"01_run1k","values":{"total":[24,24,24,24.3,24.2,24.4,24.2,23.9,24.3,24.3,23.9,24.1,24.3,24.2,24.6],"script":[2.4,2.4,2.3,2.3,2.4,2.4,2.4,2.3,2.4,2.4,2.3,2.3,2.4,2.4,2.4],"paint":[21.2,21.3,21.4,21.6,21.5,21.7,21.4,21.2,21.6,21.5,21.2,21.4,21.6,21.4,21.8]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"02_replace1k","values":{"total":[27.5,27.7,27.2,27.1,27,27.3,27.5,27.3,27.3,27.4,27.3,27.3,27.5,27.2,27.6],"script":[4.8,4.8,4.7,4.7,4.6,4.8,4.7,4.9,4.7,4.7,4.8,4.9,4.8,4.8,4.8],"paint":[22.3,22.5,22.1,22,22,22.1,22.4,22.1,22.2,22.3,22.1,22,22.2,22,22.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.8,10.9,10.5,11.3,11.9,10.2,10.6,11.2,10.6,11.3,10.3,10.4,10.9,10.2,11.1],"script":[0.7,0.8,0.6,1.2,0.7,0.2,1.3,0.9,0.9,0.9,0.5,1,0.6,0.2,1.2],"paint":[8.9,8.8,8.5,9.2,10.3,9.4,7.8,8.2,8.6,8.9,8.2,7.7,8.2,8.4,8.9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.8,2.9,2.2,2.3,2.7,2.7,2.5,2.5,2.4,2.7,3.1,2.3,2.6,2.4,2.5,2.9,2.1,2.2,2.2,2.6,2.5,3.2,2.9,2.8],"script":[0.6,0.9,1,0.7,0.1,0.8,0.8,0.1,0.6,0.1,0.5,0.8,0.1,0.1,0.5,0.9,0.8,0.6,0.5,0.1,0.3,0.5,1,0.5,0.1],"paint":[1.6,1.3,1.8,1.3,1.3,1.8,1.1,1.5,1.1,1.8,2.1,2.2,1,2.4,1.8,1,2,1,1.6,1.2,2.2,1.3,1.4,2.2,1.5]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.6,13.7,14,13.5,13.6,13.4,12.9,13.2,13.7,13,13,13.5,13.4,13],"script":[0.1,1,1,1,0.1,0.8,0.6,0.5,0.7,0.8,0.6,0.6,0.8,1.2,0.1],"paint":[12.1,10.1,12.1,12.3,12.1,11.5,11.7,11.4,11.9,11.6,11,11.5,11.5,11.2,11.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.5,10.2,10.6,10.4,10.4,10.4,10.4,10.3,10.4,10.4,10.4,10.1,10.4],"script":[0.5,0.5,0.3,0.3,0.4,0.1,0.1,0.5,0.4,0.5,0.3,0.3,0.3,0.2,0.5],"paint":[8.9,9.1,9.3,9.2,9.5,9.6,9.6,8.9,9.1,8.9,9.5,9.5,9.5,9.3,9]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"07_create10k","values":{"total":[262.1,259.5,262.5,260.1,258.8,259,260.1,258.4,257.8,257.9,259.1,258.8,258.6,258.9,258.1],"script":[28.3,27.1,27.6,27.1,27,27.8,27.5,27.3,27.6,27.6,27.5,27,27.3,28,27.3],"paint":[225.8,225.3,227.5,225.6,224.7,224,225.5,223.9,222.7,223.1,224.4,224.5,224.2,223.6,223.6]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,27.1,27.7,28,27.9,28.1,27.4,29.1,27.3,27.8,27.4,27.9,27.4,27.4,27.1],"script":[2.2,2.1,2.1,2.1,2,2,2.1,2,2,2,2,2,2.1,2,2],"paint":[25.7,24.3,24.9,25.2,25.1,25.3,24.6,26.2,24.5,25,24.6,25.1,24.6,24.7,24.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.4,8.8,9.3,8.7,9,10.1,8.8,8.4,9.5,9.6,9,8.9,8.6,8.6],"script":[7.6,7.1,6.5,7.4,6.9,7.3,8.4,6.7,7,7.7,7.7,6.7,7.5,6.8,6.8],"paint":[0.9,1.1,2.1,0.6,1,0.7,1,1.1,0.2,0.9,0.7,1.1,0.2,0.3,0.7]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6568641662597656]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5198593139648438]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.527395248413086]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7604484558105469]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.253190994262695]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"blockdom-v0.9.29-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"01_run1k","values":{"total":[36.2,28,29.5,34.6,29.6,29.5,29.8,36.1,34.4,28.8,32.7,33.2,35,28.9,29.6],"script":[5.8,6.2,6.1,6,6,6.4,6.2,6.1,5.9,6.2,6,5.9,6.1,6.5,6.1],"paint":[20.8,21.5,21.4,21.5,21.1,21.6,21.6,21.5,21.3,21.5,22.9,20.9,21.2,21.5,21.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.6,38.2,39.5,33.2,38.5,40.4,38.5,38.2,32.9,33.6,39.8,33.6,33,33.2],"script":[11.1,10.4,10.5,10.6,10.8,10.6,10.5,10.4,10.6,10.8,11.2,10.7,10.9,10.5,10.7],"paint":[22.2,22,21.9,22.2,22,21.5,22.5,21.6,21.9,21.8,22.1,21.7,22.4,21.9,22.1]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.6,12.9,13.7,13.1,13.1,29.6,29.3,15.1,14.2,12.8,13.5,14.3,12.8,14,12.4],"script":[3.3,2.5,2.9,3.1,3,3.4,2.2,3.4,3.6,2.5,2.5,3.1,2.6,3.8,2.7],"paint":[10.2,9.5,10.4,8.9,9.2,10.1,10.7,10.9,10.4,9.6,10.2,10.1,9.3,9.7,9.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"04_select1k","values":{"total":[3.9,4,4,3.6,3.5,3.4,4.7,3.7,4.2,3.5,3.4,3.9,3.4,3.8,3.8,3.9,4.3,3.9,3.9,3.2,3.3,3.6,4.2,3.8,3.9],"script":[1,1.8,2,1.5,1.6,1.2,2.3,1.6,1.7,1.4,1.7,1.3,1,1.9,1.3,1.4,2.2,1.6,1.7,1.3,1.5,1.5,1.5,1.6,1.6],"paint":[2,1.8,1.8,2,1.3,1.4,2.2,1.8,2,2,1.3,2.5,1.9,1.5,1.6,1.6,2.1,1.6,1.2,1.1,1.6,1.5,2.1,1.8,2.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"05_swap1k","values":{"total":[14.7,14,13.9,13.9,13.5,13.4,29.2,14.9,29.9,13.6,12.7,13.6,14.9,29.7,13.8],"script":[2.2,1.5,0.7,1.7,1,1.4,0.9,1.9,0.8,1.1,1,1,1.7,1.7,0.9],"paint":[11.5,11.7,12.1,12.1,11.6,11.4,12.7,12.1,13.2,12.5,11.1,11.5,11,11.7,12.7]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.9,9.6,9.8,10,10.3,9.6,9.3,10.1,10.3,9.3,9.8,9.3,9.8,9.6],"script":[0.9,1,0.4,0.4,0.9,1,0.6,0.7,0.9,0.4,0.6,0.8,0.7,0.4,0.5],"paint":[8.6,8.9,9.1,8.9,9,8.9,8.9,8.6,9.1,9.5,8.5,8.7,8.4,8.9,8.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"07_create10k","values":{"total":[300.6,298.5,296.8,296.1,294.8,294.5,294.9,296.7,292.5,292.9,294.4,296.8,295.3,296.1,294.9],"script":[68.8,71.4,69.9,71.1,71.5,70.9,68.8,69.6,70.6,72.7,70.8,70.6,69.6,70,70],"paint":[221.9,218.4,218.7,217.4,216.3,218.2,217.8,222,218.2,216.2,218.6,218.5,217.8,217.6,217.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,36.8,37.5,36.9,36.7,32.9,31.6,31.5,32.9,32.1,32.4,36.5,31.9,32.1,32.6],"script":[6.7,6.7,6.8,6.9,6.8,7,6.8,6.8,6.8,6.7,6.9,6.7,6.8,6.9,6.9],"paint":[24.8,24.6,25,24.4,24.2,25.3,24.3,24.3,25.3,24.8,25,24.5,24.2,24.7,25.2]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,11.6,11,11.3,28.4,11.6,11.2,27.1,11,11,11,11.2,11.3,11.2,11.9],"script":[8.9,10.1,8.6,9.7,10.2,9.7,9.2,9.3,8.8,8.8,9.8,9,9.7,9.4,9.2],"paint":[0.6,0.3,0.9,1,1.5,0.9,1.7,1.3,1.5,1,0.3,1.6,1.1,0.9,0.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7147645950317383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6536054611206055]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.831300735473633]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5437440872192383]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.028746604919434]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"bobril-v20.11.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[69.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.5,23.8,23,23.4,23.2,23.4,23.3,23.3,23.6,23.6,23.6,23.7,23.2],"script":[1.9,1.9,1.9,1.9,1.9,1.9,1.8,1.8,1.9,1.8,1.9,1.9,2,1.9,1.9],"paint":[21,21.2,21.3,21.5,20.8,21.2,21,21.2,21,21.1,21.3,21.4,21.3,21.5,21]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"02_replace1k","values":{"total":[26.3,26.2,27.5,26.4,26.4,26.5,26.5,26.6,26.9,26.4,26.6,26.6,26.3,26.5,26.7],"script":[4.2,4.1,4.4,4.1,4,4.2,4.1,4.3,4.2,4.2,4.1,4.5,4.1,4.2,4.3],"paint":[21.7,21.7,22.7,21.8,21.9,22,22,21.9,22.2,21.8,22.1,21.6,21.7,21.9,22]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.8,11.2,10.9,11.2,10.3,11,10.9,10.8,12.2,11,10.1,10.1,11.2,12.3],"script":[0.2,0.6,0.6,0.8,0.6,0.5,0.8,1,1,0.9,0.9,0.8,0.9,0.6,1],"paint":[9.2,8.8,8.9,9.4,9.2,8.4,9.3,9,8.8,9.5,8.4,8.3,8,9.5,9.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"04_select1k","values":{"total":[5.3,2.4,2.2,2.4,2.7,2.6,2.6,2.3,2.1,2.3,2.9,2.4,2.2,3.3,2.8,2.3,2.3,2,2.4,2,2.3,2.5,2,2.6,2.2],"script":[0,0.1,0,0,0,0.6,0.7,0.6,0,0.4,0.7,0,0,0,0,0,0,0.1,0.4,0,0,0.1,0,0,0],"paint":[1.3,0.6,1.3,1.4,1.7,1.6,1.8,1.4,1.6,1.8,2.1,2.3,1.3,1.9,2.6,2.1,1.4,1.8,1.8,1.3,1.4,1.2,1,2.5,2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.6,13.3,12.6,13.3,15.1,14.2,13.8,13.3,13.5,12.4,13.9,13.6,12.3,12.3],"script":[0.9,0.1,1,0.1,0.1,0.6,0.1,0.1,0.8,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[11.2,11.8,11.4,11.5,11.9,13.7,12.6,12.4,11.9,12.2,10.2,12.8,11.8,11.3,11.3]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.7,10.3,10.7,10.5,10.4,10.7,10.6,10.3,10.4,10.4,10.6,10.4,10.4],"script":[0.5,0.4,0.3,0.5,0.4,0.2,0.3,0.3,0.2,0.4,0.2,0.5,0.5,0.4,0.4],"paint":[9.4,9.2,9.8,8.9,9.6,9.9,9.5,9.7,9.2,9.3,9.7,9.5,9.5,9.4,9.6]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"07_create10k","values":{"total":[259.7,257.4,259.3,257.7,257.6,258.6,258.1,257,256.6,257.5,258,255.8,257.3,259.2,255.6],"script":[25.9,26.7,26.2,26.2,25.7,26.5,25.9,26.2,26.2,26.5,26.4,26.1,26.7,26.2,26.5],"paint":[225.8,223.5,225.8,224.4,224.6,225.1,225,223.8,223.3,223.7,224.4,222.5,223,225.8,221.9]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27.3,27.7,27.4,27.4,27.5,27.2,27.1,27.7,27.2,27.5,27,27,27.4,26.7],"script":[2,2.1,2.1,2.1,2,2,2,2,2.1,2,2,2,2,2.3,2],"paint":[24.5,24.5,24.8,24.5,24.7,24.8,24.4,24.3,24.8,24.4,24.7,24.2,24.3,24.3,24]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.4,8.6,9.3,9.5,9,9.2,9.3,9.6,9,9.4,9.6,9.9,9.6,9],"script":[7.4,7.2,7.1,7.3,7.6,7.3,6.8,7,8,6.7,7.7,7.8,7.9,7.8,7.4],"paint":[0.2,2,0.5,0.8,0.7,0.6,2.2,2,0.3,2,0.6,1.7,1.5,1.6,0.2]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8716039657592773]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.732985496520996]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.804154396057129]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0994253158569336]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.591866493225098]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.5]}},{"framework":"cample-v3.2.1-beta.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.8,32.3,32.2,32.8,32.4,31.6,32,32.3,32.1,32.5,32,32.5,32.4,32.1],"script":[10.5,9.8,10.3,10.2,10.7,10.4,10,10.1,10.3,10.2,10.4,10.1,10.5,10.4,10.1],"paint":[21.6,21.5,21.5,21.4,21.6,21.4,21.1,21.4,21.5,21.4,21.6,21.3,21.5,21.5,21.4]}},{"framework":"crank-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.9,36,35.8,35.7,35.8,35.6,36,35.6,36.3,35.7,36.5,35.6,35.7,35.6],"script":[12.7,13.2,13.5,13.1,13.2,13.2,13.1,13.6,13.2,13.3,13.1,13.5,13,13.2,13.2],"paint":[22.1,22.1,21.9,22.2,22,22.1,21.9,21.9,21.9,22.4,22.1,22.4,22.1,21.9,21.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22,21.9,23.3,22.7,22.2,22.2,22.6,22.1,22,21.8,22.3,22.4,22.8,23,22.7],"script":[9.7,9.7,10.5,10.4,9.9,10.1,10.1,9.7,10,9,10.3,10.9,10.4,9.5,10.2],"paint":[10.1,10.1,10.8,9.2,11.1,9.9,10.7,11,10.1,11.8,10.6,9.7,11.4,10.7,10.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[8.8,9.2,9.1,9.2,9.2,8.5,9.1,9,9.2,9.1,8.6,8.8,8.4,8.4,9.5,9.4,9,9.7,8.9,9.6,8.9,9,9.1,9.1,9.6],"script":[6.2,5.8,6.6,6.1,6.7,5.6,6,5.5,6.7,6.1,5.6,5.8,5.7,5.4,6,6.1,5.9,6.2,6,6.3,6.3,5.8,6.3,5.9,6.3],"paint":[0.8,1.5,0.8,1.7,1.1,2.7,1.5,1.9,1.4,1.1,1.2,2,1.1,2.1,1.8,2.1,2.4,1.7,1.1,1.5,1.2,2.3,1.4,2.2,2.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[20.9,21,20.6,22,20.8,20.9,21.2,20.5,21,22.2,21.3,21.2,21.1,19.8,20.6],"script":[6.3,6.8,7.2,7,7.2,7,7.2,6.9,6.3,7.1,7.2,7.1,7,7.1,7],"paint":[12.9,12.3,11,12.9,11.7,12.6,12.7,11.6,12.5,12.9,10.9,12.4,13.1,11,12.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.4,13.9,13.7,13.8,14,14.3,14.3,14.3,13.9,14.3,14,14.6,14,13.7],"script":[3.7,3.8,3.5,3.4,3.4,3.6,3.7,3.6,3.6,3.5,3.6,3.6,3.7,3.6,3.4],"paint":[10.4,9.8,9.5,9.8,9.8,9.4,9.8,10.2,9.4,9.8,9.9,9.5,10.2,9.8,9.8]}},{"framework":"crank-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[321,320.1,325.4,324.9,324.4,324.9,325.7,324,325.1,325.9,326,326.5,322.8,328.3,323.8],"script":[98.3,97.9,101.5,102.5,102.3,101.8,103.1,101.5,101.8,102.2,104,103.8,101.2,101.8,102.6],"paint":[215.4,215.2,216.4,215.4,215,216.1,215.7,215.6,216.3,216,215,215.9,214.7,218.9,214.3]}},{"framework":"crank-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,38.7,40,39.5,38.9,39.7,38.7,39.4,39.1,39.6,39.3,39.1,39,39.4,38.9],"script":[12.3,12.4,13,13.4,12.7,13.3,12.6,13.3,13,13.1,12.9,12.9,13.1,13.2,12.8],"paint":[24.8,25.5,26,25.2,25.3,25.5,25.1,25.3,25.2,25.5,25.5,25.3,25.1,25.3,25.2]}},{"framework":"crank-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,11.7,12.7,13,12,10.9,10.9,11.8,11.6,12.1,12.6,12.1,12.4,12,12.3],"script":[10.1,9.1,11,10.6,9.6,9.6,8.7,9.7,9.5,10,10.3,9.9,10.2,10,10.1],"paint":[1.8,2.4,1.1,1.2,1,1,1.1,1,1.5,0.2,1.6,1,0.2,1.1,0.7]}},{"framework":"crank-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.673858642578125]}},{"framework":"crank-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6606321334838867]}},{"framework":"crank-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7591915130615234]}},{"framework":"crank-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9849462509155273]}},{"framework":"crank-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.612318992614746]}},{"framework":"crank-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.1]}},{"framework":"crank-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"crank-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"01_run1k","values":{"total":[33.1,31.1,31.4,32.4,31.4,31.9,31.1,31.1,33.4,31.4,32,31.3,31.9,31.1,31.7],"script":[10.2,9.3,9.5,9.9,9.6,9.5,9.4,9.2,10.3,9.9,9.8,9.6,9.8,9.4,9.9],"paint":[22.3,21.4,21.5,22,21.4,22,21.3,21.5,22.5,21.2,21.8,21.3,21.7,21.3,21.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"02_replace1k","values":{"total":[37.3,36.8,37.3,37.8,38,38.1,37.7,37.3,37.4,37.1,37.1,37.2,36.8,37.1,36.8],"script":[13.8,13.6,13.9,14.3,14,13.6,14.2,13.5,13.4,13.3,13.9,13.8,13.7,13.7,13.6],"paint":[22.9,22.7,22.8,22.9,23.4,23.9,22.9,23.1,23.4,23.1,22.6,22.8,22.5,22.8,22.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.3,14,13.2,12.7,12.1,15.3,13.6,12.3,12.4,12.2,12.5,13.2,12.5,12.6],"script":[2.3,1.6,2.4,1.9,1.6,2,2.2,1.6,2,2.3,2.3,2.4,2.5,2.2,2.2],"paint":[8.4,9.2,10.1,9.2,9.5,9.5,11.7,11.1,8.8,9,8.1,8.5,9.5,9.1,8.4]}},{"framework":"dark-v1.4.2-keyed","benchmark":"04_select1k","values":{"total":[3.1,8.2,3.3,2.8,4.3,4.8,5.5,3,4.8,2.3,3.2,5.2,3.1,3,2.3,2.9,8.6,2.8,3.3,2.6,3.4,2.8,5.6,3.4,2.8],"script":[1.1,0.1,1.1,0.6,0.5,0.2,0.9,0.9,0.1,0.1,0.8,1.2,1.2,0.9,0.1,0.2,0.8,0.1,0.8,0.1,0.9,0.1,0.1,0.6,0.8],"paint":[1,2.9,1.4,2,1,1.5,1.6,1.4,1.4,2,2.3,1.8,1.3,1.5,1.1,2.5,1.4,1.8,2.3,1.7,1.5,1.5,1.9,1.5,1.1]}},{"framework":"dark-v1.4.2-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.1,16.1,15.9,16.6,18.3,16.4,17.3,16.3,17.4,16.8,18.6,16.5,16.2,16.4],"script":[2.9,2.8,2.9,3,2.7,3.1,2.8,3,2.7,3.7,2.9,3.3,3.1,3,2.8],"paint":[12.2,12.3,12.5,11.4,12.6,13.3,12.1,12.7,11.1,12.1,12.5,13.9,12.7,12.2,12.9]}},{"framework":"dark-v1.4.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,11.7,12.3,12.4,12.8,11.9,12.6,12.4,11.8,12.1,12.4,12.4,12.1,11.8,12.2],"script":[1.6,1.5,1.4,1.7,1.7,1.5,1.7,1.6,1.4,1.6,1.5,1.8,1.6,1.5,1.7],"paint":[10.2,9.5,9.9,9.8,10.1,9.8,10.3,10.2,9.4,9.2,10,9.9,9.8,9.3,9.8]}},{"framework":"dark-v1.4.2-keyed","benchmark":"07_create10k","values":{"total":[320.6,317.2,319.4,318.6,317.5,319,319,319.3,321.3,318,319.2,318.9,319.6,319.2,319],"script":[96.8,94.5,96.4,95.5,96.3,96.3,96.1,98.5,97.2,95.9,95.5,95.4,94.6,97.1,95.5],"paint":[215.7,214.7,214.8,215.2,213.2,214.6,214.3,213,215.6,214,215.4,215.4,217.2,214.2,215.6]}},{"framework":"dark-v1.4.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.4,38.8,40,39.8,39,39.2,39.6,39.8,39.3,39.5,39.6,39.3,39.4,39.3,39.8],"script":[11.2,11.3,11.8,11.7,11.4,11.6,11.5,11.4,11.4,11.7,11.9,11.6,11.5,11.7,12],"paint":[26.1,26.5,27.2,27,26.6,26.5,27,27.3,26.8,26.8,26.7,26.7,26.9,26.6,26.7]}},{"framework":"dark-v1.4.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,11.3,12.7,13.9,12.1,13.7,11.7,12.5,11.9,12.8,12.3,12.4,12.6,11.9,13.5],"script":[10.2,9.1,10.8,11.8,9.7,11.3,9.5,10.2,9.8,10.5,9.9,10.1,10.6,9.8,11.1],"paint":[1.4,0.3,1.3,1.2,1.8,1.2,1.8,2,1.8,0.9,2.1,0.3,0.8,1,2.2]}},{"framework":"dark-v1.4.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.717982292175293]}},{"framework":"dark-v1.4.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.554884910583496]}},{"framework":"dark-v1.4.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.562204360961914]}},{"framework":"dark-v1.4.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2533397674560547]}},{"framework":"dark-v1.4.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.470160484313965]}},{"framework":"dark-v1.4.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"dark-v1.4.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.3]}},{"framework":"dark-v1.4.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.3,23.2,23.3,23.2,23.3,23.3,23.6,23.1,24.1,23.3,23.3,23.4,23.3,23.2],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.5,21.6,21.5,21.6,21.5,21.6,21.6,21.9,21.5,22.4,21.6,21.6,21.7,21.6,21.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"02_replace1k","values":{"total":[25.9,25.7,25.8,25.7,25.8,25.7,26,25.7,25.6,26,26.7,25.8,26,25.9,25.7],"script":[3.2,3.2,3.2,2.9,3.2,3.1,3.4,3.2,2.9,3.2,3.2,3.3,3.3,3.2,3.2],"paint":[22.3,22.1,22.2,22.4,22.3,22.2,22.2,22.1,22.3,22.4,23,22.1,22.3,22.2,22.2]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.3,9.6,9.8,10.5,10.2,10.7,10.2,10.2,10.2,9.9,10.1,10.3,10.4,10],"script":[0.8,0.1,0.1,0.6,0.8,0.1,0.9,0.7,0.1,0.1,0.1,0.6,1,0.8,0.6],"paint":[8.3,8.2,8.8,8,9.5,9.2,8.8,8.3,8.6,9.1,8.9,8,8.4,8.1,8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"04_select1k","values":{"total":[1.9,1.9,2.7,2.5,2,2.3,2.1,2.5,2.3,1.8,2.8,2.1,1.8,3,2.2,2.9,2.1,1.6,2.2,2.5,2.5,3.6,2.2,2.6,2.2],"script":[0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.7,0,1,0,0,0,0,0.5,0.4,0,0.6,0],"paint":[1.3,1,2.5,1.7,1.8,1.5,1.6,1.5,1.8,1.6,1.9,1.8,1.3,2.1,2,1.7,1.8,1.2,1.1,2.3,1.5,2.1,1.3,1.8,1.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.3,11.9,13.4,12.8,13.4,12.3,12.3,12.8,13.3,12.4,11.9,12.7,12.7,11.9],"script":[0.1,0.9,0.1,0.2,0.1,0.6,0.1,0.1,1,0.7,0.1,0.1,0.5,0.4,0.6],"paint":[11.2,11.4,10.8,11.9,12,11.4,11,11,11,10.8,11.2,10.7,11.1,11,10.4]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.1,10.2,10.1,10.4,10.2,10,10.2,10.1,10.2,10,10.3,10.1,10.9,10.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.3,0.3,0.3],"paint":[9.1,9.5,9.3,9.6,9.5,9.6,8.9,9.4,9.4,9.5,9,9.2,9.4,9.8,9.6]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"07_create10k","values":{"total":[246.9,246.6,246.2,245.4,245.5,245.2,247.4,246.9,245.7,245,247.8,245.4,246.1,246.6,244.4],"script":[15.2,15,14.9,15,15.1,15.1,15.2,15,15,14.7,14.9,15,15.1,15.4,15],"paint":[224.7,224.5,224.2,223.3,223.2,223,225.2,224.6,223.6,223.2,226,223.4,223.8,223.8,222.5]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.9,27.2,27.2,26.8,27.2,27.1,27.1,26.9,26.8,27,27.4,27.2,27.2,27.1,27.4],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.4,1.3],"paint":[24.9,25.1,25.2,24.7,25.2,25,25,24.9,24.8,24.9,25.3,25.2,25.1,25,25.3]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.1,8.9,9.3,9.1,9.2,9.6,9.2,9.3,9.2,9.8,8.7,9.4,9.7,9.2],"script":[7,7.8,6.7,7.4,7.3,7.1,7.5,7.3,7.1,7,7.9,7,6.8,7.7,7.6],"paint":[1.1,1.1,1.2,0.7,1.6,1.9,1,0.6,1.2,1.2,0.6,1.5,1.6,1.8,0.8]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5591974258422852]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8510255813598633]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8704309463500977]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6288022994995117]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.650117874145508]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.9]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"deleight-v5.5.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[34.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"01_run1k","values":{"total":[25.6,25.8,25.5,25.5,26.5,25.6,25.5,25.8,25.6,25.8,25.5,25.6,25.8,25.6,25.7],"script":[3.9,3.9,3.9,4,4,4,3.9,3.9,3.9,4,4,3.9,4.2,3.9,4],"paint":[21.4,21.5,21.2,21.1,22.2,21.3,21.2,21.5,21.3,21.4,21.1,21.3,21.3,21.3,21.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,29.4,28.6,29.1,28.6,28.7,28.8,28.7,29.2,28.4,28.4,28.8,28.6,28.7,28.9],"script":[5.8,5.8,5.9,6.1,5.8,5.5,6,5.8,6.2,5.7,5.7,5.9,6,5.9,6.1],"paint":[22.3,23,22.1,22.4,22.2,22.7,22.3,22.3,22.4,22.1,22.1,22.3,22,22.2,22.3]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.7,11.7,10.9,11.4,11,11.6,11,11.9,11.9,14.2,11.1,11.6,11.6,11.2],"script":[1.5,1,1,1.2,0.7,0.9,0.9,0.9,1.4,1.2,1.2,0.8,0.9,1,0.9],"paint":[8.4,9.8,9.1,7.7,9.7,8.8,9.5,9.2,9.8,9.5,12,9.4,9.7,9.9,8.9]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"04_select1k","values":{"total":[2.7,3.1,2.6,1.9,3.2,2.6,2.1,2.9,2.2,2.9,2,3,2.8,2.2,2.3,2.6,2.7,2.2,2.7,2.4,2.7,2.5,2,2.5,2.4],"script":[0.1,0.1,0.1,0.2,0.7,0.1,0.3,0.7,0.1,0.1,0.1,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.1,0.1],"paint":[2.3,2.9,1.8,1.1,1.3,2.5,1.4,2.1,2,2.6,1,1.6,2,1.2,1.1,2.4,1.8,1.6,2.5,1.8,1.2,2.3,1.1,1.7,2.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.1,13.2,12.9,12.4,13.1,13.5,12.9,13.3,13.1,13.6,13,13,12.9,12.6],"script":[0.1,0.1,0.1,0.1,0.1,0.5,0.8,0.1,0.1,0.1,1.1,0.6,0.9,0.1,0.5],"paint":[12.2,11.2,12.6,12.3,11.6,11.1,11.6,11.5,12,11.6,11.5,11.1,10.4,11.6,11.1]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.2,10.3,10.2,10.4,10.7,10.5,10.4,10.6,10.3,10.3,10.4,10.5,10.1,10.3],"script":[0.3,0.3,0.1,0.3,0.2,0.3,0.1,0.1,0.4,0.4,0.4,0.2,0.3,0.2,0.2],"paint":[9.1,9,9.7,9.1,9.7,9.8,9.6,9.9,9.6,8.7,8.9,9.7,9.7,9.2,9.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"07_create10k","values":{"total":[270.1,268.8,272.3,271.5,272.8,273.5,271.7,271.3,271.1,272.5,270.4,271.9,270.9,273.3,270.6],"script":[40.9,41.3,42.2,41.5,42.3,42.5,41.7,41.8,41.3,42.2,41.9,42.6,42.5,42.8,41.5],"paint":[222.2,220.5,223.1,222.5,223.4,223.7,222.8,222.3,222.6,223,221.4,222.1,221.3,223.4,222]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.2,31.4,31.9,31,30.6,31,31.4,31.9,30.7,31.4,32.2,32.1,31.4,32.1,32.2],"script":[4.3,4.3,4.4,4.3,4.3,4.3,4.3,4.3,4.2,4.3,4.4,4.4,4.3,4.4,4.4],"paint":[26.1,26.4,26.7,26,25.6,26,26.3,26.8,25.8,26.3,27,26.9,26.4,26.9,27]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.7,10.7,10.8,10,10.5,11.7,11.1,11.9,10.7,9.8,10.6,10.3,10.4,10],"script":[7.9,9.2,8.5,8.6,7.9,8.6,9.2,8.6,9.9,8.3,7.5,8.8,8,8.8,7.9],"paint":[1.2,0.2,1.9,1.2,1.2,0.2,0.4,1.3,1.1,1.3,1.5,1.1,0.7,1,1.2]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6055803298950195]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.723968505859375]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.716464042663574]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8136444091796875]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.80059051513672]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.4]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"destam-dom-v0.10.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,27.9,28,30.8,28.2,27.8,28,27.9,28.2,28.3,28,28,28.6,29.4,28.6],"script":[6,5.8,5.8,6.3,5.8,5.8,5.8,5.8,5.9,5.8,5.8,5.8,6,6,5.9],"paint":[22.1,21.5,21.6,23.9,21.8,21.4,21.6,21.5,21.8,21.9,21.6,21.5,22,22.8,22.1]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.5,32.1,31.2,31.4,31.6,31.4,31.6,31.7,31.4,31.4,31.4,31.7,31.3,31.7],"script":[8.7,8.8,8.8,8.8,8.7,8.7,8.7,8.8,8.9,8.7,8.7,8.7,8.9,8.7,8.7],"paint":[21.9,22.1,22.7,21.8,22.1,22.2,22.1,22.2,22.2,22.1,22.1,22.1,22.2,22.1,22.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,18.9,18.8,18,18.4,18.2,20.2,18.5,18.6,18.4,18.6,17.9,18,18.7,18.2],"script":[7.5,6.3,6.8,6.4,6.6,6.3,7,6.2,6.6,6.2,6.6,6.7,6.3,6.6,6.1],"paint":[10.7,9.3,10.2,9.8,10.3,10,10.7,9,10.2,10,10.3,9.8,9.8,9.7,10.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[10.9,11,10.7,10.5,10.8,10.6,10.3,10,10.7,11.5,10.7,10.3,11.2,11,11.3,11,10.9,10.4,10.9,10.6,10.8,10.7,11,9.9,10.7],"script":[8.3,8.4,7.9,8,8,7.2,7.5,7.6,8.3,8.5,7.8,7.8,8.2,7.8,7.9,8.1,7.5,7.9,7.7,7.8,8.2,8.2,8.3,7.2,8.5],"paint":[1.2,1.7,0.7,2,1.2,2.9,1.1,1.4,1,1.9,1.4,2.1,1.5,2.2,2.6,1.7,2.7,0.9,1.8,1.8,1.3,1.9,1.5,1.8,0.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[22.3,22.5,22.3,23,24.9,23,23.5,22.5,22.6,23.3,23,23.2,23.3,22.2,22.7],"script":[7.9,8.2,7.3,8.2,8.3,8.3,8.6,7.9,8.1,7.6,8.1,8.4,8.6,7.8,8.2],"paint":[12.9,12.3,13.9,12.3,14.6,13.6,13.2,11.9,11.8,14.1,12.6,13.3,12.4,12.2,12.8]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,16.2,14.8,14.8,14.7,14.6,14.6,14.3,14.6,14.7,14.6,14.6,14.6,16.2,14.2],"script":[4.2,4.4,4.2,4,4.2,4.2,4.2,4,4,4.2,4.2,4,4.1,5.2,4],"paint":[10,10.9,10,10,9.9,9.8,9.6,9.7,9.8,9.7,9.8,10,9.8,9.9,9.4]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[275.4,272.9,274.6,273.4,274.1,276.2,277.6,274.3,274.6,276.5,275.8,274.1,278.1,273.1,273.2],"script":[42.7,41.8,41.7,41.5,41.6,42.1,41.5,41.2,41.8,41.1,41.5,41,42.3,41.3,41.6],"paint":[225,223.5,225.5,224.4,224.9,226.5,228.6,225.6,225.1,227.9,226.8,225.7,228.2,224.1,224]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.5,33.2,33.7,33.6,33.2,34,34.1,34,33.3,34.2,34,33.4,33.9,33.8],"script":[6.6,6.4,6.5,6.6,6.7,6.7,6.4,6.8,7,6.5,6.6,6.5,6.5,6.7,6.6],"paint":[26.1,25.2,25.7,26.1,26,25.6,26.6,26.3,26.1,25.8,26.6,26.5,25.9,26.2,26.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.6,23.2,23.4,23.6,22.7,22.5,23.6,24.1,22.5,24.9,22.9,22.2,22.6,25,23.4],"script":[22.5,21,21.3,21.3,20.8,20.5,21.9,22.5,20.3,22.8,20.6,20.5,21,22.5,21.4],"paint":[0.3,0.8,0.3,1.6,0.9,1.2,0.3,0.7,1.3,1.9,2.1,1.1,0.5,1.5,0.3]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.85980224609375]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.347280502319336]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402106285095215]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.592020034790039]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.665785789489746]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[276.7]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.2]}},{"framework":"dioxus-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[343.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[24.6,24.3,24.5,24.5,25,24.6,25.3,24.5,24.4,24.8,24.5,24.3,24.7,24.4,25],"script":[2.6,2.3,2.3,2.4,2.4,2.5,2.6,2.4,2.3,2.6,2.3,2.4,2.3,2.4,2.6],"paint":[21.6,21.7,21.7,21.7,22.2,21.8,22.3,21.7,21.7,21.8,21.8,21.5,22,21.7,22]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[29.6,28.8,29.2,29.1,29.4,29.9,29.6,29.9,29.5,29.6,29.5,29.8,29.3,28.8,29.6],"script":[6.4,5.9,6.1,6,6.2,6.2,6.3,6.2,6.2,6.3,6.2,6.5,6,6,6.4],"paint":[22.6,22.3,22.6,22.6,22.7,23,22.8,23.2,22.6,22.7,22.7,22.8,22.8,22.3,22.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.6,10.8,10.2,11.6,13.2,11.4,12.2,11.8,11.5,11,11.6,13.1,10.6,10.9],"script":[1.3,1.3,0.6,0.9,0.9,1.8,1.3,1.1,1.4,1.2,0.7,1.2,1.5,0.7,1.2],"paint":[8,9.5,9.3,8.3,9.6,10.3,8.8,10.4,8.9,8.8,9.7,9.2,9.7,9.3,8.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.4,2.3,3.1,2.5,2.4,2.2,2.6,2.8,2.5,1.8,2.4,1.8,2.6,2.4,2.7,3.8,2.1,2.5,2,2.4,1.9,3,2.4,2.5],"script":[0.3,1.1,0.1,1.1,0.1,0.1,0.4,0.1,0.8,0.1,0.1,0.6,0.1,0.8,0.1,0.8,0.7,0.6,0.1,0.1,0.1,0.1,1.1,0.7,0.5],"paint":[1.8,0.7,2.1,1.9,1.5,1.3,1.6,2.3,1.8,2,1.5,1.4,1.7,1.8,2.2,1.2,1.8,1,1.8,0.9,2,1,1.1,1.6,1.9]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[16.8,15.3,15.5,15.7,16.6,15.9,15.9,15.9,16,15.9,15.7,15.3,16,16.3,15.7],"script":[3.2,2.3,1.9,2.5,2.7,1.9,2.3,2.2,2.2,2.5,2.6,2.7,2.3,1.9,2],"paint":[12.2,11.9,12.2,12.1,12.7,12.1,12.3,12.2,12.8,12.7,12.1,11.4,12.3,13.6,12.6]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,11.3,11.6,11.3,11.3,11,11.2,12,11.5,10.9,11.1,11.5,10.9,11.9,11],"script":[0.8,1.2,1,1,1.1,0.9,1.1,1.1,1.1,1.1,1.2,1.1,1.1,1,0.8],"paint":[9.5,9.6,9.3,9.8,9.7,9.6,9.8,10.2,9.5,9.2,9.4,9.4,9.2,10.5,9.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[258.8,256.8,256.8,258.6,256.1,257.5,258.4,258.9,256.7,256.8,256.7,257.2,256,260.4,257.5],"script":[26.8,26.8,26.4,26.6,26.7,27.1,26.5,27.5,26.4,26.6,27.1,26.6,26,27.2,26.7],"paint":[224.1,223,223.4,224.8,222.3,223.5,224.8,224.3,223,223.2,222.6,223.5,223.1,226.1,223.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,29.9,30.3,30.5,30,30.1,30.8,30,30.1,30,29.9,30.2,29.6,30.1],"script":[3.6,3.7,3.6,3.6,3.8,3.7,3.7,4,3.6,3.6,3.7,3.6,3.7,3.5,3.6],"paint":[25.8,25.9,25.5,25.9,26,25.5,25.7,26.1,25.7,25.7,25.5,25.6,25.7,25.3,25.7]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.2,9.1,9.2,9.1,9.6,9.2,9.3,9.4,9.5,10.4,9.2,9.5,9.2,8.9],"script":[7.7,7.7,7.2,7.2,7.3,7.4,7.6,7.4,8,7.5,8.4,7.4,7.4,7.3,7.6],"paint":[0.3,0.6,0.9,0.7,0.2,2,0.7,1.6,0.2,1.8,0.3,1.6,1,1.3,0.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5691156387329102]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2270917892456055]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.202507972717285]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7002172470092773]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.952178001403809]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[46.9,45.8,43.9,44.5,45.3,45.3,47.2,44.8,50.7,44.8,44.9,43.1,44.8,45.5,44.9],"script":[21.3,21.4,20.1,20,20.4,20.4,20.2,20.2,20.2,19.8,20.2,19.7,19.8,20.2,20],"paint":[21.5,21.7,22.1,21.7,22.1,21.8,21.7,22,22.1,21.9,22.2,21.9,22,22,22]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[55.7,53.6,46.9,46.6,47.6,48.5,47.6,47.2,53.6,46.4,46.4,53.8,47.3,47.5,55],"script":[23.4,23.7,22.4,22.8,23.1,23.4,22.7,23.3,23,23.1,22.9,23.7,23.2,22.9,25],"paint":[22.8,23.2,23,23,23.2,23,23,22.9,22.7,22.9,23,22.6,23,23,23.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,34.6,36.3,18.7,36.4,35.7,34.9,34.8,20.7,35.2,35,34.6,19.5,36,34.8],"script":[8.1,7.8,9.1,7.4,8.6,8.3,8,8.5,7.9,8.3,8,7.8,7.6,7.5,7.9],"paint":[10,10.3,10.8,10.2,11.1,10.8,11.3,9.7,12.6,10.6,11.2,10.7,11,12.3,10.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[6,2.5,4,3,2.1,3.5,5.4,4,3,3.3,6.3,2.8,2.9,3.5,2.7,3.2,3.4,3.1,4.5,5.7,2.9,6.2,2.9,2.4,2.8],"script":[0.4,0.5,0.4,0.9,0.4,0.3,0.8,0.6,0.8,0.6,0.9,0.7,0.8,1,0.9,0.8,0.1,0.9,0.2,0.3,1,0.8,0.2,0.2,0.9],"paint":[2.3,1.1,1.7,1.4,1.4,1.7,2,1.1,2.1,1.7,1.7,2,1.9,1.9,1.3,1.7,2.2,1.6,1.6,1.1,1.8,2.4,1.5,2,1.8]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[39.2,37,42,23.7,39.9,38.8,39.6,38.8,24.1,39.6,39.3,23.3,41.2,24.4,24.6],"script":[8.7,8.3,11.4,8.8,10,9.8,9,9.8,9.8,10.5,9.8,8.6,10.6,9.3,10],"paint":[14.1,11.5,13.9,14.3,13.6,12.4,14,12.9,12.3,12.7,13.4,13.4,13.8,14.1,12.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.1,15,12.1,11.4,13.9,12.6,14.9,15.3,14.5,14.6,11.8,11.4,13,12.8,15.6],"script":[0.4,0.2,0.5,0.2,0.5,0.2,0.2,0.2,0.4,0.3,0.3,0.3,0.2,0.2,0.2],"paint":[10.7,11.2,10.6,10.2,10.2,10.4,10,10.8,10.6,10.6,10.8,10.5,10.7,10.1,10.4]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[398.6,399.4,400.4,402.7,400.2,402.8,401.2,401.6,403.2,398.7,401.3,402.2,400.6,402,403],"script":[179.9,181.4,181.7,181.9,180.3,181.3,182.6,182.7,183.2,181.5,181.8,183.2,180.7,182.2,181.8],"paint":[211.8,212.9,212.9,215.8,213.8,217,213.8,212.7,214.4,212.9,214.1,215.8,214.2,214.7,215.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.5,48.5,49.7,49.5,54.3,50.1,55.3,54.1,49.3,55.4,49.2,56.6,58,49.1,53.9],"script":[20.4,20.8,21.2,21.3,20.7,21.7,21.2,20.9,21.3,21.3,21.1,21.1,21.4,21.2,20.9],"paint":[27.9,27.4,28.2,27.9,28.2,28,28,27.5,27.6,27.8,27.7,27.8,28.9,27.6,27.3]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.2,19.4,39.7,19,19.5,18.6,41,18,19.1,39.2,18.4,38.2,39.9,38.9,40.3],"script":[16.3,16.9,17.5,16.3,18.5,16.8,18.2,17,17.1,16.9,16.5,15.9,17.5,17.3,18.4],"paint":[1.6,0.3,1.1,0.9,0.9,0.4,0.3,0.9,1.6,1,1.5,1.4,0.9,1.1,0.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8104143142700195]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.155107498168945]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.316567420959473]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3834924697875977]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.342079162597656]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.5]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[30.1,29.7,30.1,30.6,30.2,30.7,30.2,30.2,29.9,30.5,30.4,30.4,30.3,30.6,30.3],"script":[7.3,7.1,7.6,7.5,7.5,7.7,7.5,7.5,7.4,7.6,7.4,7.6,7.6,7.6,7.5],"paint":[22.3,22,21.9,22.5,22.2,22.4,22.1,22.2,21.9,22.4,22.5,22.3,22.2,22.5,22.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[32.5,32.9,33.6,33.9,33.5,34.1,33.6,33.2,33,33.5,33.8,33.8,33.9,34,33.9],"script":[9.5,9.7,10.1,10.3,10.3,10.1,10.3,9.9,10.1,10.3,10.1,10.5,10.4,10.4,10.5],"paint":[22.4,22.6,23,23,22.6,23.4,22.7,22.6,22.4,22.6,23.1,22.8,22.9,23.1,22.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.5,12.6,15.1,12.5,13.2,12.5,13.6,12.3,13.7,12.8,12.5,14.4,13,13],"script":[2.7,2.3,2.1,2.8,1.9,2.8,2.1,2.9,1.4,2.4,2.1,2.4,2.6,2.5,2.7],"paint":[10.2,9.2,9.8,10.5,9.2,9.5,9,9.8,9.4,10.7,9.8,8.7,10.6,9.5,9.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,3.3,3.4,3.1,3,3.4,2.9,2.8,2.6,3.3,3.1,3.3,2.8,3,2.8,2.9,2.8,3.7,3.3,3.4,2.7,3,3.5,2.8],"script":[0.6,0.2,0.8,1,1,0.9,0.8,0.6,0.8,0.8,0.8,0.9,0.6,0.2,0.6,0.6,0.6,0.9,0.9,1,0.8,1,0.9,1.1,0.2],"paint":[1.3,2.5,2.3,1.7,2,1.6,1.7,2.1,1.9,1.6,0.8,1.5,2,1.5,1.6,1.2,1.4,1.1,1.9,1.8,1.5,1.5,1.2,2.2,2.3]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.1,14.6,14.6,14.6,15.2,15.1,14.5,14.7,15,15.2,14.6,14.8,15.2,13.9],"script":[2.1,1.6,2.2,1.6,1.8,1.5,2.7,1.7,1.6,1.5,1.8,2.6,1.8,2.5,2.2],"paint":[11.6,13.3,11.1,11.2,11.4,12.5,10.8,11.5,12.2,12.3,12.4,11.2,12.1,11.5,10.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.7,11.8,11.7,11.5,11.6,11.5,11.4,11.3,11.6,11.5,11.5,11.7,11.7,11.7,11.4],"script":[1.3,1.5,1.3,1.5,1.3,1.3,1.3,1.4,1.3,1.3,1.3,1.5,1.5,1.3,1.3],"paint":[9.7,9.6,9.7,9.6,9.9,9.6,9.3,9.3,9.3,9.7,9.6,9.7,9.7,9.6,9.5]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[303.9,302.6,304.1,304.7,308,304.2,306.9,304.4,305.7,304.5,304,308.8,306.9,305.9,303.6],"script":[73,73.2,73.8,74.4,76.7,73.2,73.9,73.7,74,73.5,74.1,74.2,74.8,76.1,74.2],"paint":[223.5,221.8,222.6,222.7,223.7,223.6,225.5,223.1,224.3,223.4,222.6,226.8,224.2,222.1,222]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.1,34.8,35,35.8,34.8,35,34.6,34.9,34.7,35.8,34.7,34.5,34.6,35.4,34.7],"script":[7.7,7.5,7.8,7.9,7.8,7.7,7.8,7.8,7.5,7.7,7.6,7.8,7.8,7.8,7.7],"paint":[27.4,26.3,26.2,26.9,26,26.3,25.9,26.1,26.2,27,26.1,25.7,25.8,26.6,26]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.2,13.3,14.2,13.9,13.9,14.1,14.3,13.7,12.7,13.6,14.4,12.6,14,14,14],"script":[12.1,11.7,12.2,11.9,11.4,12.2,12.6,11.5,10.7,11.6,12.1,10.5,11.6,11.8,11.9],"paint":[0.6,0.6,1.8,1.7,1.2,0.5,0.8,1.4,1.2,0.7,1.6,0.8,1.6,2,1.9]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7444276809692383]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9700183868408203]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9568958282470703]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6423349380493164]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.023038864135742]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.4]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[169.3]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[24,24.2,24.3,24.2,24,24.1,24,23.9,24.1,24.3,23.7,23.9,24,24.1,24.2],"script":[1.8,1.8,1.8,1.8,1.8,1.9,1.8,1.9,1.8,1.8,1.8,1.8,1.9,1.8,1.9],"paint":[21.8,22,22.1,22,21.8,21.9,21.8,21.7,21.9,22.1,21.5,21.7,21.8,21.9,22]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[26.7,26.8,26.5,27.4,27.2,28.9,28.7,26.8,27,26.8,27.3,27.2,27.6,26.9,27.9],"script":[3.9,3.8,3.7,3.9,3.9,4,4.1,3.8,3.8,3.9,3.9,3.8,4.3,3.9,4],"paint":[22.4,22.6,22.4,23.1,22.9,24.5,24.1,22.5,22.8,22.6,23,22.9,22.8,22.5,23.5]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.1,9.8,10.2,10.4,10.6,9.8,10.1,10.5,10.2,10,10.3,10.1,10.1,9.9,10.2],"script":[0.1,0.3,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.9,0.5,0.1,0.2,0.1],"paint":[9,8.4,9.1,9,8.9,8.3,8.5,8.9,9,8.9,8.2,8.6,9.3,9.1,9.5]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.2,2.1,2.1,2.1,2,2.1,2.5,1.7,2.1,2.1,2.2,2.2,1.6,2.6,2.5,1.9,1.8,2.6,2.5,2,1.9,2.2,2.4,1.7],"script":[0,0,0,0,0.1,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0],"paint":[1.3,1.5,2,2,1.8,1.7,1.5,1.7,1.6,1.9,1.2,1.2,2,1.5,1.6,1.5,1.8,1.4,2.4,1.5,1.9,1.1,1.2,1.5,1.6]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.5,13.8,11.9,12.5,13,12.7,12.4,13.2,13.4,12.4,12.9,13.7,13.1,12.5],"script":[0.1,0.1,0.1,0,1,0.1,0,0,0.1,0.9,0,0.1,0.9,1,0],"paint":[12.7,12.3,13,10.9,10.6,11.8,11.8,11.5,11.9,11.1,10.8,12,11.3,10.6,11.4]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.2,10.2,10.1,10.3,10.2,10.3,10.1,9.9,10.4,10.3,10.2,10.5,10.2],"script":[0.1,0.3,0.1,0.3,0.1,0.2,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3],"paint":[9.5,9.6,9.5,9.1,9.6,9.4,8.7,9.6,9.5,9.4,9.8,9.7,9.6,10,8.8]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[252.8,249.8,251.7,250,250.1,253.2,249.9,251.5,250.2,251.7,250.1,251.3,251.9,251.8,250.6],"script":[18,17.6,17.7,17.5,17.4,17.4,17.7,17.8,17.8,17.7,17.6,17.6,17.7,17.7,17.6],"paint":[227.4,225.1,226.9,225.4,225.6,228.7,225.1,226.5,225.3,226.8,225.4,226.2,226.3,227,225.8]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.8,27.6,27.9,27.8,27.8,27.9,28.3,29.1,28.4,27.8,27.8,27.9,28.1,27.8],"script":[1.8,1.8,1.8,2.1,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.8,1.9],"paint":[24.8,25.3,25.1,25.1,25.2,25.2,25.3,25.7,26.5,25.9,25.2,25.2,25.4,25.6,25.2]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,10.2,9.2,8.8,9.4,9.6,10,9.8,9.3,10,9.9,9.8,9.8,9.7,9.7],"script":[7.6,8,7.6,7.2,7.4,7.9,7.4,7.6,7.3,8.2,7.8,8,7.9,7.9,7.8],"paint":[1.6,1.2,1.4,0.6,0.9,0.3,1.5,1,0.9,0.7,0.7,1.5,1.7,1.4,1.1]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6259469985961914]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9350957870483398]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.919051170349121]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6705598831176758]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.025126457214355]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.3]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[23.5,24,23.8,23.7,23.9,23.9,23.8,23.7,23.9,23.9,24.1,24.1,23.7,23.8,24.1],"script":[1.8,1.9,1.8,1.9,1.9,1.9,1.8,1.8,1.9,1.9,1.9,1.9,1.9,1.9,1.9],"paint":[21.3,21.8,21.6,21.5,21.6,21.6,21.6,21.5,21.5,21.5,21.9,21.7,21.5,21.6,21.8]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[26.6,26,26.4,26.6,26,26.1,26.2,26.7,26.4,26.7,26.7,26.3,26.7,26.3,26.1],"script":[3.7,3.8,3.7,3.9,3.7,3.7,3.7,3.8,3.6,3.7,3.8,3.8,3.9,3.7,3.7],"paint":[22.5,21.8,22.3,22.3,21.8,22,22.1,22.4,22.4,22.6,22.5,22.1,22.4,22.2,21.9]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,10.4,9.9,9.6,11.3,10.2,9.8,10,10.7,10.3,10.5,10.2,10.7,9.8,10],"script":[1.2,0.5,0.1,0.1,0.1,0.6,0.1,0.1,0.9,0.4,0.8,0.9,1.1,0.1,0.1],"paint":[8.3,8.3,8.8,8.3,9.6,8.2,8.8,8.3,8,8.9,8.5,8.2,8.2,8.6,8.9]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.6,2.5,1.9,1.6,2.1,1.5,2.3,2.7,2.6,1.6,2.1,2.7,2.3,2.2,2.5,2,2.8,3.3,3.1,2.4,2,2.1,2.4,1.9],"script":[0,0.9,0,0,0,0.6,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0.7,0.7,0,0,0,0.4,0],"paint":[2.5,1.6,1.3,0.9,1,1.4,1.3,1.8,2.4,2.5,1.4,1.9,2.5,1.8,2,1.4,1.8,1.8,1.4,2,2.1,1.9,2,1.9,1.1]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[12.3,12.4,12.8,12.4,12.1,12.7,12.7,12.7,12.4,11.5,13.2,12.3,12.9,12.1,13.2],"script":[0.2,0.3,0,0,0,0.1,0.9,0,0.1,0.1,0.6,0,0.1,0.1,0.1],"paint":[11.4,10.7,11.7,10.9,11,10.9,11,11.7,11.3,10.3,12,11.6,11.6,11,12]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.9,10.3,10.3,9.9,10.1,10.1,10.3,10.1,10.2,10.2,10.3,10.3,10.1,9.8],"script":[0.2,0.1,0.3,0.1,0,0.1,0.1,0.4,0.2,0.1,0.1,0.3,0.1,0.1,0.1],"paint":[9.3,10,9.4,9.7,9.3,9.6,9.7,9,9.3,9.6,9.6,9.1,9.5,9.5,9.5]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[247.5,249,247.4,247.2,249.6,247.7,247.3,248.8,249.3,248.9,249.5,249,250.2,248.5,248.7],"script":[17.8,17.9,17.9,17.8,18.3,17.4,17.9,18.4,18.6,17.8,18.4,17.9,18.3,18.5,18.2],"paint":[222.5,224,222.2,222.3,224.1,222.9,222.3,222.9,223.6,223.9,223.9,223.9,224.8,222.9,223.4]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.7,27.3,27,27.8,27.6,28.8,28,30.5,27.4,27.4,27.3,27.9,27.3,27.8,27.8],"script":[1.9,1.8,1.8,1.8,1.8,1.8,1.8,2.2,1.8,1.8,1.8,1.8,1.8,1.9,1.9],"paint":[25.1,24.8,24.5,25.3,25.1,26.3,25.4,27.5,24.8,24.8,24.8,25.3,24.8,25.2,25.2]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,8.8,8.8,8.6,8.6,9.4,9.1,9.7,8.9,9.2,8.6,8.4,9.1,9.3,9.3],"script":[6.8,7,7.3,6.7,7,7,8,7.1,7.2,7.2,7.1,6.5,6.9,7.4,7.3],"paint":[1.3,0.9,0.7,0.2,1,0.9,0.9,1.5,1,1.2,0.7,0.3,1.1,0.9,0.9]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6155729293823242]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8904695510864258]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9163751602172852]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.659876823425293]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.011741638183594]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.4]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"doohtml-lite-keyed","benchmark":"01_run1k","values":{"total":[24,23.6,23.6,23.4,23.3,23.5,23.8,23.4,23.8,23.4,23.7,23.5,23.7,23.9,23.7],"script":[1.6,1.6,1.6,1.6,1.6,1.7,1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[22,21.6,21.6,21.5,21.3,21.5,21.8,21.4,21.8,21.4,21.7,21.5,21.7,21.8,21.7]}},{"framework":"doohtml-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.1,26.3,25.8,26.1,26.1,26.4,26.8,26.4,26.2,26.6,26.2,26.2,26.1,26.5,25.9],"script":[3.4,3.5,3.4,3.4,3.4,3.5,3.6,3.5,3.4,3.6,3.5,3.4,3.5,3.6,3.4],"paint":[22.3,22.4,22,22.2,22.3,22.5,22.8,22.5,22.4,22.6,22.3,22.4,22.2,22.5,22]}},{"framework":"doohtml-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,10.8,10.3,10.8,10.5,10.6,11.6,10.9,11.4,10.4,10.7,10.7,10.6,10.3,9.6],"script":[0.5,0.9,0.1,0.5,0.5,0.6,0.5,0.8,0.1,0.1,0.1,0.6,0.7,0.1,0.1],"paint":[8.1,8.7,9,9.3,9,9,9.4,8.6,9.4,8,9.7,8.2,8.9,9.1,8.5]}},{"framework":"doohtml-lite-keyed","benchmark":"04_select1k","values":{"total":[2.2,2.1,2.1,2.8,2.7,2.2,1.5,2.6,2.5,2.6,1.5,2.4,2.2,1.8,3.4,2.6,1.9,1.9,1.9,1.9,2.6,3,2.3,2.6,2.9],"script":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.7,1],"paint":[1.6,1.1,1.9,1.8,2.1,2,1.3,1.7,1.4,1.6,0.9,1.5,1.5,0.9,1.3,2.1,1,1.1,1.1,1.5,1.8,0.4,1.7,1.8,1]}},{"framework":"doohtml-lite-keyed","benchmark":"05_swap1k","values":{"total":[12.7,12.9,13.4,12.6,13.1,12.1,12.5,12.5,12.3,13.4,12.7,12.5,12.3,12.7,12.8],"script":[0.1,0.1,0.7,0.1,0.8,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1],"paint":[11.5,11.7,11.4,11.4,11.2,11.1,11.4,11.5,10.7,11.2,11.7,11,11.2,11.4,12.1]}},{"framework":"doohtml-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.4,10.4,9.9,10.3,9.9,10.3,10.3,10.2,10.1,10.1,10,9.9,10.6,10.2],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0,0.1,0.2,0.1],"paint":[9.6,9.7,9.7,9.2,9.3,9.5,9.6,9.5,9.6,9.3,9.4,9.1,8.8,9.8,9.5]}},{"framework":"doohtml-lite-keyed","benchmark":"07_create10k","values":{"total":[246.8,248.5,250.1,247.1,246.2,247.6,247.3,247.6,247.3,247.3,244.8,247.7,247.1,250.4,247.8],"script":[16,16.5,16.4,16.2,16.4,16.4,16.5,16.1,16.6,16.3,16.3,16.6,16.2,16.5,16.3],"paint":[223.4,223.9,226.2,223.6,222.7,223.9,223.6,224,222.8,223.9,221.3,223.7,223.7,226.3,224.3]}},{"framework":"doohtml-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.5,27.4,27.7,27.4,27.4,27.4,26.9,28.1,27.2,27.7,27.6,27.8,27.9,27.6],"script":[1.6,1.6,1.7,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6,1.6],"paint":[25.1,25.1,25,25.3,25,25,25,24.6,25.7,24.8,25.3,25.2,25.4,25.6,25.3]}},{"framework":"doohtml-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.8,9.1,8.8,9.2,9.6,9.1,9.1,9.2,8.7,8.8,9.4,9.6,9.6,9.5,9.5],"script":[6.7,6.7,6.8,7.3,7.7,7,7.4,7.4,6.7,7.2,7.5,7.5,7.3,7.6,7.5],"paint":[1.3,1.8,0.9,1.5,0.6,1.9,1.2,0.6,1.4,0.3,0.3,1,2.1,0.8,1.8]}},{"framework":"doohtml-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5995111465454102]}},{"framework":"doohtml-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9950637817382812]}},{"framework":"doohtml-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0396852493286133]}},{"framework":"doohtml-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6799840927124023]}},{"framework":"doohtml-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.508091926574707]}},{"framework":"doohtml-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"doohtml-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7]}},{"framework":"doohtml-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[33,33.9,33.6,33.9,34,33,32.8,32.9,33.6,33.4,34.3,33.7,33.7,33.2,33.7],"script":[10.7,11.1,10,11.5,11.5,10.2,10.4,10.1,11.2,10.6,11.7,9.9,10.2,10.3,10],"paint":[21.8,22.3,23.1,21.8,22,22.2,21.8,22.2,21.8,22.2,22,23.2,23,22.3,23.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[36.3,37.1,36.5,36.2,36.8,36.8,37.1,36.9,36.8,36.7,37.5,36.6,36.9,36.4,36.7],"script":[13.1,13.6,13.1,13,13.6,13.3,13.4,13.5,13.4,13.2,13.7,13.2,13.3,13.3,13.3],"paint":[22.6,22.9,22.8,22.6,22.7,22.9,23.2,22.9,22.8,22.9,23.2,22.8,23.1,22.5,22.8]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,11,11,10.7,11.6,10.4,9.7,11.1,10.8,11.3,11.8,10.7,10.8,10.4,10.7],"script":[0.8,0.7,0.1,0.6,0.2,0.9,0.6,0.6,0.7,0.8,0.8,0.8,0.6,1,0.6],"paint":[8.2,9.1,9.4,9.2,10.5,8.5,8.2,8.9,9.1,9.3,10,9.3,9.3,8,9.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.2,1.8,2.4,2.8,2,1.7,2.5,2.1,3.1,2.1,1.9,2.6,2.2,2.4,2.3,2.3,2.5,2.2,2.2,2.4,2.7,2.5,2.2],"script":[0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,1,0.1,0.1,0.1,0.1,0.5,0.1,0.5,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[2.1,1.9,1.4,1.6,1.7,2.6,1,1.5,2.3,1.6,2,2,1,1.7,2.1,1,1.1,1.2,0.8,1.1,0.9,2,1.3,1.2,2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,14.2,12.7,14.2,13.9,12.3,13.1,13,13.2,13.6,12.7,13.3,13.1,12.9],"script":[0.6,0.9,0.8,0.5,0.1,0.1,0.1,0.9,0.1,0.3,0.8,0.1,0.1,0.1,0.1],"paint":[11.8,11.3,12.5,10.6,11.7,12.9,10.7,11.2,11.8,11.8,10.9,12.3,11.7,12,11.2]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.2,10.7,10.4,10.4,10.3,10.2,9.9,10.2,10.7,10.2,10.3,10.4,10.2,10.5],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.2,0.1,0.1,0.1,0.3,0.1],"paint":[9.4,9.6,10.1,9.5,9.4,9.4,9.6,9.1,9.6,9.8,9.6,9.2,9.5,8.8,9.4]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[328.2,325.8,325,327.1,328.5,325,325.7,325.9,329.9,326.8,329.2,327.1,325.7,328.9,327.6],"script":[103.5,101.2,101.9,101.8,104.5,101.2,102.6,101.7,100.5,101,100.4,100.4,100.6,100.9,101.7],"paint":[217,217.4,215.7,217.9,216.8,216.5,215.9,217,222.1,218.6,221.5,219.5,217.9,220.7,218.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,36.7,38,37.8,36.7,37.3,36.6,37.7,37.2,37.2,37.5,37.3,37.3,37.7,37.6],"script":[10.3,9.8,10.4,10.2,9.4,10,9.7,10.3,10,10,10.3,10,10,9.8,10.1],"paint":[26.3,25.9,26.6,26.6,26.2,26.4,25.9,26.4,26.2,26.3,26.2,26.3,26.3,26.8,26.6]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,13.4,14.4,13.5,14.2,12.9,14.1,13,13.9,14.5,14.6,14,12.9,13.9,13.6],"script":[11.1,11,12.6,11.5,12.1,11.6,11.3,11.4,11.7,12.4,12.8,12.1,11,11.7,11.2],"paint":[1.7,1.2,0.8,1.6,0.9,0.8,1.3,0.3,0.7,1.3,1,0.5,1.3,1.4,0.9]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6594076156616211]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.6918230056762695]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.681046485900879]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.913792610168457]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.75600814819336]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[32.8,31.6,32.4,31,32.4,34.4,30.4,32.3,31.1,31.9,32.9,30.5,34,35,32.9],"script":[5.6,6.1,5.7,6,5.6,5.9,6.1,6,6.1,5.7,6,5.9,5.8,6,6.1],"paint":[21.2,21.5,21.5,21.9,21.6,21.4,21.7,21.4,21.5,22,21.4,22.2,21.4,21.5,21.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[35.6,36.4,31.5,36.9,37,37.7,36.2,35.8,38.5,38.5,37.7,31.4,36.1,31.1,36.3],"script":[8,7.8,8.3,8.3,8.2,8.3,7.8,7.7,8.3,8.2,8.3,8,8,8.2,8.4],"paint":[22.5,22.2,22.6,22,22.3,22.1,22.3,22.1,22.1,22,22.2,22,21.9,22.4,22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.8,12.5,14.9,13.2,28.6,29.4,13.4,14.8,31.4,14.3,15.8,13.2,31.4,13.1,13.4],"script":[2.3,2.4,1.8,2.9,2.5,2.9,2.7,2.8,4,2.5,3.3,2.2,2.4,2.3,2.4],"paint":[10.3,8.7,9.7,9.6,9.4,10.6,9.8,9.2,10.1,9.2,11,10.7,12.5,9,9.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[9,5.3,8.3,9.9,3.4,6.7,6.7,5.1,9,6.7,7.7,5.2,6.8,7.1,5.5,8.2,11.8,9,8.9,3.6,7.7,6.7,7.7,3.1,4.7],"script":[0.7,0.9,1.4,1.9,1.1,0.8,0.3,1.5,1.4,0.3,0.6,1,0.3,0.9,1.2,0.3,0.4,1.4,0.4,1,1.5,1.1,1.9,0.9,1.1],"paint":[2.4,1.7,1.5,1.5,1.9,1.9,1.3,1.8,1.6,2.1,2,1.2,1.4,2.7,1.5,2.6,1.9,1.3,2.5,2.5,2.2,1.8,1.8,2,2.1]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[30.4,15.3,14.9,15.7,15.9,30.7,15,30.1,14.9,15.1,14.6,13.8,30,16.6,29.3],"script":[1.5,0.9,1.3,1,1.2,1.1,0.3,1.5,0.9,1,1.3,1.3,1.9,1.6,1],"paint":[13.4,11.1,11.6,12.1,13.1,12.5,12.6,11.5,12.2,12,10.7,11.9,12.1,13,13]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,15.9,12.3,15.3,12.5,11.5,13.3,11.6,13.4,17.5,11.7,13,11.7,14,15.1],"script":[0.6,0.6,0.6,0.4,1.3,0.9,0.6,0.6,0.6,0.5,0.6,0.6,0.3,0.7,0.6],"paint":[10.4,10,10.3,10.6,10.8,10.2,10.3,10.3,10.5,10.5,10.2,10.5,10.5,10,10.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[720.8,290.6,285.3,284.5,730.2,717.4,294.5,290.4,718.4,718.8,284.3,292.4,717.3,284.2,285.2],"script":[62.4,61.7,62.7,63.1,61.7,64,63.8,61.4,63.1,61.4,61.4,63.6,60.6,61.8,63.1],"paint":[219.8,214.2,214.6,213.3,222.4,221.1,217.7,216.2,222.9,221.3,214.5,219.1,219.5,214.3,213.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.6,33.4,37.4,32.4,38.1,37.8,33.3,33.3,38.8,37.6,33.3,38.1,37.6,37.8,33.5],"script":[6.4,6.5,6.2,6.2,6.5,6.6,6.6,6.6,6.5,6.5,6.5,6.5,6.3,6.4,6.6],"paint":[25.3,26,25.2,25.3,25.5,25.2,25.8,25.8,24.9,25.1,25.9,25.7,25.3,25.5,25.9]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31,31.2,30.7,31.4,30.8,34.1,10.5,30.9,31.6,32.1,11.3,12,10.2,10.4,32.4],"script":[8.6,8.9,8.2,8.2,7.8,10.6,8.4,8.2,8.3,8.6,8.2,8.5,8.5,8.5,9.5],"paint":[1.5,1.6,0.3,0.3,2.2,2.2,0.7,0.8,2.3,1.3,0.3,1.2,0.3,1,0.3]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6522407531738281]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6669139862060547]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6915035247802734]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0234966278076172]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.142183303833008]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"01_run1k","values":{"total":[48.2,47.1,48.9,47.2,48.1,49.2,48.7,48.7,48.4,48.2,48.1,48.9,48.7,47.7,48.2],"script":[25.8,25.4,26.8,25.4,26.3,27.1,26.5,26.4,26.2,26.6,26.1,26.7,26.6,25.8,26.3],"paint":[21.9,21.3,21.7,21.4,21.3,21.7,21.8,21.8,21.9,21.2,21.6,21.8,21.8,21.5,21.6]}},{"framework":"ember-v6.4.0-keyed","benchmark":"02_replace1k","values":{"total":[64.9,65,64.7,63.8,65.5,65.1,65.5,65.1,65.2,65,64.1,65.6,65,65.1,64.9],"script":[41.4,41.6,41.1,40.1,41.8,41.2,41.7,41.2,41.8,41.4,40.6,41.6,41.5,41.6,41.5],"paint":[23.1,22.9,23.2,23.3,23.2,23.4,23.4,23.5,23,23.1,23,23.5,23,23,22.9]}},{"framework":"ember-v6.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.6,20.4,20.2,22.5,20.7,19.5,20.1,19.1,20.6,19.3,20.3,20.7,20.4,21.5,20.1],"script":[8.4,8,7.6,8.9,8.3,9,8.7,7.7,9.1,8.5,8.5,8,8.6,8.8,8.3],"paint":[10.2,10.9,11.9,12,11.4,9.1,9.4,9.9,10.4,9.1,10.2,11.7,10.2,11.5,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,16.5,14.3,15.1,15.5,16.4,14.1,15.4,14.9,15.6,15.7,15.8,16.3,15,15,15.4,15.3,15.2,14.9,14.5,15.2,15.3,15.4,15.9,15.5],"script":[12.5,14,11.8,12,12.5,12.8,12,12.2,12.4,12.1,12.6,12.8,13.1,12.4,12.2,11.9,12.7,12.2,12,12.1,12,11.9,12,12.6,11.6],"paint":[1.7,2.2,1.9,2.3,2.2,2.6,1.1,2.4,1.7,2.8,1.6,2,2,1.3,2.1,3.3,1.6,2.8,1.8,1.2,2.3,2.9,2.9,2.6,3.1]}},{"framework":"ember-v6.4.0-keyed","benchmark":"05_swap1k","values":{"total":[23.9,24.7,24.2,24.7,23.7,24.3,22.1,26.7,24.4,22.8,23.7,23.8,23.6,25,24.4],"script":[8.7,9,8.9,8.8,7.6,9,8.8,9.1,8.3,7.9,8.3,8.6,8.3,8.6,8.8],"paint":[13.2,14.7,13.4,14.9,14.5,14.5,12.1,16.3,14.3,13.8,14.3,13.9,13.6,15.7,14.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.9,16.3,16.3,15.8,15.8,16.4,16.6,16.2,16.4,16.4,17,17,16.3,15.9,16.4],"script":[5.4,5.4,5.1,5.4,5.4,5,5.4,5.2,5.5,5.4,5.5,5.5,5.4,5.3,5.4],"paint":[10.8,10.6,10.6,9.5,9.5,10.1,10.5,10.1,10.4,10.3,10.7,10.6,10.4,9.6,10.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"07_create10k","values":{"total":[427.8,426.3,427,427.7,426.4,428.4,428.4,427,428.1,428.6,431.8,427.9,427.3,430.9,425.5],"script":[196.7,195.2,195.9,196.9,194.2,197,197.1,195.3,196.6,197.9,201.6,196.6,195.1,198.1,194.1],"paint":[224,223.9,223.9,223.5,224.9,224.2,224.3,224.7,224.2,223.6,223.2,224,225.1,225.5,224.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.9,60.2,60.7,60.2,61.2,61.7,60.7,60,60.5,60.7,60.8,60.7,60.4,60,60],"script":[33.9,33.4,33.5,33.1,34.1,34.1,33.5,33.2,33.4,34,33.9,33.9,33.5,33.1,33.2],"paint":[26.1,25.9,26.3,26.2,26.2,26.7,26.2,26,26.2,25.9,26,26,26.1,26,26]}},{"framework":"ember-v6.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.2,22.3,24.8,22,22.5,21.9,22.7,23.3,22,23.2,22,21.9,23.1,22.4,22.1],"script":[20.9,20,23.2,20.7,21.3,20.2,20.7,21.6,20.1,21.9,20.9,20,21,20.6,20.4],"paint":[1.2,2,0.7,1.2,0.3,1.6,1.5,1.6,1.7,0.6,0.4,1.1,1.6,0.6,1.7]}},{"framework":"ember-v6.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.27157211303711]}},{"framework":"ember-v6.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[14.21378231048584]}},{"framework":"ember-v6.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.169471740722656]}},{"framework":"ember-v6.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.093180656433105]}},{"framework":"ember-v6.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.913761138916016]}},{"framework":"ember-v6.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[1109.4]}},{"framework":"ember-v6.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[223.3]}},{"framework":"ember-v6.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[992.4]}},{"framework":"endr-v0.2.1-keyed","benchmark":"01_run1k","values":{"total":[29,29.3,29.1,29.5,28.5,29,29,29,28.9,29.2,29.4,29.2,28.9,31.5,29],"script":[6.3,6.3,6.5,6.5,6.3,6.4,6.5,6.4,6.4,6.5,6.7,6.6,6.5,6.6,6.5],"paint":[22.1,22.4,22.1,22.4,21.6,22,22,22.1,21.9,22.2,22.1,22.1,21.9,24.3,21.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"02_replace1k","values":{"total":[31.5,31.4,31.7,31.9,31.5,32,31.8,31.6,31.8,31.4,31.9,33.1,32.2,31.5,32.1],"script":[8.5,8.4,8.7,8.7,8.7,8.8,8.7,8.9,8.7,8.7,8.7,9.1,8.8,8.7,8.7],"paint":[22.4,22.4,22.4,22.7,22.2,22.6,22.6,22.1,22.5,22.1,22.6,23.4,22.8,22.2,22.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.9,12.6,13.9,13.2,14.2,18.2,13.9,13.7,13.9,13.8,13.5,14.3,13.5,13.1],"script":[2.5,3.3,2.4,2.8,3,3.1,3.3,3,3.6,3,3.2,2.8,3.5,2.6,2.9],"paint":[10.3,9.6,9,10.1,8.9,10.2,12.8,9.5,8.3,9.6,8.7,9.4,9.1,10,8.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4,3.6,3.4,3.5,3.8,3.3,3.1,3.7,4.3,3.4,3.1,4.3,3.9,3.6,3.9,3.3,3.3,3.5,3.4,3.7,3.9,3.7,3.3,3.7],"script":[1.9,1.4,1.5,0.9,1.4,1,1,1,1.5,1.8,1,0.7,1.9,2.2,1.3,1.7,1.5,0.7,1.4,1.6,1.2,1.4,1.7,0.7,0.9],"paint":[1.7,2,1.5,1.4,1.4,2.2,1.8,1.3,2,2.3,1.6,1.8,2.2,1.6,2.1,1.5,1.3,1,1.2,1.3,1.4,1.6,1.2,2.5,1.8]}},{"framework":"endr-v0.2.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,16.7,13.8,14.2,13.5,14.2,14.2,14.6,13.4,15.2,15.8,14.1,14.9,14.9,14.5],"script":[0.7,1,0.9,1.1,0.9,0.9,1.1,1.1,0.9,1.3,0.3,0.6,0.9,1.1,1.2],"paint":[12.2,14.7,11.8,11.9,11.7,12.1,11.4,12.9,11.6,12.2,14.3,12,12.6,12.4,12]}},{"framework":"endr-v0.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.9,11,11.3,11.4,10.9,10.9,10.8,11.6,10.6,10.9,10.8,11,11],"script":[0.6,0.6,0.6,0.7,0.7,1,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.6],"paint":[9.5,9.1,10.6,9.7,9.5,9.6,9.6,9.3,9.3,10.3,9.3,9.4,9.7,9.5,9.9]}},{"framework":"endr-v0.2.1-keyed","benchmark":"07_create10k","values":{"total":[295.1,297.3,298.1,301,298.2,299,300.2,299.6,299.6,300.1,297.6,299.7,302.6,302.7,300.1],"script":[68.3,68.6,69.3,70.2,69.6,69.8,70.1,69.7,71,70.4,68.9,69.6,70,71.2,69.4],"paint":[218.7,220.7,220.5,222.5,220.6,221,221.8,221.7,220.4,221.3,220.5,222,224.4,222.8,222.7]}},{"framework":"endr-v0.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,34.9,34.3,33.6,33.9,33.7,33.5,34.4,34,34.2,34,33.2,34.1,33.9,33.9],"script":[7.1,7.1,7.1,6.7,6.9,6.5,6.9,7.4,7.1,6.8,6.9,6.5,6.7,6.9,6.7],"paint":[25.8,26.8,26.3,25.9,26.1,26.2,25.7,26.1,26,26.4,26.2,25.8,26.4,26.2,26.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,11.9,12.8,12.5,11.9,12,12.8,12.8,10.3,12.5,14.3,12.2,11.5,11.5,11.6],"script":[11.3,9.7,10.9,10.5,10.3,10.6,10.4,10.5,8.6,10.3,11.8,10.3,9.7,9.8,10.1],"paint":[1.4,0.7,1.4,1.8,0.7,0.9,1.4,1.1,0.7,1.5,1.6,1,0.4,1.1,0.3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5984573364257812]}},{"framework":"endr-v0.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.399202346801758]}},{"framework":"endr-v0.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.4502687454223633]}},{"framework":"endr-v0.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6829929351806641]}},{"framework":"endr-v0.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.966672897338867]}},{"framework":"endr-v0.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.5]}},{"framework":"endr-v0.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"endr-v0.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"01_run1k","values":{"total":[29.6,30,29.9,29.9,30.1,30,30.5,30.1,29.7,29.5,30.2,30.2,29.9,30.5,30.8],"script":[6.7,6.8,6.7,6.8,6.9,6.8,7,7,6.7,6.7,6.8,7.1,6.7,6.8,6.8],"paint":[22.4,22.6,22.6,22.6,22.7,22.6,23,22.6,22.4,22.3,22.8,22.6,22.6,23.1,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34.4,34.9,34.5,34.9,35.7,34.2,34.7,35.2,35.3,35.2,35.2,34.4,35.6,34.7],"script":[10.5,10.4,10.6,10.4,10.7,10.9,10.2,10.7,10.8,10.9,10.7,10.7,10.6,10.8,10.7],"paint":[22.9,23.4,23.7,23.5,23.7,24.1,23.4,23.4,23.8,23.8,23.9,24,23.4,24.2,23.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,11.5,11.9,12.2,11.6,11.1,13,11.7,11.6,11.6,12,12.4,11.9,12.5,11.5],"script":[1.1,1.3,0.2,1.2,0.6,0.2,1,0.8,0.9,0.2,0.9,1.3,0.6,1.1,0.6],"paint":[10.4,8.7,10.7,9.5,9.1,9.6,10.9,9.7,9.4,9.9,9.4,9.8,10.3,9.7,9.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"04_select1k","values":{"total":[5.2,1.7,2.7,2.5,2.6,2.2,1.8,2.3,2.2,2.8,2.5,2.3,2.6,1.9,2.5,2.7,2.4,2.4,2.7,2.2,2.3,2.7,2.6,2.3,2.6],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.9,0,0,0],"paint":[1.8,0.7,2.5,2.3,1.6,2,1.3,2.2,1.1,2.1,1.7,1.4,2,1,1.7,2.2,1,1.7,1.6,2,1.1,1.3,2.5,1.3,1.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.1,14.7,14.9,14.7,15.5,14.3,15.2,14.8,15,14.5,14.9,15.3,14.9,15.5],"script":[1.5,0.6,0.7,1.3,0.9,1.8,0.9,1.4,1.1,0.9,0.7,1.2,0.9,1.3,1.4],"paint":[13.3,13.5,13,11.8,12.6,12.4,12.2,12.4,12.7,12.8,12.5,11.8,12.1,12.1,12.9]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.2,11.5,10.9,11,11.2,11.5,11.4,11.2,10.9,11.2,11,11.3,12.1,11],"script":[0.6,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.6],"paint":[10.5,9.9,10.3,9.5,10,10.1,10.4,10.3,10.3,10,9.8,9.2,10.2,10.6,9.8]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"07_create10k","values":{"total":[316.6,316,315.9,317.9,315.5,313.6,315.6,317.9,315.1,316.9,314,321.3,315.3,318.8,315.8],"script":[78.3,78,78.1,78.4,78,77.4,78.6,78.3,78,77.6,77.8,77.3,79.1,78.2,78.3],"paint":[230.3,229.9,229.9,231.3,229.7,228.3,229.1,231.2,229.1,231.5,228.4,235.2,228.4,231.9,229.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.6,36.3,36,36.6,36.3,36.3,37.1,36.7,36.3,36.8,36.3,36.6,38.1,36.6],"script":[7.4,7.4,7,7,7,7.1,7.1,7.5,7.5,7,7.1,7,7.1,7.5,7.1],"paint":[28.6,29.1,28.3,28.1,28.6,28.3,28.2,28.7,28.2,28.3,28.6,28.3,28.5,29.6,28.5]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.5,9.8,9.5,9.8,10.7,9.6,9.9,9.8,9.4,9.4,9.8,9.4,9.3,9.4],"script":[7.3,7.5,7.9,7.7,7,8.2,7.4,7.5,7.5,6.9,7.4,8,7.5,7.7,7.9],"paint":[1,1.8,0.3,0.6,2.5,1.3,1.9,1.4,1.3,2.2,1.2,0.4,0.2,0.7,0.6]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5856914520263672]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0971603393554688]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0983171463012695]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7394895553588867]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.766292572021484]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"fntags-v0.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"01_run1k","values":{"total":[37.6,34.9,44.7,30.9,32.1,31.8,35.7,33.1,32.6,37.6,30.8,30.4,35.5,30.6,37],"script":[8.1,8.4,8.2,8,8.1,8.2,8.1,8.4,8.3,8.3,8.4,8.4,8.3,8.1,8.2],"paint":[21.3,21.4,21.1,21.5,21.8,21.7,21.6,21.3,21.6,21.3,21.4,21.7,21,21.6,21.7]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"02_replace1k","values":{"total":[41.4,35.5,35.4,35.7,35.4,35.7,36.2,36.4,38.5,37.8,40.5,38.9,36.9,36.8,37],"script":[12.5,12.7,12.7,12.6,12.6,12.4,12.7,12.6,12.4,12.7,12.3,12.8,12.5,12.5,12.5],"paint":[22.4,22.3,22.2,22.4,22.2,22.7,22.4,22.2,22.1,22.5,22.9,22.3,22.3,22.1,22]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.8,49.2,46.5,17.3,17.3,47.7,18.7,16.9,46.3,48.8,46.8,49.5,17.6,17.2,17.5],"script":[4.4,4.2,4.1,4.4,4.4,4.4,4.8,3.6,5,4.1,4.4,6.3,4.6,4.3,3.8],"paint":[12,13,11.2,11.2,11.5,10.7,12.3,11.4,10.5,12.1,11.1,12.2,10.6,12.7,11.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"04_select1k","values":{"total":[6.6,12,9.3,6.3,12,7.4,6.5,9.4,11.3,5.7,10.6,6.8,7.2,10.4,12.1,8,8.7,10.8,8.5,12.5,8.7,6.7,6.8,7.2,7.3],"script":[2.5,2.8,2.2,2.5,2.4,3.2,3.6,2.9,2.4,2,2.3,2.4,2.6,2.6,1.9,2.6,2.4,3,2.7,3.3,2.7,3.4,3.1,3.4,2.6],"paint":[2.9,3.8,3.4,3.3,3.5,2.4,3.2,3,3.6,1.7,2.9,2.4,3.7,3.9,3.5,2.6,1.8,3.6,3.3,1.8,3.1,2.4,2.7,2.9,2.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"05_swap1k","values":{"total":[48.9,49.3,52.9,48.6,50,48,19,50.2,48.8,50.8,17.1,49,50.2,48.5,18.5],"script":[2.8,2,2.7,2.1,2.5,2,2.5,3.2,2,2.6,1.9,2.1,2.5,2.5,2.3],"paint":[14.4,15.4,16.2,15,14.7,14.8,15.4,14.8,13.4,14.8,13.3,14,15,12.7,14.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,17.5,17.5,15.2,13.9,15.1,14.6,16,16.1,16.4,16.4,13.9,12.2,13.5,14.4],"script":[5.2,5.1,5.2,5.5,5.5,5.1,5.4,5.1,5.4,5.9,5.5,5.5,5,5.5,5.4],"paint":[10.4,10.2,10.9,10.8,11.2,11.2,11,11.3,10.8,11.4,11.4,11.3,10,11.5,11.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"07_create10k","values":{"total":[300,297.9,301.4,295.3,301.5,295.6,298.8,304.9,297.8,296.3,293.7,299.6,297.1,297.3,294.2],"script":[84.9,84.5,86.2,87,82.8,84.9,83.8,84.1,84.2,87,85.5,85.8,88,82.3,83.9],"paint":[201.7,206.3,205.5,203,205.6,204.3,205.3,209.5,202.5,203.9,203.1,203.1,203.2,207,205.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44,36.6,43.2,36.5,36.1,44.4,44.4,44.5,44,36.1,36.6,45.2,44.4,44.3,36.6],"script":[9.5,9.8,9.2,9.7,9.8,9.1,9.5,9.4,9.4,9.8,9.8,9.7,9.4,9.3,9.6],"paint":[25.5,26.3,25,26.3,25.8,25.3,25.8,25.8,25.6,25.8,26.3,26,25.8,25.9,26.6]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.1,13.2,12.3,12,12.7,12.8,11.6,11.3,12.3,13.3,12.2,12.2,11.3,45.9,12.2],"script":[8.5,8.7,9,9,8.1,8.6,8.5,7.1,9,8.5,8.3,8,8.1,9.2,9],"paint":[1.8,1.6,3,2,2.5,1.4,2.4,1.6,2,2.3,2.7,2.7,2.9,2.1,2.2]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6613597869873047]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.632147789001465]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.6517791748046875]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9440460205078125]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.451199531555176]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"frei-hooks-v1.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.4]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[57,53,54.3,55.6,53.6,52.6,56.6,55.8,52.7,55.6,55.7,54.2,55,57.4,56],"script":[30.1,30.2,30.3,30.7,29.9,30.1,30.6,30,29.6,30.4,30.9,30.6,30.2,30.7,30.6],"paint":[22,21.8,21.6,22.2,22,21.5,22.1,22.3,21.8,21.6,21.7,21.6,22.5,21.6,21.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[70.7,66.1,65.9,64.1,65.1,63.4,64.8,66.7,69.2,67.1,66.6,67.8,65.4,65.1,66.2],"script":[39.9,40.1,39.7,40.5,39.4,39.7,39.9,39.6,40.3,40.8,39.4,39.9,40.5,40.3,39.7],"paint":[23,23.2,23.3,23.1,23.6,23.4,23.5,23.6,23.3,23.3,23.1,23.1,23.1,23.5,23.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,34.9,35.2,34.5,35.4,18.1,36.6,36.5,34.5,37.9,36.3,36.7,35.9,35.1,36],"script":[4.5,4.7,4.8,4.5,4.5,5.2,5.8,4.1,4.3,4.3,4.7,5.1,4.8,5.3,3.6],"paint":[13.1,12.5,11.9,13.4,13.1,12.1,12.2,13.6,11.8,11.5,13.7,13,13.3,12.4,14.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22,19.5,20,17.4,20.1,16.7,20.8,17.3,18.8,19.8,19.1,16.9,16.9,18.6,18,17.1,21.1,20,17.5,19.4,19.9,17.7,22.7,17.4,18.9],"script":[13.7,13.1,13.6,12.9,12.5,12.2,13,13.5,12.6,13.3,13.5,12.4,13,13.3,12.9,12.8,12.9,12.2,12.3,12.6,12.9,13.1,13.6,13.8,13.4],"paint":[2.9,3,4,2.7,3.3,3.2,3.4,2.5,3.8,2.8,4,2.7,2.9,4.2,3.6,3.3,3.5,3.3,2.7,2.9,3,2.9,2.8,2.9,3]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[39,40.1,38.9,37.9,37,22.4,36.8,40,40.8,38.7,38.9,38.9,19.5,37.9,37.2],"script":[5.2,4.3,4.4,4.6,4.3,4.8,4.7,4.7,4.6,4.4,4.3,4.7,4.9,4.7,4.5],"paint":[15.7,14.4,15.5,15.2,15,14.5,15,15.2,14.9,16.2,15.3,15.9,13.6,14.5,15.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.7,21.7,20.4,20.4,20.3,21.4,23.1,22,22,22.5,20.1,19.9,20,19.9,23.1],"script":[7.9,7.9,8,7.7,8.3,7.8,8,7.9,7.9,7.9,7.7,7.5,7.7,7.7,8.1],"paint":[10.9,11.2,11.3,11.7,11.5,11.8,11.4,11.4,11.7,11.6,11.8,11.6,11.5,11.3,12.2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[426,424.4,424.8,421.6,423.4,423.2,425.7,423.9,428.6,425.2,423.3,440.8,425.6,426.6,425.1],"script":[198.4,197.6,197.9,195.6,196.2,196.5,198,196.9,198.9,195.8,197.2,211.4,199.5,198.6,197.6],"paint":[224.3,223.4,223.2,222.4,223.3,223.4,224.4,223.3,223.4,225.9,222.1,222.1,222.8,224.4,224]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.1,64.5,69.5,66,68.7,62.8,68,62.5,69.5,67.5,66.3,63.1,62.9,65.6,66.1],"script":[36,36.3,35.2,34.2,36.4,35.3,35.7,34.8,36.3,35.6,34.7,35.3,35.6,34.2,34.8],"paint":[26.9,27.7,26.6,26.9,27.3,27,27.3,27.3,27.3,27.1,26.9,27.4,26.8,26.7,26.5]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,23.6,22,21.7,22.1,43.9,23,23.2,46.4,24.2,46.8,22.7,20.7,25.3,23.2],"script":[19.7,19.4,18.8,18.3,19.5,21.1,19.5,19.1,23,19.8,21.4,19.3,18,22,19.2],"paint":[3.2,2.9,1.4,2.3,1.9,3.3,2.9,2,3.1,3.1,3.7,1.8,2.2,2.5,2]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.299428939819336]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.194477081298828]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.205013275146484]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.253968238830566]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.13966941833496]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.4]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"01_run1k","values":{"total":[32.8,32.7,33.1,32.3,32.6,31.7,33,32.2,33.2,32.6,32.5,32.8,32.1,32.1,31.9],"script":[9.9,9.6,10.1,9.6,9.6,9.4,10.1,9.7,10,9.8,9.6,9.8,9.6,9.7,9.7],"paint":[22.3,22.6,22.4,22.2,22.4,21.7,22.4,22,22.7,22.2,22.3,22.5,22,21.9,21.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.1,33.6,34.1,33.9,33.6,34.4,33.3,34,34.1,34.3,34.9,34,34,34.5],"script":[11.3,11.3,11.1,11.2,11.2,11.1,11.5,11,11.4,11.1,11.4,11.7,11.3,11.3,11.2],"paint":[21.7,22.2,21.9,22.4,22.1,21.9,22.3,21.7,22.1,22.4,22.3,22.6,22.1,22.1,22.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,11.8,12.4,12.4,12.4,11.7,12.4,12.4,12.7,13.3,11.7,12.5,13.8,12.5,13.5],"script":[1.3,1.3,1.5,1.5,0.7,1.5,1.2,1.5,2.3,2,1.2,1,1.5,1.4,1.8],"paint":[9.7,9.5,9.9,9.8,10.4,9.4,9.9,9.9,9,10.2,9.7,10.5,10.9,10.5,9.9]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"04_select1k","values":{"total":[4,4.5,4.2,4.8,4.1,4.4,4.5,4.5,4.5,3.6,4.3,3.6,4.6,4.4,4.3,4.3,4.5,4,4.3,4,4.6,4.4,4,4.8,4.6],"script":[2.1,1.8,2.1,2.7,2.4,2.3,1.9,2.1,2.1,1.6,2.4,2,2,2.1,1.9,2.8,1.8,1.6,1.4,2.1,1.9,2.3,2.4,2.4,2.2],"paint":[1,2.5,1.9,2.1,1.6,2,2.5,2.2,1.5,0.9,1.3,1.1,2.2,2.2,2.3,1.3,1.7,2,2.5,1.2,2.6,0.5,1,2,1.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.9,14.3,14.2,14,14,14.5,14.2,14.4,15.2,15.5,14.5,15.4,15.1,13.9],"script":[1.4,1.4,1.1,1,1.3,0.7,1.7,1.3,1.3,0.9,0.3,0.8,1.2,1.5,1],"paint":[12.4,11.9,12,11.8,12.4,12.2,11.6,11.5,12.2,13.3,14.9,12.1,13.2,12.1,12.3]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.1,10.9,10.9,10.5,11.5,10.9,11,10.4,11,10.5,10.8,10.8,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6],"paint":[9.6,9.4,9.3,9.7,9.6,9.3,10.2,9.6,9.4,9.5,9.9,9.6,9.6,9.3,9.7]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"07_create10k","values":{"total":[319.9,320.2,319,320.7,320.7,320.1,314.6,320.7,322,320,319.1,318.3,318.3,320,321.2],"script":[94.5,94.9,95.1,95.8,94.8,95.2,89.2,95.7,95.3,95,94.7,95.8,94.7,94.9,94.8],"paint":[217.6,218.1,216.4,217.4,218.5,217.5,218.3,217.4,219.3,217.6,217.2,215.3,216.3,217.9,218.5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,36.6,37.1,37.2,36.9,37.5,37.3,36.6,36.5,37.1,36.5,36.5,36.9,36.9,36.9],"script":[9.6,9.4,9.6,9.6,9.5,9.6,9.5,9.4,9.3,9.5,9.5,9.6,9.6,9.5,9.3],"paint":[26,26.2,26.5,26.6,26.4,27,26.8,26.3,26.3,26.6,26.1,26,26.4,26.4,26.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.4,12.8,15.3,13.7,13.4,13,13.7,13,12.9,14.1,13.1,13.1,12.5,13.3,13.4],"script":[11.2,11.5,13.1,11.8,11.3,10.8,11.8,10.5,11.1,12.2,11.3,10.9,10.9,11.9,11.8],"paint":[1,0.6,0.7,1,1.9,1.9,0.6,1.4,1.2,1.7,1,1.5,0.2,0.2,1.1]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6014366149902344]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.145123481750488]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.201883316040039]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0667591094970703]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.03434658050537]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5]}},{"framework":"gxt-v0.0.57-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[32.6,32.4,32.6,32.2,32.3,32.5,32.2,32.1,32.2,32,33.3,32.6,32.3,32,32.3],"script":[9.9,9.7,9.6,9.6,9.6,9.9,9.7,9.5,9.7,9.4,10,9.9,9.6,9.6,9.4],"paint":[22.2,22.1,22.4,22.1,22.2,22.1,21.9,22.2,22,22,22.7,22.1,22.1,21.8,22.4]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[38.5,37.2,37.9,37.4,37.3,37.8,37.4,38.5,37.5,38.2,37.5,38,37.3,37.4,38.1],"script":[14.3,13.7,14.3,14.4,14.1,14.3,14.2,14.4,14.1,14.3,14.5,14.5,14,14.4,14.6],"paint":[23.5,22.9,22.9,22.5,22.7,23,22.7,23.6,22.8,23.3,22.4,22.9,22.7,22.4,22.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.3,19.5,22,18.9,18.8,19.5,20.9,20.7,20,19.4,19.5,20.1,19.8,18.5,22.2],"script":[7.4,7.9,9.1,7.5,7.3,7.3,9.1,8.2,8.7,7.3,6.6,8.4,8.5,6.9,9.4],"paint":[10,9.3,11.7,9.4,9.7,10.8,10.4,9.9,9.9,10.6,10.9,10.5,9.3,10.8,10.5]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[8.5,7.2,7.6,7.8,7.8,7.5,9.1,8.4,8.2,9.1,8.7,6.8,8.7,8,7.3,8,7.7,9.7,7.7,7,8.3,7.6,7.7,8.6,7.6],"script":[5.1,4.7,5,4.6,5,4.6,5.6,5.2,5.7,5.6,5.9,4.1,5.9,4.9,4.3,4.9,4.6,6.4,5,4.7,5.3,4.6,4.7,5.5,4.9],"paint":[1.1,1.4,1.8,2.9,1.4,2.1,2.1,2.2,1.2,2.5,1.1,1.4,1.3,2.4,2.8,2.5,1.9,2.1,1.8,1.3,1.5,2.3,2.4,2.4,2]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[20,22.1,18.1,18.5,19,18.6,20.2,18.1,19,18.5,18.5,18,20.9,20.4,20.4],"script":[5.1,6.1,4.8,4.6,4.8,4.9,5.1,4.4,4.6,4.5,4.4,4.6,5.2,5.7,5.6],"paint":[13,13.5,12.1,12.5,13,12.1,13.1,12.3,12.7,12.5,13.4,12,13.8,12.9,12.7]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,14.5,15,14.7,15,14.7,14.6,14.9,15,14.9,15.2,14.9,15.2,15,14.9],"script":[4.2,4.2,4.3,4.3,4.3,4.2,4.3,4.5,4.3,4.2,4.2,4.4,4.3,4.4,4.2],"paint":[9.4,9.7,10,9.5,10.1,9.8,9.4,9.7,10,10,10.1,9.8,10,9.8,9.8]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[332.8,328.4,332.4,331.3,328.3,328.3,329.5,327.1,328.5,330.8,327.3,352.3,330.6,328.1,329.5],"script":[98.8,98.2,98,97.5,99,99.4,98.5,97,98.2,99.2,99.1,99.4,98,97.8,98.7],"paint":[226.3,222.4,226.4,225.9,221,221.3,223.4,222.4,222.5,223.1,220.6,245.1,224.1,222.9,222.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.4,40,39.9,39.7,40.1,39.5,39.6,39.8,39.9,40,39.9,40.2,40.6,39.4,40.6],"script":[12.5,12.8,12.9,12.5,12.7,12.6,12.7,12.7,12.6,12.8,12.8,12.8,13,12.6,12.7],"paint":[26.9,26.3,26,26.2,26.5,25.9,25.9,26,26.3,26.2,26.1,26.3,26.5,25.8,26.9]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.1,16.2,16.2,16.1,16.4,16.1,18.3,16.4,15.7,16.7,16.4,15.7,16.5,15.9,15.8],"script":[14.6,14.2,14.4,14,15,14.2,15.7,14.4,13.3,14.9,14,13.8,14.4,13.6,14.1],"paint":[0.3,1.8,1.6,1,0.3,1,1.9,1,1.5,0.3,2.2,1,0.7,1.4,0.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7422618865966797]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8538818359375]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.23066520690918]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.265583038330078]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.978217124938965]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.3]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[30.2,29.8,29.9,30.3,30.4,30.3,29.9,31,30.1,30.3,31.2,29.7,30.4,29.8,29.7],"script":[8.8,8.6,8.8,9,9.1,9.1,8.8,9,9,9.3,9.5,8.8,9.1,9,8.7],"paint":[20.9,20.7,20.6,20.8,20.8,20.6,20.6,21.4,20.6,20.5,21.2,20.3,20.8,20.3,20.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[33.3,32.4,33.4,33.9,32.8,33.7,33.2,32.7,33.3,33.3,33.3,33.3,33.9,32.7,33.4],"script":[11,10.7,11,11.2,10.8,11.1,10.9,11,11,11.2,11.3,11.3,11.3,10.9,11.2],"paint":[21.7,21.2,21.9,22.1,21.4,22.1,21.7,21.2,21.7,21.6,21.5,21.4,22,21.3,21.6]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,18.9,20.1,19.3,18.2,18.8,18.5,21,19.2,19.7,18.9,18.3,18.7,18.2,18.3],"script":[7.1,7.2,8.2,6.8,7,6.7,7.2,7.1,6.3,7.4,7.1,7.2,6.9,7.5,6.9],"paint":[9.6,9.1,10.5,10.2,9.7,8.5,9.4,11.8,11.6,10.2,10.4,9.3,10.6,8.8,10]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[5.8,5.5,4.7,5.7,5.6,4.8,4.8,4.9,5.9,5.6,5.5,5.1,5.4,5.1,5.5,5.7,7.4,5.1,4.5,5.2,5.4,5.4,5.7,4.7,5.5],"script":[2.7,2.8,2.8,3.2,2.8,2.9,2.5,3.3,3.3,2.9,2.8,2.7,3,3.2,3,3.5,3.5,3.2,2.6,2.4,2.9,3,3.5,2.7,2.6],"paint":[1.7,2.2,1,2.3,2.6,1.8,2.2,1.1,2.5,2.3,1.1,1.3,2.2,1.8,1.5,2.1,2.1,1.1,1,2.1,1.6,0.8,2.1,1.6,2.8]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[108.7,106.7,108.5,108.8,107,109.7,109.9,108.5,108.4,107.4,107.6,108.1,109.1,107.4,108],"script":[21.2,20.5,23.6,22,20.8,22.8,23.1,21.3,22,21.3,22.8,21.9,21.5,21.2,20.9],"paint":[84.7,84.5,82.6,83.5,83.6,83.6,84.8,84.4,83.5,83.1,81.8,84.8,85,84,85.1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[13,12.1,12.5,12.2,12.7,12.5,12.1,12.1,12.2,12.8,12.7,12.2,12.2,11.8,12.1],"script":[2.2,1.9,2.2,2.2,2.2,2.1,2.2,1.9,2.2,2.1,2.2,1.9,2.1,1.9,1.9],"paint":[10,9.6,9.6,9.7,9.9,9.8,9.3,9,9.4,9.8,9.3,9.5,9.1,9.6,9.5]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[400.1,401.6,409.9,399.9,405.5,400.8,401.1,406.9,404.1,403.3,400.8,402.7,405.8,407.9,406.6],"script":[178.1,178.6,182.8,177.2,181.3,174.4,176.4,182.1,180.8,180.3,175.3,179.1,182,183.7,181.5],"paint":[214.7,215.7,219.9,215.4,217,219.2,217.3,217.5,216.1,215.4,218,216.2,216.4,216.9,217.7]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.9,36.5,36.8,36.1,36.1,36.3,36.4,36.1,36.5,36.3,36.4,36.1,36.3,36.3],"script":[9.6,9.7,9.8,9.6,9.6,9.5,9.7,9.7,9.7,9.9,9.5,9.7,9.8,9.6,9.9],"paint":[25.1,25.2,25.8,26.3,25.6,25.6,25.6,25.8,25.5,25.6,25.8,25.8,25.4,25.8,25.4]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.6,13.7,12.8,11.8,11.8,12.1,12.4,12.8,12.7,13.2,11.7,12.1,11.9,12.3,13],"script":[10.1,11.3,10.7,10,10.1,10.5,10.2,10.8,10.2,10.8,9.9,10.3,9.7,9.8,10.7],"paint":[1.1,1,0.3,0.2,0.3,1,1.8,0.9,1.5,1.2,1,0.4,1,2.3,1]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.300863265991211]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.725496292114258]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.292157173156738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0953903198242188]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.235087394714355]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.9]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[264.7]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[32,31,30.4,31.1,31,31.3,31.3,30.3,31.3,31.1,31.3,31,31.3,31,31.5],"script":[9.2,8.9,8.4,8.6,8.6,8.9,8.7,8.5,8.8,8.7,8.6,8.4,8.7,8.5,8.6],"paint":[22.2,21.5,21.3,21.9,21.8,21.8,22,21.3,22,21.7,22.1,22,22,21.9,22.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.7,35.9,36.9,35.7,35.5,35.9,36.5,35.4,35.4,35.3,36.4,35.9,36.7,35],"script":[12.3,12.5,12.2,12.6,12.4,12.3,12.5,12.9,12.3,12.2,12.4,13.1,12.5,13,12.3],"paint":[22.4,22.6,23,23.6,22.7,22.6,22.7,23,22.5,22.6,22.3,22.6,22.8,23.1,22.1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.3,12.9,12.4,12.8,15.1,14.3,14.2,15.4,13.2,12.6,14.6,12.6,12.4,13.7],"script":[1.9,2.1,2,1.7,1.6,2.1,2.3,3,3.2,2.3,1.5,2.4,1.6,1.9,1.8],"paint":[9.5,10.1,9.9,9.6,9.9,11.8,10.9,9.8,10.7,9.6,9.8,10.6,9.8,9.4,11]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.5,3.4,4,3.5,3.4,3.9,3.8,3.4,3.6,3.5,3.4,3.7,4.2,4,3.6,3.4,3.9,4.1,3.1,4.1,3.5,4.4,3.1,3.8,3.9],"script":[1.5,1.4,2.4,1.3,1,2.1,1.8,1,1.3,1.5,1.6,1.7,1.5,1.4,1.2,1,1.3,1.8,0.9,2.1,1,2.3,1,1.2,2.1],"paint":[2,1,1,2.1,1.6,1.2,1.8,1.3,2.1,1.9,1.6,1.7,1.8,2.1,2.3,1.4,2.4,2.2,2,1,1.5,1.3,1.2,2.4,1.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.3,17.3,16.7,16.7,17,17.1,18.3,17,17.5,19.9,17,17.9,24.5,17.4,18.1],"script":[4.3,4.4,3.6,3.9,3.8,4.3,4.2,4.4,4.7,5,3.5,4.2,5.2,4,4.5],"paint":[12.7,11.4,11.9,10.9,11.1,11.6,12.8,11.3,12.2,13,12.4,13.1,16.8,12.7,12.2]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,13.5,12.8,12.4,12.5,13,12.7,13,12.9,13.4,12.9,13.2,12.8,12.7,12.5],"script":[2,2.3,2,2.1,1.9,2.3,2.2,2.3,2,2.1,2.2,2.2,2.3,2.3,2.1],"paint":[9.7,10.3,10.2,9.4,10.1,10.1,10,10.1,10.2,10.5,10.3,10.3,9.5,9.8,9.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[326.9,325.5,328.8,328.4,325.7,327.2,322.4,321.8,322.3,326.7,324.8,321.9,321.6,322.8,328.6],"script":[91.8,90.4,91.9,90.8,94,94.1,90.2,90.7,91.2,95.5,90.4,89.7,89.3,89.8,95.2],"paint":[226.7,226.5,228.3,228.6,223.7,224.7,224.5,223.2,223.3,223.4,226.2,224.2,224,225.1,225.6]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.3,36.7,37.9,39.7,38.1,37.9,37.8,37.6,37.6,37.9,37.8,38.8,38.1,36.6,38.3],"script":[10.4,9.8,9.9,10.3,10.2,9.8,9.9,9.8,9.7,10.1,10.1,10,10,9.2,10.3],"paint":[26.9,25.9,26.9,28.3,26.8,27.1,26.8,26.8,26.8,26.7,26.6,27.5,27,26.3,27]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,17.1,15.3,14.1,13.4,12.6,13.3,14.3,14.1,13.6,14.4,13.4,15.5,15.5,13.4],"script":[10.9,14.7,12.4,12,11.3,10.3,11.1,12.5,11.8,11.6,12,11.3,13.1,13.2,11.6],"paint":[1.8,1.4,1.6,1.5,1.2,1.8,0.8,0.9,1.2,1,1.2,1.1,1.4,1.4,1]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5902833938598633]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.638214111328125]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.687821388244629]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6624860763549805]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.004850387573242]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.3]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9]}},{"framework":"hellajs-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"01_run1k","values":{"total":[30.5,30.1,30.5,31.9,30.5,30.4,30.1,30.1,30.4,30.7,30.2,30.3,30.2,30.5,29.9],"script":[8.6,8,8.3,8.8,8.1,8.3,7.8,8.1,8.2,7.9,8.1,8.2,7.9,8.2,8],"paint":[21.3,21.6,21.7,22.5,21.8,21.6,21.7,21.6,21.8,22.2,21.7,21.7,21.9,21.9,21.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"02_replace1k","values":{"total":[44.4,43.1,44.5,43.4,43.5,43.8,43.7,43.1,43,43.5,43.7,44,43.8,43.9,44.2],"script":[20.2,19.4,20.2,19.7,19.9,20,19.9,19.6,19.3,19.4,19.7,19.7,19.8,19.8,20.1],"paint":[23.6,23.1,23.7,23.1,23,23.3,23.2,22.9,23.1,23.5,23.5,23.7,23.4,23.5,23.5]}},{"framework":"hono-v4.6.13-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,18.6,18.5,17.7,17.7,17.9,17.6,18.8,17.2,17.6,17.5,17.3,17.3,17.9,18],"script":[6.7,7,6.6,5.7,6.3,6.3,6.5,6.5,6.1,6.7,6.3,6.3,6.4,6.7,6.4],"paint":[10.2,9.6,10,11.2,9.1,9.5,9.3,10,9.2,8.9,9.6,8.9,9.2,10.1,9.9]}},{"framework":"hono-v4.6.13-keyed","benchmark":"04_select1k","values":{"total":[6.6,6.5,5.7,5.3,5.3,5.9,5.8,5.5,5.7,5.7,5.8,5.5,5.5,5.8,5.7,5.4,5.7,5.8,5.5,5.4,6.1,6.3,5.6,5.9,5.6],"script":[3.4,3.8,3.6,2.9,3.6,3.2,3.7,3.5,3.1,3.6,3.7,3.4,3.4,3.9,3.3,3.1,3,3.1,3.3,3.3,3.8,4.3,3.9,3.6,3.1],"paint":[1.5,1.6,1.5,2.3,0.7,2.1,1.7,1.1,2.3,2,1.2,1.8,2,1.1,1.6,2.2,2.3,1.8,1.3,2,2.1,1.8,1.6,2.2,1.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"05_swap1k","values":{"total":[17.4,16.3,16.5,16.6,17.6,17.7,16.4,16.5,15.8,17.1,17.4,16.7,17.3,16.2,17.5],"script":[3.6,3.1,3.7,3.5,4,3.5,3.3,3.4,3,3.7,3.1,3.7,3.8,3.7,3.9],"paint":[12.8,12,11.9,11.3,12.1,12.7,12.1,12,11.2,11.5,13.4,11.8,11.5,11.1,12.1]}},{"framework":"hono-v4.6.13-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.1,12.5,11.9,13.3,12.2,12.2,12.8,11.9,12.2,11.9,12.3,12,12.2,11.9],"script":[1.6,1.8,1.7,1.5,1.8,1.8,1.5,1.9,1.5,1.4,1.6,1.8,1.7,1.8,1.6],"paint":[10.1,9.8,10.3,10,10.3,9.5,10.4,9.8,9.9,9.9,9.5,10,9.7,10,9.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"07_create10k","values":{"total":[319.7,318.2,316.9,314.2,318.5,321.7,313.7,316.5,314.6,321.1,314.1,314.4,314.4,315.9,316.4],"script":[92.8,92.7,92.1,90.8,92.1,93.8,90.2,90.4,90.3,92.6,90,90.5,89.6,90.1,90],"paint":[219.2,218.4,217.6,216.3,219.1,220.3,216.8,218.8,217,221,217.2,216.9,217.9,218.1,219.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,35.7,36.3,35.5,35.9,35.9,35.9,36.8,35,36.4,35.6,35.1,36,36.5,35.7],"script":[8.9,9,9,8.8,9,9,9.2,9,8.8,9,8.7,8.7,9.1,9.4,8.8],"paint":[25.7,25.7,26.4,25.8,25.9,25.9,25.8,26.8,25.3,26.5,26,25.5,25.9,26.1,26]}},{"framework":"hono-v4.6.13-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.8,28,28.7,28.2,28.8,29.4,29.2,31.4,29.9,30.3,29.7,30.3,29,27.9,31.1],"script":[25.1,26.2,26.8,26.3,26.6,27.6,26.8,28.9,27.8,28.2,27,27.8,26.9,25.3,28.4],"paint":[1.5,1,1.2,1.1,0.9,0.3,1.3,2.1,1.5,0.9,0.4,0.9,0.3,1.7,1.7]}},{"framework":"hono-v4.6.13-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6364593505859375]}},{"framework":"hono-v4.6.13-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.252861976623535]}},{"framework":"hono-v4.6.13-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.883572578430176]}},{"framework":"hono-v4.6.13-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8905172348022461]}},{"framework":"hono-v4.6.13-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.327643394470215]}},{"framework":"hono-v4.6.13-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.3]}},{"framework":"hono-v4.6.13-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.6]}},{"framework":"hono-v4.6.13-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"01_run1k","values":{"total":[36.9,37.3,37.3,37,37.3,38.5,37.1,37.4,37.5,37.6,38.4,37.8,37,37.2,37.5],"script":[14.8,14.9,15,14.9,15,16.3,15,15,15.1,15.4,15.9,15.4,14.9,14.9,15.1],"paint":[21.5,22,21.8,21.6,22,21.7,21.6,21.9,21.9,21.7,22.2,22,21.6,21.8,21.9]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"02_replace1k","values":{"total":[41.6,42.2,41.6,43.4,41.1,42.9,42.6,43.5,42.3,42,41.5,42.9,41.5,41.8,41.8],"script":[18.1,18.8,18.3,19.3,18,18.8,18.5,19.2,18.2,18.3,18.1,18.9,18.3,18.1,18.6],"paint":[22.9,23.1,22.7,23.5,22.7,23.5,23.5,23.9,23.6,23.2,23,23.4,22.6,23.3,22.8]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.3,11.6,12,11.5,12.6,13,12.1,12.6,11.8,12,11.4,11.5,12.3,11.4],"script":[1.5,1.5,1,1.7,1.4,1.9,2,1.7,1.6,1.8,1.2,1.5,1.3,1.5,1.3],"paint":[8.7,8.6,9.7,8.9,8.9,9.7,10.3,9,10,8.8,8.5,8.8,8.8,9.8,9.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"04_select1k","values":{"total":[3,3.6,3.5,3.9,3.4,3.2,3.4,3.6,3.4,3.7,3.8,3.7,3.6,3.8,3.6,3.9,3.4,3.3,3.3,3.3,3.8,3,3.7,3.7,3.6],"script":[0.9,1.4,1.1,1.5,1.5,1.3,0.7,1.3,0.7,1.7,1.7,1.7,1.6,1.6,1.4,1.7,1.2,1.4,1.1,1.4,1.6,1.2,1.8,1.8,1.3],"paint":[2,2.1,2.3,1.5,1,1.8,2.6,2.1,2.3,1.7,1.7,1.8,1.7,2.1,1.9,1.4,1.3,1.6,1.5,1,2,1,1.1,1.1,2.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"05_swap1k","values":{"total":[12.9,12.9,13.8,13.2,12.8,14.2,15.4,13.2,13.1,13.6,13.1,12.7,13,12.6,12.8],"script":[0.1,0.1,0.1,0.1,0.6,1.1,0.5,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1],"paint":[11.6,11.9,12.2,12.2,11,11,13.8,10.9,12.4,11.8,11.5,11.9,12.1,11.6,11.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.4,10.3,10.4,10.4,10.6,10,10.2,10.2,10.3,10.3,10.4,10.2,11.4,10.3],"script":[0.2,0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.4,0.1,0.3],"paint":[9.4,9.8,9.6,9.1,9.8,10.3,9.6,9.5,9.5,9.8,9.4,9.1,9.1,10.7,9.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"07_create10k","values":{"total":[384.4,382.6,381.6,385.3,383.8,383.8,383.5,388.6,383.8,385.7,384.7,384.3,385.6,382.5,383.5],"script":[151.9,151.3,150.1,151.5,152.3,151.7,151.7,153.1,151.9,152.1,151.4,151.8,152.7,151.4,150],"paint":[225.1,224.2,224.1,226.1,224.4,224.7,224.8,227.6,224.6,226.4,226.2,225.1,225.8,224,226.2]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.2,45.4,46.4,46.6,47.2,45.7,45.8,46.4,46.8,46.4,48,45.3,46.1,46.1,46.2],"script":[19.1,19.2,19.4,18.8,18.7,18.6,18.8,19.3,19.6,19.6,18.6,18.9,19,19.1,18.8],"paint":[26.1,25.4,26.2,26.9,27.5,26.2,26.2,26.2,26.3,25.9,28.5,25.6,26.3,26.2,26.6]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.4,10,11.5,11.6,10.8,11.6,10.7,10.9,10.2,10.4,10.2,10.5,10.3,9.9],"script":[8.9,8.5,8.6,9.7,9.8,9.3,9.6,8.6,8.9,9.3,8.9,8.2,8.7,9.1,8.4],"paint":[1.1,1.1,0.6,0.7,1.4,1.3,1.9,1.4,0.8,0.8,1.4,1.7,1.7,0.3,1.4]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5977210998535156]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.044669151306152]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.07186222076416]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.159616470336914]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.1341495513916]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.1]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"hydro-js-v1.8.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[44.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[33.2,29.1,34.1,30.2,32.8,33.2,34,29.2,30.6,29.8,32.2,30.7,28.2,30.9,28.3],"script":[4.6,4.6,4.8,4.8,4.8,4.7,4.8,4.8,4.7,4.7,4.6,4.9,5.2,4.7,5.4],"paint":[21.6,22,22.2,22.4,22,22.4,22.5,22.3,22.2,22,21.9,22.4,22.7,21.8,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[31.6,37.3,36.2,36.6,35.3,36.1,35.6,35.4,35.9,35.7,37.1,35.6,36.5,31.2,32.3],"script":[8,7.5,7.7,7.2,7.3,7.6,7.7,7.3,7.3,7.4,7.2,7.6,7.2,7.8,7.6],"paint":[23.2,22.1,22.5,22.4,22.3,22.2,22.3,22.5,22.3,22.3,22.1,22.3,21.7,23,22.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.2,12.6,12.9,13.9,27.9,30.3,28.7,28.6,13.6,12.1,12.5,12.7,28.6,28.8,29.7],"script":[2.3,2.6,2.3,2.7,2.8,3.4,2.7,2.7,3.6,2.2,3.2,3.3,2.9,2.6,3.8],"paint":[10.8,9.1,8.3,9,9.2,10.1,9.2,9.4,8.4,9.4,9.1,9.3,9.1,10.2,9.8]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[5.2,3.7,3.9,3.4,3.7,3.4,7.8,3.6,3.9,3.8,3.7,4.3,3.6,3.2,3.3,4.2,4.9,4.2,3.4,3.8,4,4.1,3.5,3.7,3.4],"script":[1.4,1,2,1.6,1.6,1.5,0.8,1.5,1.6,1.5,2.1,1.7,1.2,0.3,1.1,1.8,1.1,2.4,1.5,1.7,1.8,1.4,1.6,1.3,1.8],"paint":[1.8,2.3,1.4,1.7,1.8,1.1,2.1,2,1.5,1.6,1.4,1.7,1.5,1.2,2.1,2.3,1.7,1.7,1.1,1.5,2,2.6,1.1,2.3,1.4]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[14.9,33.9,29.1,30.9,31.1,30.3,14.5,13.7,14.2,13.8,14.4,32.8,29.8,13.9,14.6],"script":[0.9,2,1.7,2,1,1.5,1.6,1.8,1.3,1,1.6,1.8,1.3,1.6,1.6],"paint":[12.7,15.4,11.4,12.5,12.8,12.2,12.4,11.8,12.2,11.5,11.3,14.9,12.5,11.6,12]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[9.8,13.2,10,10.1,9.7,11.3,9.8,12.1,9.7,9.7,9.8,9.9,9.7,10,9.4],"script":[0.9,1,0.7,0.9,0.7,0.7,0.7,0.7,0.8,1,0.9,0.7,0.8,0.9,0.7],"paint":[8.6,9,9,8.6,8.6,8.8,8.8,9,8.7,8.2,8.6,8.7,8.7,9,8.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[285.1,288.8,292.6,289.9,288.2,286.4,287.8,284.3,289.9,288.5,293.2,290.9,288.8,288.4,289.5],"script":[54.2,54.7,54.9,55.4,55.1,56.3,55.7,55.6,54.9,54.9,54.7,54.8,56.6,55.1,55.8],"paint":[227.3,227.9,227.1,226.2,227.8,226.6,226.5,225.3,225.7,227.5,228.9,227.2,227.5,227.5,228.2]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.9,36.3,31.8,36.1,36.5,36.5,36.3,36.3,36.1,35.8,33,36.6,37,36.3,36.1],"script":[5,5.1,5.2,5,5.2,5.3,5.1,5.1,5.2,5.2,5.2,5.4,5.1,5.1,5.1],"paint":[26.3,26.3,26.2,26.2,26.5,26.5,26.4,26.5,26.1,25.9,27.3,26.2,26.3,26.1,26.5]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.2,9.9,26.8,27.1,10.8,25.9,10,27,10,10,26.1,9.5,9.9,26.5],"script":[7.9,8,7.5,9,9.5,7.9,8.2,7.5,9.3,8.3,7.7,8.4,7.8,7.8,8.6],"paint":[0.3,1.9,1.6,1.5,0.3,1.4,1.8,1.6,0.7,1.2,1.6,1,1.6,1,0.9]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475978851318359]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.968770980834961]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763368606567383]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6267261505126953]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.886277198791504]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.6]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[32,33.4,32.4,30.8,34.3,31.2,30.7,30.3,33.8,32.9,33.9,35.7,34.6,35,33.9],"script":[6.3,6.2,5.7,5.8,5.8,6.1,6,6,6,5.9,5.6,5.7,5.6,5.7,5.7],"paint":[21.7,22,21.6,22,21.8,22.1,21.9,21.8,22.1,22.2,21.7,21.5,21.7,21.9,21.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[35.2,35,33.4,31.6,33.1,33,32.7,32.4,32.2,31.8,31.5,35,34.4,37.5,31.9],"script":[8.9,8.5,8.7,8.6,8.8,8.8,8.8,9,8.7,8.7,8.4,8.8,8.8,8.4,8.4],"paint":[23,22.4,22.8,22.7,23.1,22,22.7,22.7,22.7,22.7,22.8,23.2,22.2,22.2,22.6]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.2,27.7,10.6,26.9,11.2,12.6,27.8,27.5,11.3,26.7,12,11.2,27.7,11.8,11.1],"script":[1,1.6,1.1,1.5,1.2,0.4,1.1,1.4,1,2.4,1,1.3,0.9,0.8,1.1],"paint":[9.3,10.3,9.4,9.8,9.7,11.2,10.3,10,10,8.5,10.4,8.8,10.9,8.8,9.8]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.7,6.4,2.8,6.9,3.8,3.4,3,2.8,3.4,3.4,3.4,2.6,3.7,3.2,3.4,3.3,3.4,8,3.6,5.2,3.6,3],"script":[1.6,1.2,1.1,1.1,0.6,1.2,0.6,1.5,0.5,0.8,0.8,1.1,1.1,1.2,0.9,0.6,1.1,1.1,0.8,1.2,1.4,1.5,0.9,1.1,1.1],"paint":[1.6,1.8,1.3,2.4,1.7,1.3,1.3,1.8,1.1,2,1.1,1.6,1.2,1.1,1.1,2.1,1.3,1.3,2.1,2.1,2.4,1.3,1.7,1.1,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[15.7,29.7,32.8,30.5,30.4,14,30.3,29.5,30.6,13.7,13.8,29.5,15.5,30.9,30.6],"script":[1.7,0.9,2.2,0.9,1.2,1,1.4,1,0.3,0.3,0.3,1.9,1.7,1,1.2],"paint":[13.4,12.6,13.7,13.5,13.8,11.7,14.1,13.3,14.9,12.5,12.3,13,13.1,14.6,13.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.4,9.2,11,9.8,11.6,12.7,14.2,10.1,12,12.2,9.5,12.1,11,9.8,10.4],"script":[0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.9,0.3,0.4,0.4,0.5,0.6,0.7],"paint":[9,8.3,8.8,9.1,8.6,9,8.4,8.8,9,8.9,9,8.5,8.8,9.1,8.7]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[290.8,296.7,293.1,297.5,290.9,293.4,293.8,291.8,291.9,289.8,297.7,291.8,292.6,291.9,293.6],"script":[69.3,71.5,70.9,69.1,69.2,71.6,71.8,71.5,69.9,70.7,70.2,71,70.6,71,70.4],"paint":[218.1,217.5,218.7,218.2,216.5,218.3,218.5,216.7,218.4,215.3,218.6,217.2,218.4,217.3,218.3]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.5,62.1,61.1,66.3,61.8,67.8,62.1,65.7,61.7,61.9,65.1,67.3,60.8,66.6,68],"script":[15,14.9,14.6,14.7,14.5,14.7,15.1,14.4,15,14.6,14.2,14.9,14.7,14.3,14.3],"paint":[46.3,46.7,46,46.5,46.8,47.5,46.5,46.4,46.2,46.8,46,46.6,45.6,46.8,46.4]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.5,11.5,27.4,11.2,27,26.6,10.2,10.2,11.7,27.1,27,27.3,11,10.4,27.2],"script":[10.9,8.1,9.4,8.2,9.6,8.6,8.7,8,9.8,9.1,9.5,9.8,9.4,8.4,9.4],"paint":[0.7,1.9,1.4,1.9,0.5,1.1,1,0.3,1.7,1.9,0.6,2,0.3,0.2,1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.848170280456543]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6432600021362305]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6237621307373047]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0587453842163086]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.993185997009277]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.1]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.7]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,29.5,29.8,30.3,30,29.9,30.3,30,30.6,29.6,30.2,29.9,30.5,30.3,29.9],"script":[7.5,7.5,7.7,7.9,7.7,7.8,7.9,7.8,8.5,7.4,7.7,7.7,7.9,8.1,7.8],"paint":[21.9,21.4,21.5,21.8,21.8,21.5,21.9,21.6,21.6,21.6,21.9,21.7,22,21.6,21.6]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[61.5,61.7,61.5,61.4,62.2,61.5,61.7,61.6,61.2,61.8,61.4,62.4,61.2,61.2,60.8],"script":[39.7,39.9,39.9,39.6,40.1,39.4,40.1,39.9,39.2,39.7,39.7,39.8,39.4,39.8,39.1],"paint":[21.4,21.3,21.2,21.3,21.6,21.7,21.2,21.3,21.6,21.6,21.3,22.1,21.3,21,21.2]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.5,20,21.2,19.8,20.1,20.7,21.3,20.1,20.7,22.5,20.7,20,20.4,19.7,20.5],"script":[8.8,9.1,8.3,8.9,8.9,9.1,9.1,8.8,9.3,9.1,9.2,9.6,8.9,8.2,9.2],"paint":[9.6,7.9,11.1,8,8.3,8.8,10.1,9.4,9.6,10.2,9.4,9.3,9.7,9.6,9.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[11.8,12.4,11.3,13.1,11.9,11.7,11.6,12.1,12.1,11.4,12.4,12.3,12.9,12.1,11.9,11.5,11.5,12.4,12.5,12.2,11.6,11.9,11.6,12.2,12],"script":[8.4,9.7,8.4,9.7,8.9,8.8,8.5,9.2,8.9,8.4,9.5,9.4,9.9,8.8,9,8.6,8.8,9.1,9,9.7,8.7,8.8,8.5,8.9,8.6],"paint":[2.4,1.2,1,3,1.8,1.2,1.3,2.2,2.1,1.3,1.9,0.8,2.8,2.3,2.3,2,1.5,2.2,2.5,1.2,1.9,1.1,2.8,1.7,2.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[108.4,110.3,109.2,105.8,109,108.2,108.8,109.3,106.8,108.3,107.6,109,106,106.9,108.4],"script":[20.9,21.4,21,20,21.4,21.1,22.4,21.2,20.8,22.4,20.5,21.2,21.6,21.3,21.1],"paint":[84.8,87.4,86,82.6,86.4,85.9,83.8,85.8,83.3,82.6,83.9,86.2,82.8,82.8,85.5]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[58.1,57.2,58.3,58.2,59.5,57.9,57.6,57.8,57.2,57.4,58.1,58.6,57.6,57.8,57.3],"script":[13.1,13.3,13,13.4,13.9,12.9,13.2,13.8,12.4,12.9,13.7,13.2,12.7,12.8,13],"paint":[43.3,42,43.5,43.7,44.2,43.5,43,42.3,43.4,42.8,42.4,43.7,43.3,43.8,42.9]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[296.4,297.9,300.8,297.2,296.9,300,297,296.8,298.4,296.8,296.9,298,298,300.9,301],"script":[76.8,76,76.4,75.8,75.1,77.3,76.3,76,77.8,75.2,76.4,76.7,75.8,75.8,77.5],"paint":[212.5,215,217.3,214.4,214.8,215.8,213.5,213.8,213.6,214.3,213.6,214.3,215.3,216.4,216.3]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,35.9,36.2,36.6,36.6,36.7,36.3,36.1,36.4,36.2,36.6,36.1,36.6,36.6,36.1],"script":[9.4,9.1,9.4,9.4,9.6,9.4,9.3,9.4,9.2,9.3,9.5,9.1,9.4,9.5,9.2],"paint":[26,25.9,25.9,26.3,26.1,26.3,26.1,25.8,26.3,25.9,26.2,26,26.3,26.1,26]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,12.2,12.5,13.9,13.2,12.9,12.4,13.1,12.5,12,11.9,12.6,12.8,12.5,13.1],"script":[10.2,10.8,10.7,11.9,11.1,10.8,10.8,11,9.9,10,9.6,10.4,10.1,10.5,11.5],"paint":[1,0.2,0.4,0.9,0.5,1.1,1.1,1.1,1.5,1.1,0.9,2,2.3,1.6,1]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6214685440063477]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.976534843444824]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.997494697570801]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8504953384399414]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.28676414489746]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[24.8,24.4,24.5,24.5,24.5,24.9,24.9,24.5,24.8,24.5,24.5,24.5,24.7,24.8,24.6],"script":[2.9,2.9,2.9,2.8,2.9,2.9,3.1,2.9,3,3,2.9,2.9,3,2.9,3],"paint":[21.5,21.1,21.3,21.3,21.2,21.7,21.5,21.1,21.4,21.1,21.3,21.3,21.3,21.5,21.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[27.6,27.5,28.8,27.7,27.9,28,27.6,28.3,26.8,27.2,27.2,28.1,27.5,27,27.1],"script":[5,4.9,4.9,5,5,5,5.2,5,4.8,4.8,4.9,5.3,4.9,4.9,4.9],"paint":[22.3,22.1,23.5,22.3,22.5,22.5,21.9,22.4,21.6,22,21.9,22.2,22.2,21.7,21.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.9,11.9,11.7,11.7,12.2,11.3,11.9,13.3,11.3,11.1,11.6,13.4,11,11.3,10.4],"script":[1.6,1,1.3,1.2,1.3,0.6,1.3,0.9,1.2,1.2,1.1,1.8,1.2,1,0.6],"paint":[9.4,9.8,9.4,9,9.8,9.5,9.7,11,9.4,8.9,9.5,10.4,8.8,9.1,8.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.8,3.1,2.2,2.8,2.5,2.5,3,2.2,3,2.7,3.1,2.8,3.9,2,3,2.3,2.8,3,3.2,3.3,2.8,2.5,2.8,2.8],"script":[0.1,0.6,0.8,0.1,0.9,0.9,0.9,0.8,0.1,0.8,0.8,1.1,0.8,0.8,0.1,0.1,0.1,0.5,0.1,1.1,1,0.7,0.7,0.1,0.8],"paint":[1.4,1.5,1.1,1.9,1.1,1,1.1,1.3,1.5,2,1.8,1.8,1.2,3,1.7,1.9,1.3,1.4,2.6,2,1.8,1.7,1.5,1.6,1.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.8,14.4,13.5,13,13.4,13.6,12.9,14.3,15.7,13.2,13.8,13.7,13.1,13.5],"script":[1,0.8,1.1,1,0.6,0.9,0.9,1,0.6,1.6,0.2,1,0.9,1.1,0.2],"paint":[10.4,10.9,12.1,11.4,10.9,11,11.8,11,12.7,12.5,11.2,11.7,11.7,9.7,12.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,9.9,11,10.6,10,10.7,10.3,10.4,10.8,10.4,10,10.4,10.4,10.5],"script":[0.5,0.4,0.1,0.4,0.3,0.1,0.4,0.4,0.3,0.5,0.1,0.2,0.3,0.3,0.3],"paint":[9.7,9.5,9.2,10.3,9.6,9.3,9.7,8.6,9.7,9.7,9.2,9,9.7,9.4,9.5]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[258.9,261.2,260.7,259.1,260.8,262,260.7,262.2,263.1,260.8,263.2,261.9,260.9,263.7,260.4],"script":[32.9,32.9,32.8,32.2,32.7,33,32.9,32.4,32.9,32.4,33.5,32.3,32.4,32.8,32.4],"paint":[219,221.1,220.7,219.7,221.1,221.4,220.2,222.2,223,221.3,222.4,222.2,221.4,223.4,220.8]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.1,29.5,29.6,29.3,28.9,30.2,30.2,29.6,29.5,29.1,29.4,29.5,33,29.5,29.7],"script":[3.3,3.4,3.6,3.7,3.4,3.6,3.6,3.7,3.7,3.7,3.5,3.8,3.3,3.4,3.6],"paint":[25.1,25.3,25.2,24.8,24.6,25.9,25.8,25.2,25,24.6,25.1,25,28.9,25.4,25.3]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,10.5,9.1,10.8,11.1,9.5,9,9.7,9.9,10.2,10,12,9.8,9.5,9.2],"script":[8.1,8.5,7.8,8.6,8.7,7.2,7.5,7.5,7.5,7.9,8,10.4,7.4,7.6,7.7],"paint":[0.3,1.3,0.3,1,1,1.7,0.8,1.3,0.7,1.2,1.8,0.6,1.2,1.7,0.6]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350837707519531]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7847232818603516]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8461036682128906]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7868881225585938]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.106175422668457]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.2]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"01_run1k","values":{"total":[23.8,23.7,23.7,23.6,24.1,23.8,23.4,23.6,23.4,23.8,24,23.8,23.6,23.8,23.9],"script":[1.9,1.9,1.8,1.8,1.9,1.9,1.8,1.8,1.8,1.9,1.9,1.8,1.9,1.9,1.9],"paint":[21.5,21.4,21.4,21.4,21.9,21.5,21.1,21.4,21.2,21.5,21.7,21.5,21.4,21.5,21.7]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"02_replace1k","values":{"total":[26.6,27.4,26.4,26.3,27.1,26.8,27.1,26.9,26.9,27,27,27.2,27.2,27.2,27],"script":[3.8,4,3.9,3.9,4,4,4.1,4.1,4.1,4.1,4,4.3,4.1,4.2,4.1],"paint":[22.4,22.9,22,22,22.7,22.4,22.6,22.5,22.4,22.5,22.6,22.6,22.6,22.5,22.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.7,11,10.5,10.1,10.8,11.6,12.4,11.3,10.4,10.4,10.9,10.8,10.9,11.3],"script":[1.7,1.2,1,1.1,1.1,1.2,0.9,1.4,0.9,0.9,1,0.9,0.9,0.9,0.8],"paint":[8.7,9.2,9,8.1,7.8,8.8,9.8,10.1,9.5,8,7.8,8.8,8.9,8.9,9.5]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.9,2.7,2.6,2.5,2.7,2.8,2.6,3.3,3,2.8,2.5,3.3,2.6,2,2.6,3.2,2.7,2.7,2.8,3.5,3.2,3,3.1,2.5],"script":[1.2,0.3,0.9,0.2,0.9,0.8,0.2,0.2,0.8,0.2,0.9,0.6,0.9,0.2,0.1,0.2,0.9,0.8,0.9,0.2,1.4,0.9,0.2,0.9,0.6],"paint":[1,2.5,1.7,2,1.1,1.2,2.5,2.3,1.6,2.7,1.8,1.9,2.2,1.5,1,2.3,2.1,0.9,1.2,1.4,1.4,1.6,2.7,1.3,1.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,13.3,13.6,13.5,13.4,13.8,13.8,13.3,13.8,14.2,13,14.1,13.4,13.9,13.6],"script":[0.7,1.3,1.2,0.6,0.7,0.9,1.1,0.3,1.1,0.6,0.2,1.3,0.8,1.2,0.7],"paint":[11.7,10.6,11.1,11.6,11.4,11.8,11.9,12.4,11.1,11.6,11.6,11.7,11.3,11.7,11.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.4,9.9,10,10.7,10.6,10.8,10.5,10.7,10.6,10.8,10.6,10.7,10.4,10.6],"script":[0.5,0.2,0.2,0.3,0.4,0.3,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.2,0.3],"paint":[9.7,9.5,9.2,9.4,9.7,9.6,9.7,9.3,9.7,9.4,9.6,9.2,9.4,9.3,9.3]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"07_create10k","values":{"total":[262,259.9,258.6,262,260.7,260.3,260.7,259.4,260.3,261.5,260.8,260.9,259.7,261.7,259.4],"script":[26.6,26.7,26.3,27,26.8,26.6,27,27.2,27.2,26.4,26.7,26.5,26.4,26.4,26.9],"paint":[228.1,225.8,224.9,227.7,226.5,226.3,226.2,224.8,225.9,227.5,226.8,227.1,225.8,228.1,225.1]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.5,28.4,28.5,28.9,29.1,28.1,29.5,28.7,28.6,29,28.8,28.9,28.5,28.8],"script":[2.1,2.1,2.1,2,2.1,2.2,2,2,2.1,2.1,2.1,2.1,2,2.1,2.1],"paint":[25.8,25.7,25.5,25.7,26,26.1,25.3,26.6,25.8,25.8,26.1,25.9,26.1,25.7,26]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.4,9.8,9.4,9.8,10.7,9.7,9.5,10.7,10.1,10.1,10.2,9.6,9.9,9.7],"script":[7.7,8.4,7.9,7.9,7.9,8.4,7.7,8,8.8,8.1,8.2,8.2,8.2,7.9,7.7],"paint":[1.1,1.1,0.3,0.9,0.2,1.3,0.8,0.7,1.7,1.6,1.7,0.9,0.3,0.9,1.4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.589665412902832]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.292473793029785]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.303622245788574]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6993551254272461]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.6083402633667]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.6]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"ivi-v4.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.7,32.6,32.3,32.3,31.7,32.7,32.5,32.1,31.8,32.7,32,31.9,31.9,32.4],"script":[9.8,10.2,9.9,10,10,9.6,10.1,10.3,10.1,9.8,10.2,9.9,9.9,9.9,10.1],"paint":[21.5,22,22.2,21.7,21.7,21.5,22.1,21.6,21.5,21.5,22,21.6,21.5,21.5,21.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"02_replace1k","values":{"total":[38.3,39.1,38.5,38.7,38.6,38.1,38.7,39,38.5,38.4,38.3,39,38.6,38.6,38.1],"script":[14.8,15,14.9,14.8,14.7,14.7,14.9,15,14.8,14.9,14.8,14.8,14.7,15,14.7],"paint":[22.9,23.5,23,23.4,23.4,22.9,23.2,23.5,23.2,23,23,23.6,23.3,23,22.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.3,10.9,11,10.6,11.4,11,11.3,12.5,11,10.9,11.5,11,12.2,11.2],"script":[0.5,0.3,0.5,0.9,0.5,0.9,0.8,0.9,0.7,0.9,0.6,0.2,0.2,0.6,0.9],"paint":[9.2,8.9,9.4,9.2,9.1,8.9,9,9.5,10.8,9.1,9.7,9.5,9.8,10.4,9.2]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.6,3.2,2.8,2.8,2.5,2,2.7,2.1,3,2.3,2.8,2.5,3.1,2.5,2.5,2.4,3,2.2,2.5,2.1,2.4,2.1,1.9,2.8],"script":[0.7,0.4,0.9,0.1,0.8,0.1,0.1,0.7,0.1,0.1,0.5,0.1,0.1,0.8,0.6,0.1,0.1,0.7,0.1,0.1,0.4,0.6,0.3,0.1,0.8],"paint":[1.8,2.1,1.8,2.6,1.9,2.3,0.9,1.9,1.9,2.8,1.4,2.6,2.1,2.2,1.4,2.3,2.1,2.1,1.7,1.2,1.6,1.3,1.7,1,1.9]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.6,16.1,15.4,15,14.9,15.8,15.7,14.5,17.5,15.9,15.3,15.2,15.9,14.9],"script":[2.2,2.2,2.5,1.4,1.9,2.1,2.7,1.5,1.7,2.7,2.6,2.5,2.4,1.8,1.9],"paint":[11.6,12,12.7,12.7,12.1,11.5,12.1,12.7,11.7,13.8,12.4,11.4,11.6,12.9,12]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,11.5,11.6,11.6,11.6,11.5,11.9,12.1,11.9,11.5,11.7,11.6,12.2,11.6],"script":[1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.5,1.3,1.3,1.3,1.3],"paint":[9.5,9.4,9.5,9.4,9.7,9,9.6,9.8,10,10,9.5,9.2,9.8,10.3,9.1]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"07_create10k","values":{"total":[337.8,337.9,341.3,339.8,338.9,341.1,339,340.3,339.7,337.9,337.8,336.6,336.9,337.1,337.6],"script":[110.6,110.5,111.5,112.5,111.1,110.6,111.8,112.1,111,109.8,109.5,109.8,110,109.6,109.2],"paint":[220.2,220,222.4,220.1,220.9,222.9,220.2,221.3,221.7,220.8,221.2,219.9,220,220.5,221.5]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.7,37.8,38.1,38.3,38.6,38.4,38,38.8,38.4,38.7,38.7,38.4,38.3,38.2,38.8],"script":[11.5,11,11.2,11.3,11.6,11.5,11.4,11.3,11.3,11.5,11.5,11.4,11.4,11.7,11.7],"paint":[26.3,25.8,26,26.1,26,25.9,25.7,26.5,26.2,26.3,26.3,26.1,26,25.6,26.3]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.4,18.7,18.4,18,18.2,19.1,17.8,18.9,18.5,18,18.6,18.8,18.9,18.2,18],"script":[16.1,16.9,16.7,16.6,16.4,17.1,16.7,17.2,16.7,16.1,17.2,16.9,16.9,16.4,16.2],"paint":[1.3,0.6,0.6,0.2,0.9,1,0.9,0.9,0.7,1.1,1.2,1.6,0.2,0.9,0.8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6391324996948242]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.451436996459961]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.480386734008789]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.007399559020996]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.12287139892578]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.4]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"karyon-v4.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[53.2,52.4,53.8,53.1,53.1,53.2,53,53,52.8,53.6,54.1,53.7,53.4,52.5,53.9],"script":[29.6,28.7,30,29.5,29.2,29.5,29.1,29.5,29.1,29.8,29.6,29.9,29.8,29.1,30],"paint":[23.1,23.3,23.3,23.2,23.4,23.3,23.4,23,23.3,23.4,24.1,23.2,23.1,22.9,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[67.4,67,69.9,69.9,68.7,68.7,69.2,68.4,67.8,68.1,67.4,68.2,67.9,67.6,67.2],"script":[43.5,42.9,45.2,45.6,44.3,44.7,44.7,44.4,44,43.7,43.3,44.1,43.6,43.5,43.3],"paint":[23.4,23.6,24.3,23.8,23.9,23.5,24,23.5,23.3,23.9,23.6,23.7,23.8,23.6,23.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,13.9,12.8,13.8,13.5,12.8,13.3,13.2,13.4,12.6,13.6,12.9,13.8,12.9,13.7],"script":[2.1,1.9,1.5,1.5,1.4,1.6,1,2.1,2.4,1.4,1.8,1.8,1.5,1.7,1.2],"paint":[11,9.4,10.3,11.6,10.6,9.5,10.9,9.7,9.4,9.2,10.4,9.6,10.9,9.8,11]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[11.7,11.4,11.1,10.9,10.6,11.6,11.1,11,10.7,10.9,11.1,11.2,11,11.7,11.2,11.3,12,10.6,10.6,10.8,11.6,11.9,10.4,10.7,11.7],"script":[8.2,8.4,7.9,7.3,7.6,8.1,7.9,8.2,7.6,7.5,8,8.4,8.2,8.3,8.3,8.1,8.3,7.5,7.1,7.3,8.5,8.4,8,7.8,8.7],"paint":[2.6,1.2,1.9,2.6,2.5,2.1,2.3,1.7,2.5,2.1,2.1,1.9,1.8,2.3,1.2,1.5,2.6,2.8,2.6,2.3,2,2,1.1,1.4,2.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[106.7,111.1,108.1,114.9,106.6,112.4,111.8,112.4,111,111.5,107.6,109.3,113.5,111.1,108.8],"script":[18.8,19.8,20.1,21.6,19.7,20.1,21.1,21.9,19.9,20.4,18.3,19.5,20.7,21.2,20.6],"paint":[86.2,90,86.6,91.8,85.4,90.3,88.5,88.8,89.2,89.7,87.3,88.5,91.4,88.4,85.9]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,13.4,13.1,13.3,13.3,12.8,12.6,12.8,13.4,13.1,12.9,12.9,13.1,13.1,12.8],"script":[1.4,1.5,1.6,1.8,1.6,1.5,1.4,1.5,1.8,1.6,1.5,1.5,1.5,1.6,1.4],"paint":[10.7,11.2,10.4,10.9,11.2,10.6,10.9,10.4,10.7,10.8,10.4,11.1,10.9,10.9,11.1]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[480.4,481.8,479.8,478.9,480.8,480.5,485.6,481.1,477.8,482.5,481.5,480.8,484.1,482.1,480.1],"script":[233,232.3,233.2,235,233.6,234.2,234.9,232.7,231.7,233.9,234.1,234.2,235,235.4,233.3],"paint":[238.7,241.3,238.3,235.3,238.8,238.1,242.2,240.2,237.8,240.3,239,238.4,240.4,238.5,238.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.6,59.7,60.9,59.1,59.6,60.5,59.9,59.9,59.6,60.1,60.7,59.5,59.5,60.8,59.8],"script":[30.1,31.8,33.1,31.6,31,31.9,32.1,30.8,31.3,31.7,31.1,30.6,30.9,32.3,31.4],"paint":[27.5,27,26.9,26.6,27.6,27.6,26.8,28.1,27.4,27.5,28.5,27.9,27.6,27.5,27.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[40.3,46.9,40.2,42.8,38.8,43.5,41.4,38.7,39.5,41.1,43.2,40.3,38,39.2,37.6],"script":[38.5,45.5,38.2,40.8,37.3,42,39.9,37.6,38.5,39.4,41.3,38.7,36.8,37.9,36],"paint":[1,1.2,1.9,1.3,1.4,1,1.4,1,0.9,1.6,1.8,0.6,1.2,1.2,1.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.820317268371582]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.580552101135254]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.606609344482422]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.201192855834961]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.30915069580078]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[83.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"01_run1k","values":{"total":[25.3,25.7,25.2,25.1,25.1,25.1,25.1,25.3,25.4,25.3,26.2,25.2,25.2,25.1,25],"script":[3.9,4.2,3.9,3.9,3.8,3.9,3.8,3.8,3.9,3.8,4,3.9,3.8,3.9,3.8],"paint":[21,21.1,20.9,20.9,20.9,20.8,20.9,21.1,21.2,21.1,21.8,21,20.9,20.8,20.8]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"02_replace1k","values":{"total":[28.2,29,28.2,29.1,28.8,28.2,28.7,29.6,28.3,28.5,29,28.9,29.4,28.6,28.4],"script":[6.1,6.4,6.1,6.2,6.2,6.1,6.3,6.2,6.2,6.3,6.3,6.3,6.5,6.3,6.2],"paint":[21.5,22.1,21.5,22.3,22,21.6,21.8,22.8,21.6,21.6,22.1,22,22.3,21.7,21.7]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.9,14.9,13.8,11.5,11.6,12,12,11.6,11.9,11,11.9,11.5,11.9,11.7],"script":[1.8,2.1,1.8,2.7,1.5,1.5,1.1,1.8,1.4,1.8,1.5,1.7,1.7,1.8,1.3],"paint":[9,8.1,10.7,9.2,9.1,9.1,10.2,9.3,9,8.2,9.2,9.3,9.6,8.6,9.2]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.7,3,4.5,2.2,3.4,2.2,2.7,2.8,2.3,2.6,2.2,2,2.5,2.4,2.4,2.7,3,2.7,2.7,2.4,2.7,2.2,2.4,3],"script":[0.1,0.5,0.8,0.9,0.6,0.4,0.1,0.8,0.6,0.1,0.5,0.1,0.1,0.3,0.6,0.1,0.5,0.9,0.9,0.1,0.2,0.6,0.1,0.1,1.1],"paint":[2.7,2.1,1.4,1.7,1,1.6,2,1,2.1,2,1.4,2,1.1,0.4,1.5,2.2,0.6,1.9,1.4,1.2,1.5,1.8,2,1.4,1.3]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"05_swap1k","values":{"total":[14,14.4,13.8,14.2,13.6,13.7,14,13.4,14,15,14,14.1,14.4,14,15.4],"script":[1.3,1,0.9,1.8,1.2,0.7,1,0.6,1.2,1.5,1.1,1.2,1.3,0.9,1.3],"paint":[12.4,11.8,12,10.8,11.3,12.4,11.6,11.5,11.7,11.7,11.1,11.2,11.1,12.1,13.1]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.6,10.4,10.8,11,10.4,10.3,10.3,10.4,10.4,10.4,10.4,10.7,10.8,10.4],"script":[0.4,0.3,0.3,0.5,0.3,0.3,0.5,0.5,0.3,0.3,0.3,0.4,0.3,0.5,0.3],"paint":[9.3,9.3,9.6,9.7,10.2,9.6,9.4,9,9.5,9.5,9.6,9.7,9.5,9.7,9.4]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"07_create10k","values":{"total":[265.6,265.5,266.1,263.3,265,263.5,264.8,263.8,265.3,264.1,265.1,265.1,265.2,267.9,266],"script":[44.8,44.3,44.7,44.2,44.3,44.2,43.9,44.5,44.7,44.3,44.2,44.4,44.9,44.7,44.6],"paint":[213.8,214.3,214.4,212.3,213.9,212.4,213.8,212.3,213.6,213,214,213.4,213.4,216.2,214.5]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.3,30,29.6,29.5,29.8,28.5,29.9,30.1,29.2,29.7,29.5,29.9,28.5,28.5,29.6],"script":[4.1,3.7,3.8,3.8,3.8,3.6,3.6,4.1,3.6,3.7,3.8,3.8,3.6,3.6,3.8],"paint":[26.5,25.5,25,24.9,25.1,24.2,25.6,25.2,24.8,25.2,24.9,25.4,24.1,24.2,25]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.6,10.5,10.8,11.4,10.7,11.2,11.2,11.2,10.4,11,11,10.5,11.8,10.7,11.4],"script":[9.1,8.5,8,9.2,8.5,9.3,8.8,9,8.2,8.6,8.3,8.6,9.9,8.5,9.4],"paint":[0.3,1.1,1.9,1.5,1,0.7,1.4,1.2,1.2,0.7,1.7,0.7,0.8,0.4,0.9]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7653446197509766]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.192120552062988]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.145864486694336]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0154342651367188]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.1110897064209]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[75]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.6]}},{"framework":"ko-jsx-v0.17.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[60,60,60.5,60.2,59.7,60.3,59.6,59.9,60.1,59.9,60.6,60.6,59.6,59.7,60.3],"script":[37.4,37.1,37.1,37.4,37,37.1,36.9,37,37,37.1,37.3,37.6,36.6,36.6,37.2],"paint":[22.1,22.4,22.9,22.4,22.2,22.7,22.3,22.4,22.7,22.3,22.8,22.5,22.6,22.7,22.6]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[88.5,87.3,88.2,87,89,87.4,89,88.4,87,88,88.8,88.6,89,89,89.3],"script":[64.3,67.3,67.8,62.9,64.6,67,64.6,64.2,67.2,68.1,68.5,63.9,64.3,64.5,65],"paint":[23.6,19.5,19.9,23.6,24,19.9,23.8,23.7,19.4,19.4,19.9,24.2,24.2,24,23.8]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.8,14.5,15.5,17.2,15.1,17,16.4,16.1,15.7,15.6,15.2,16.1,16.6,15.7,15.6],"script":[3.9,3.8,4,5,4.1,4.2,4.4,4.7,4.4,3.9,4.1,4.1,4.3,4.2,3.4],"paint":[10.3,9.3,10.3,10.9,9.6,11.7,10.7,10.8,10.1,10.4,10.4,10.6,10.6,11.3,11.5]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[8.1,6.7,7.4,6.8,7.4,7.8,7.9,7.9,8.1,7.2,6.9,9.2,7.9,7.6,7.2,7.4,7.1,7,7.2,7.1,8.2,6.8,7.3,7,8.4],"script":[4.7,4.6,4.6,4.6,5,4.6,4.9,5.2,5.1,4.8,4.6,6,5.6,5.1,5.1,4.6,4.6,4.3,4.6,4.9,5.3,5.3,5,4.8,5.8],"paint":[3.2,2,2.6,1.1,1.9,2.6,2.8,2.1,1.8,1.8,2.2,2,2.2,1.5,1.6,1.8,2.3,2.6,1.7,1.2,1.9,1.3,2.1,1.6,2.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[106.6,105.7,111.1,106,106.4,105.9,111.9,106,107,108,105.9,108.5,104.7,106.2,107.3],"script":[15.8,15.6,17.2,15.8,15.8,15.4,17.5,15.5,16.7,17,16.4,16.3,15.5,16.1,16.1],"paint":[88.1,87.4,91.7,87.8,87.9,88.1,92.7,88.3,88.9,88.4,88.1,90.4,86.4,87.1,88.9]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,12.8,13.5,12.4,13.1,12.7,12.2,12.7,12.7,12.5,12.8,12.7,12.8,13.4,12.7],"script":[2.2,1.8,1.9,1.9,1.9,1.8,1.9,1.8,1.8,2,1.9,1.9,2.1,2.2,1.9],"paint":[9.8,10.1,10.9,9.9,10.6,10,9.5,10.2,10.2,10,10.2,10,10,10.1,10.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[483.7,482.1,484.1,484.1,483.2,480.5,489.4,478.4,484.6,482.2,485.7,483.8,486.5,483.5,485.6],"script":[241.3,239.8,240.5,239.9,240.9,238.5,244.2,237.9,239.5,240,241.1,239.8,244.3,240.8,241.8],"paint":[234.5,234.7,235.7,235.5,234.4,234.4,237.2,232.9,237.2,234.4,236.5,236.3,234.6,234.9,236.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.5,62.9,62.4,63.2,63.2,62.9,63.9,63,63.7,63.6,63.2,62.4,63.7,62.8,63.1],"script":[36.1,35.9,35.3,36,35.8,35.8,36.4,36.1,36.2,36.6,36.5,35.5,36.3,35.3,36],"paint":[26.5,26.1,26.3,26.2,26.5,26.3,26.6,26,26.7,26.2,25.8,26,26.5,26.6,26.2]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34,34.2,33.1,32.5,34.3,32.5,33.3,33.5,33.1,33.9,34.3,32.7,32.9,32.7,36.1],"script":[32.3,32.7,31.9,31.2,32.8,30.2,32,32.3,31.6,32.2,32.5,31.7,31.1,31.2,34.3],"paint":[1.6,1.3,0.9,0.3,1.4,2.2,1.2,0.3,1.5,1.7,1.7,0.3,1,1.1,1.7]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.3472471237182617]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.237695693969727]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.313368797302246]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.09581184387207]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[114.90720176696777]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.4]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[634.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[31.8,32.2,33,32.8,33.5,33.9,33.2,33.7,32.1,33.4,32.7,33.1,33.7,33.7,33],"script":[10.5,10.6,11.2,11.3,11.1,11.8,11,12.1,10.8,11.6,11.3,11.5,11.6,11.7,11.5],"paint":[20.8,21.1,21.3,21,21.8,21.5,21.7,21,20.8,21.3,20.9,21.1,21.5,21.4,21]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[36.6,36.7,37.9,37.4,37.4,37.6,37.4,37.6,37,36.8,37.1,37,37.2,37.8,36.8],"script":[13.9,13.6,14.9,14.7,14.8,14.8,14.4,14.8,14.2,14.4,14.6,14.5,14.5,14.8,14.4],"paint":[22.1,22.5,22.5,22.2,22.1,22.2,22.4,22.2,22.2,21.9,22,22,22.1,22.3,21.9]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.4,17.1,17,17.4,17.6,17.2,17.5,18.1,17.5,16.5,17.5,17.2,17,17.8,18.4],"script":[5.9,5.7,5.7,5.7,6.1,5.8,5.8,6.4,6,5.8,6.2,6,5.7,6,5.9],"paint":[9.3,9.6,9.2,9.3,9.7,9.2,9.8,9.9,9.4,9.8,9.7,9.8,9.2,10.1,10.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.6,5.3,4.6,5.2,4.9,4.3,5.1,4.2,5.2,4.9,4.6,4.9,4.2,4.9,4.4,4.7,4.3,4.3,4.2,4.8,4.4,5,4.3,4.5],"script":[2.3,2.2,2.3,2.3,2.5,2.3,2.3,2.4,2,2.7,2.3,2.3,1.7,2.3,2.2,2.4,2.5,2.4,1.9,2.1,2.3,2.1,2.4,1.4,2],"paint":[2.3,2.1,1.7,1.5,2.6,1.9,1,2.5,1.2,1.5,1.6,1.8,2.2,1.2,1.8,1.6,1.7,1.3,1.5,2,2.3,0.9,1.8,2,1.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[107.6,108.7,106.1,108,105.3,107.7,109.3,112,105.4,111.8,108,108.4,108.1,106.9,108.3],"script":[20.3,20.5,21,20.6,20,21.4,20.9,23.5,21.2,23.7,20.6,21.5,20.7,20.9,21.4],"paint":[84.6,86.2,82.4,84.9,82.6,83.8,86.1,86.9,82.5,86.2,84.7,83.6,85.9,82.6,84.7]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13,13.4,13.4,13.8,13.3,13.4,13.9,13,14,12.9,13.4,13.4,13.7,13],"script":[2.4,2.6,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.5],"paint":[10.1,9.9,10.2,10.2,10.3,9.5,9.9,10.5,9.2,10.8,9.7,10.2,10.2,10.7,9.6]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[410.9,408.3,409.3,411.3,411.6,413.1,409.8,413.1,406.9,416.4,413,415.9,412.2,414.5,408.5],"script":[185.1,185.2,185,185.6,187,185.7,187.2,188.7,184.2,188.7,187.8,188.2,187,189,183.4],"paint":[217.8,215.7,217,218.3,217.4,219.5,215.5,216.9,215.6,219.8,217.4,219.6,218.1,218.4,217.8]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.4,37.3,37.2,37.2,36.9,37.3,37.6,36.9,37.3,37.2,37.4,37.2,37.3,37.1],"script":[10,10,11,10.8,10.6,10.8,10.9,11,10.7,10.8,10.9,11,10.7,10.7,10.7],"paint":[25.8,25.5,25.4,25.4,25.7,25.1,25.4,25.7,25.3,25.5,25.4,25.4,25.6,25.6,25.5]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.7,13.4,13.9,11.9,12.9,16.6,12.1,13.6,14.1,13.4,13.7,13,12.8,12.9,12.9],"script":[11.5,11.4,11.5,10,10.8,14.1,9.4,11.3,11.8,11.6,11.2,10.7,11,10.8,10.4],"paint":[1.9,1.6,1,0.6,0.7,2.1,0.7,1.4,1.2,0.6,1.3,1.2,0.8,0.6,1.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.149679183959961]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.756658554077148]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.269742965698242]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.692923545837402]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.592573165893555]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[176.3]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[28.5,29.6,30.1,29.6,29.8,29.6,29.3,29.4,29.4,29.7,29.5,29.9,29.4,29.5,30.3],"script":[6.6,7.1,7.5,7.1,7.4,6.9,6.8,7,6.9,7.1,6.9,7,7.1,6.8,7.5],"paint":[21.4,22,22,22,21.8,22.2,21.9,21.8,22,22.1,22,22.4,21.7,22.1,22.2]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[34.8,34.4,34.9,35.4,34.4,34.8,35.2,36.2,34.9,34.5,34.7,34.4,35.2,34.6,34.7],"script":[11.3,11.2,11.3,12,11.2,11.3,11.4,11.9,11.4,11.2,11.6,11.3,11.5,11.2,11.3],"paint":[23,22.6,23,22.8,22.6,22.9,23.3,23.7,22.8,22.8,22.5,22.5,23.1,22.8,22.9]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.3,14.5,14.5,16.1,20.4,18.3,14.8,16.1,15.5,15.1,16.4,15,15.9,14.8],"script":[4,3.7,3.5,3.7,3.7,4.3,4.5,3.7,4.4,3.6,3.8,4.6,3.3,4.5,3.5],"paint":[9.7,10.1,9.8,9.5,11.3,13.9,12.4,9.4,10.5,10,9.7,10.5,10.5,10.7,9.7]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.2,5.8,5.6,6,5.2,5.3,5.7,5.8,6.2,6.1,5.9,5.3,5.9,5.4,5.5,5.4,5.9,5,6.1,7.1,5.3,6.2,5.7,5.2,5.4],"script":[3.7,3.1,3.2,3.2,3.4,2.8,3.2,3,3.9,3.1,3.7,3.1,3.4,3,3.4,3.3,3.4,2.9,3.7,5,3.5,3.4,3.1,3.5,3.2],"paint":[1.9,2.6,1.2,2.7,1.2,2.1,1.4,2.7,1.8,2.4,1.6,1.3,2.3,2.1,2,0.9,2.4,2,1.8,2,1.3,2.4,1.7,1,1.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[16.7,16,16.3,15.9,16.2,15.7,17.6,16,16.6,16.3,16.1,16.3,16.5,17.2,15.6],"script":[3.6,2.9,3,3.4,2.8,3.2,3.1,3.5,3.1,3.2,3.5,3.1,2.9,3.6,3.5],"paint":[11.8,12.1,12.3,10.8,12.2,10.7,13.4,11.2,12.3,11.5,11.5,12.3,12.6,12,10.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.7,12.7,12.8,12.5,13,12.6,12.6,12.6,13.1,13.9,12.4,12.6,12.7,12.5,12.6],"script":[2.4,2.4,2.4,2.4,2.4,2.2,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4,2.4],"paint":[9.4,9.8,9.6,9.6,10.2,9.8,9.4,9.7,10.1,10.6,9.4,9.7,9.7,9.6,9.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[301.1,298.4,299.8,300,302.2,302.3,298.5,300.7,300.5,299.5,300.9,301.5,300.1,300.4,301.7],"script":[66.7,65.8,66.6,66.1,66.6,66.4,65.6,68,67,66.1,66.1,65.1,66.6,66.4,66.7],"paint":[226.8,225.1,225.8,226.5,228.2,228.6,225.4,225.2,226,225.9,227,228.5,225.9,225.9,227.5]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,34.1,35.4,34.9,34.8,34.3,34.3,34.9,34.5,33.8,34.1,33.6,34.2,35,34.3],"script":[7,6.8,7.1,6.7,7.1,7,6.9,7,7,6.7,6.9,6.8,6.8,7.2,7],"paint":[26.9,26.3,27.4,27.3,26.8,26.4,26.4,27,26.6,26.2,26.3,25.8,26.5,27,26.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.6,17.7,18.4,18.2,18,18.2,17.7,18.4,17.9,18.9,18.8,17.8,16.2,18.1,18.2],"script":[15.7,15.3,16.2,16.2,15.6,15.8,15.8,16.3,15.4,17.1,16.8,15.7,14.3,15.5,15.8],"paint":[0.3,1.8,0.9,0.8,2.1,1.2,1.1,1.6,2.1,1.2,1,1.3,0.5,1.8,1.4]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7738256454467773]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.465622901916504]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.5286149978637695]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.54787540435791]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.14680194854736]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[189.6]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.8]}},{"framework":"leptos-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.2]}},{"framework":"lit-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.7,26.3,26.4,27,27.3,26.5,26.5,26.3,26.7,26.6,27.7,29.4,26.5,26.4,26.1],"script":[4.4,4.4,4.4,4.6,4.5,4.4,4.3,4.4,4.4,4.3,4.8,5.2,4.5,4.4,4.3],"paint":[21.8,21.5,21.6,21.9,22.4,21.7,21.7,21.5,21.9,21.9,22.4,23.6,21.6,21.6,21.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[29.9,29.3,30.6,30.1,31.1,30.3,29.8,30,30,30.1,30.5,30.5,29.9,30.2,29.9],"script":[6.7,6.6,7.1,6.6,6.9,6.8,6.7,6.9,6.9,6.7,7,6.9,6.7,6.9,6.7],"paint":[22.6,22.2,22.9,22.9,23.6,22.9,22.4,22.6,22.6,22.9,22.9,23,22.7,22.8,22.6]}},{"framework":"lit-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,12.9,11.8,12.4,13.1,13.2,12.1,12.8,13.1,12.3,12.7,13.1,12.4,12.5,12.3],"script":[2.4,1.8,1.5,2.4,2,2.6,2.5,2.1,2.2,2,1.5,2.1,1.9,1.4,1.7],"paint":[9.9,10.2,9.4,9.1,9.8,8.8,8.6,9.6,9.9,9.1,10,10,8.3,8.9,9.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.3,4.5,4.5,3.7,4.5,4.5,3.7,4,4.5,4.2,3.9,3.4,4.1,3.8,3.7,4.3,4.1,4.3,3.9,4.6,4.6,4.1,4.3,4],"script":[1.4,1.7,1.9,1.8,1.6,2.1,2,1.5,1.8,1.7,1.5,1.5,1.6,1.3,1.7,1.2,1.4,1.9,1.5,2,1.9,2.2,1.7,1,1.5],"paint":[1.4,1.6,2.5,1.9,1.9,1.9,1.5,2,1.5,1.8,1.5,1.5,1.7,2.7,1.6,1.4,2.4,1.2,2.6,1.1,2.6,2.1,1.7,3.1,2.4]}},{"framework":"lit-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[15.2,14.9,15.5,15.7,16,16.2,15.7,15.6,15.3,15.6,16,16.2,15.5,15.4,14.1],"script":[1.8,1.6,2.4,1.8,2.1,2,1.8,1.3,1.9,2.5,1.5,1.8,1.5,1.6,1.3],"paint":[12.5,11.8,11.6,12.9,12,13.1,12.4,13.4,12.8,12.1,13,12.4,13,12.1,11.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.7,11.8,11.8,11.6,11.9,11.6,11.8,11.3,11.9,11.6,12.2,11.8,11.7],"script":[1,0.9,0.8,1.1,0.9,1.2,1,1.1,0.9,1,1.2,1.1,1,1.1,1.1],"paint":[10.1,9.7,10.2,10.2,9.9,9.5,10.3,9.7,10.3,9.7,10.2,9.2,10.6,10,9.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[280.9,279.7,282.2,276.2,278.4,279.2,281.2,280,280.5,279.7,280.2,278.3,281,280.1,279.1],"script":[44.4,44.6,44.4,43.6,44.5,44.4,44.5,44.5,44.7,44.3,44.1,44.3,46.6,44.8,44.6],"paint":[228.7,227.3,229.8,225,226.3,227,228.6,227.9,228,227.6,228.2,226.4,225.9,227.5,226.8]}},{"framework":"lit-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.5,32.8,31.7,31.3,31.7,33.1,32.6,32.4,31.9,32.3,32.2,31.4,33,32.4],"script":[4.9,4.8,5.2,5,4.8,4.8,5,5,5.1,5.1,5.1,5,4.9,5,5.1],"paint":[26,25.9,26.5,25.8,25.7,26.1,27.1,26.6,26.3,25.9,26.2,26.4,25.7,27.2,26.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.4,11.6,11.7,11.2,11.2,11.8,12.5,11.9,13.6,12.3,11.8,11.6,10.5,13.7,11],"script":[9.9,10.1,9.6,9.7,9.4,9.8,10.4,10.6,10.1,10.2,10,9.7,9.1,10.4,9.9],"paint":[0.7,0.6,1.5,0.7,1.1,0.8,0.7,0.3,1.3,1,0.9,1,1.2,1.1,0.9]}},{"framework":"lit-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6813297271728516]}},{"framework":"lit-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.8658885955810547]}},{"framework":"lit-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8727407455444336]}},{"framework":"lit-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8226385116577148]}},{"framework":"lit-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.105656623840332]}},{"framework":"lit-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.1]}},{"framework":"lit-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"lit-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"01_run1k","values":{"total":[26.9,26.7,26.1,25.8,26,26.2,26.5,26,26.6,25.7,25.7,26.3,26.6,26.1,26.2],"script":[3.9,3.8,3.6,3.6,3.8,3.7,3.8,3.8,3.7,3.5,3.5,3.5,3.8,3.5,3.7],"paint":[22.6,22.5,22.2,21.7,21.8,22.1,22.4,21.8,22.4,21.8,21.8,22.4,22.4,22.2,22.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"02_replace1k","values":{"total":[28.8,29.4,29.7,29.3,29.2,29.3,29.6,29.3,29.1,29.4,29.5,29.8,29.1,29.7,29.2],"script":[6.2,6,6.3,6.3,6.3,6.4,6.3,6.4,6.2,6.3,6.4,6.2,6,6.5,6.2],"paint":[22,22.9,22.7,22.4,22.4,22.4,22.8,22.4,22.3,22.5,22.6,23.1,22.5,22.7,22.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.5,11,11,11.8,11.4,12.1,11.6,10.9,11.4,12.4,11.5,11.2,12.1],"script":[1.5,1.3,1,1,1.6,1.5,1.4,1.5,1,1.4,1.1,1.1,1.5,1.7,1.5],"paint":[9.1,8,8.8,9,8.5,10,8.3,9.5,9.9,8.6,9.4,10.2,8.8,8.6,9.3]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.5,3.7,3.4,4.2,4,3.6,4,3.8,3.3,3.8,3.7,3.2,2.9,4,3.4,3.6,3.4,3.5,3.9,4.4,3.5,3.7,3.6,3.6,3.9],"script":[1.1,1.3,1,1.5,1.4,1.5,1.7,1.1,1.1,1.2,1,1,1,1,1.1,1.5,1,1.4,1.7,2.1,1.3,1.5,0.6,1.3,1.5],"paint":[1.8,1.9,1.7,2.5,2.1,1.8,2.2,2.1,1.3,1.6,2.2,2.2,1.1,2.1,2.2,1.4,2.3,1.4,2.1,1.7,1.4,1.7,2.2,2.2,2]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.6,14.3,15.3,13.8,13.6,14.2,14.7,14,14.5,14.7,13.7,14.1,14.1,14.5,14.3],"script":[0.9,0.6,1.2,1.2,1,1.5,1.1,0.9,1.6,1.3,1,1.3,1.1,1.3,1.8],"paint":[12.3,12.2,12.7,11,11.1,11.5,12.5,11.2,11.4,12.3,11.5,11.6,11.8,12.6,11.4]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.6,11.3,11.4,11,11.5,11.5,11.4,11.1,11.2,11.1,11.8,11.3,11.3,11,11.3],"script":[1,0.6,1,0.7,0.9,1,0.7,0.8,0.8,0.7,0.9,0.8,1,0.8,0.8],"paint":[10.9,10,9.8,9.7,9.7,9.8,10.4,9.2,9.7,9.6,10.4,9.6,9.7,9.7,9.6]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"07_create10k","values":{"total":[269.1,270,269.8,268.6,269,269.8,269.8,269.1,269.7,268.4,272.9,271.8,269,272,270],"script":[37,37.5,37.1,36.4,37.7,37.6,37.1,37.5,37.5,37,37.6,37.6,37.6,37.2,37.1],"paint":[224.8,224.9,225.3,224.8,224,224.7,225.2,224,224.6,223.5,227.4,226.4,223.9,226.9,225.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,32,31.8,32.1,31.4,31.9,31.6,31.5,31.9,31.8,31.2,31.7,32,31.9],"script":[4.2,4.4,4.2,4.4,4.4,4.2,4.3,4.1,4.2,4.4,4.1,4,4,4.1,4.1],"paint":[27.4,26.5,27,26.6,26.9,26.4,26.7,26.6,26.6,26.7,26.9,26.4,26.9,27.1,27]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.7,13,11.8,11.8,12.6,12.4,11.6,11.4,11.6,11,12,11.7,12.3,11.9,12.5],"script":[10.7,11,10,10.2,10.5,10.3,10,9.1,9.4,9.4,10.3,9.7,11.2,10.5,9.7],"paint":[0.9,1.1,1.7,0.6,1.9,1.6,0.7,2.1,1.4,1.1,1.5,0.9,0.9,1.2,1.8]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5653495788574219]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.640188217163086]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.658935546875]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.726384162902832]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.03464698791504]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"lit-html-v3.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"lui-v2.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.5,29,28.5,28.8,28.5,28.5,28.6,28.4,28.6,28.4,28.8,28.4,28.5,28.7],"script":[6.2,6,6.4,6,6.2,6.1,6,6,6,6,6,6.1,6,6,6],"paint":[22.1,21.9,22.1,22,22,21.8,22,22.1,21.8,22.2,21.9,22.1,21.8,22,22.1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.3,32.7,32.3,33.1,32.5,32,32.4,32.6,32.8,32.2,32.4,32.3,32.4,32.4],"script":[8.8,8.8,8.9,8.9,9.2,8.9,8.7,9,8.8,8.9,8.6,8.8,8.8,8.9,8.9],"paint":[23.3,22.9,23.3,22.8,23.4,23,22.7,22.9,23.2,23.2,23,23.1,23,23,23]}},{"framework":"lui-v2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.6,14.3,14.9,14.2,14.8,14.5,14.6,14.5,14.9,14.5,14.4,14.2,14.3,14.7,16.4],"script":[3.5,3.4,3.8,3.1,3.6,3.4,3.4,3.9,3.5,3.5,3.3,3.4,3.2,4,3.7],"paint":[10,9.6,9.3,10.2,10.3,9.9,10,9.5,9.7,9.5,9.5,9.9,9,9.4,11.6]}},{"framework":"lui-v2.2.0-keyed","benchmark":"04_select1k","values":{"total":[10,9.1,9.1,11.2,9.4,9,9.4,9.2,9.4,8.9,9.4,9.5,9,9,8.7,9.1,8.8,8.9,9.4,10.3,9.1,9.7,9.8,9.9,9.4],"script":[6.6,6.4,6.2,6.9,6.2,5.8,6,6.2,5.8,5.9,6.1,6.2,6.2,5.8,5.4,5.6,5.6,5.9,5.9,6.9,6.1,6.4,6.6,6.7,6.5],"paint":[2.4,1.3,1.8,1.8,1.3,2.2,1.8,1.5,2.8,1.4,2.3,2.3,0.9,1.5,1.9,3.1,2.3,2,2.3,2.2,2,2.1,2.2,2.4,1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[100.4,102.2,100.6,101.6,101.9,101.5,100.9,100.7,101.6,101.1,100.1,102.5,102.9,101,101.8],"script":[11.3,12.7,11.4,12.5,12.5,11.5,12.1,11.6,11.8,12.9,12.4,12.2,11.8,11.4,12],"paint":[86.7,87.7,86.8,86.4,87.4,87.6,86.5,86.5,87,84.8,85.2,87.6,88.7,86.8,87.7]}},{"framework":"lui-v2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.1,11.1,11.2,11.6,11.4,11.3,11.5,11.5,10.9,11.4,11,13,11.2,11],"script":[0.5,0.5,0.5,0.5,0.4,0.5,0.3,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[10.1,10,10,9.8,10.7,10,10.2,10.4,10.2,10,10.5,9.7,11.8,10.1,10.1]}},{"framework":"lui-v2.2.0-keyed","benchmark":"07_create10k","values":{"total":[279.6,282.4,280.5,283.6,289.4,280.8,280.4,279.6,282.9,281,280.9,283,281.4,280.3,282.1],"script":[57.4,59.2,58.3,58.4,57.4,58.5,58.6,58.3,57.8,58.4,58,59.2,58.6,58.4,59],"paint":[215,216,215,218,222.1,215.1,214.7,214.2,218,215.3,215.7,216.6,215.5,214.8,215.9]}},{"framework":"lui-v2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.4,33.5,34.2,33.5,33.5,34.1,34.1,34.5,33.4,34.7,33.9,33.6,34.1,34.1,33.7],"script":[5.9,5.8,6.2,5.9,5.9,6,6,6.3,5.8,6.3,6.3,5.8,6,6.3,5.9],"paint":[26.5,26.8,27.1,26.7,26.7,27.2,27.2,27.3,26.7,27.4,26.6,26.8,27.2,26.8,26.9]}},{"framework":"lui-v2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,11.8,10.9,11.1,11.6,11.7,11.9,11,11.6,11.8,11.6,10.8,11.1,11.4,11.8],"script":[9.1,9.8,9.4,8.8,9.6,9.3,9.8,9.2,9.6,9.6,9.5,9,9.6,9.4,9.7],"paint":[1.1,0.4,0.3,1.2,1.2,1.7,1.5,1,1.8,1.4,1.1,0.2,0.9,0.7,1.8]}},{"framework":"lui-v2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5827789306640625]}},{"framework":"lui-v2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8807802200317383]}},{"framework":"lui-v2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9674386978149414]}},{"framework":"lui-v2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.710139274597168]}},{"framework":"lui-v2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.75620174407959]}},{"framework":"lui-v2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.4]}},{"framework":"lui-v2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.5]}},{"framework":"lui-v2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"01_run1k","values":{"total":[28.5,28.7,28.4,28.2,28.6,28.9,28.9,28.5,28.7,28.2,28.4,28.3,28.7,28.7,28.7],"script":[6,6,6,6,6,6,6.4,6,6.1,5.9,6.1,5.9,6,6,6.3],"paint":[22,22.1,21.8,21.7,22,22.4,22,21.9,22,21.8,21.8,21.9,22.1,22.2,21.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.5,32.5,33.1,32.7,32.3,33.1,32.5,32.3,32.5,33.1,32.1,32.6,32.6,32.1],"script":[8.8,8.8,8.9,9,8.8,8.9,9.2,8.9,8.9,9,9.2,8.8,9,9.2,8.7],"paint":[23.2,23.1,23,23.5,23.2,22.8,23.4,23,22.7,23,23.3,22.8,23,22.8,22.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.7,14.1,14.4,14.1,14.7,14.4,15.6,15,15,14,14.9,14.7,14.3,14.1,14.4],"script":[3.3,3.4,3.6,3.4,3.8,3.5,4.3,4,3.9,3.4,3.5,4.1,3.6,3.8,3.6],"paint":[9.6,9.4,9.9,9.5,9.2,9.8,10.2,10,9.6,9.5,9.4,9.6,9.6,9.3,9.9]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"04_select1k","values":{"total":[10.1,9.7,10.1,9.6,9.7,9.9,9.6,9.9,10.3,9.7,8.9,9.5,9.5,9.6,9.8,9.9,9.9,9.4,8.8,10.1,9.8,9.6,9.2,9.1,9.5],"script":[6.7,6.8,6.8,6.5,6.4,6.7,6.5,7.2,7.2,6.1,5.9,6.5,6.3,6.5,6.7,6.5,7,5.7,6.1,7,6.8,6.3,6.4,6,6.8],"paint":[1.5,1.3,1.9,1.7,2.6,1.5,2.3,1.9,2,3.2,1.4,2.7,1.9,1.6,0.7,1.7,1.9,2.2,1.2,1.8,1.7,1.7,1.3,2.1,1]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[101.4,100.3,102.2,101.7,102.8,102.2,104.4,100.5,103.2,99.3,101.8,102.1,101,101.5,102.1],"script":[12,11.8,12.8,12.6,11.8,12,13.4,11.5,11.7,12.3,12.7,11.9,12.4,12.5,11.8],"paint":[86.9,86.9,87,87,89.3,87.7,88.1,87.1,89.2,84.8,86.7,87.7,86.6,86.8,87.8]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.4,11.7,11.4,11.3,10.9,10.6,11.2,10.7,10.8,11,12.2,11.4,10.8,11],"script":[0.5,0.5,0.4,0.5,0.7,0.5,0.4,0.4,0.3,0.4,0.7,0.6,0.6,0.5,0.6],"paint":[9.7,10.1,10,10.3,10.1,9.7,9.1,10.2,9.6,10,9.9,10.4,10.2,9.5,9.5]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"07_create10k","values":{"total":[285.7,283.2,283.4,281.3,281.2,285.5,282.8,284.1,282,283.6,282,285.8,282.4,284.3,282.2],"script":[58.9,58.7,57,57.3,57.6,57.7,58.1,57.9,57.4,57.8,57.5,60.7,57.1,58.6,57.7],"paint":[219,216.8,218.5,216.4,216,220,217.1,218.2,217.4,218.3,217.2,217.9,218.2,218.3,217.2]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.5,32.8,34.3,36.5,33.7,34,33.5,33.6,34.3,33.6,34,34.1,35,33.8,34.1],"script":[5.9,5.9,6,6.4,5.9,6,5.8,5.8,6.2,5.9,6,5.9,6,6,5.9],"paint":[26.7,26.1,27.4,28.9,26.8,27,26.8,26.9,27.1,26.7,27.1,27.2,28,26.9,27.3]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,11.9,12.1,11.4,11.9,11.4,10.5,12.4,11.3,11.4,11.3,10.9,12,11.7,11.5],"script":[10,9.5,9.8,9.4,9.5,9.5,8.9,10.2,9.6,9.7,9,9.5,9.5,9.6,8.9],"paint":[0.9,2.1,1.6,0.3,1.8,1.7,0.2,1.2,0.7,0.3,1.3,0.3,2.2,0.9,1.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5812788009643555]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.926778793334961]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.931809425354004]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6809272766113281]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.74577045440674]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.6]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.5]}},{"framework":"lui-noeval-v2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.8,26.9,27.1,29.3,26.7,27.3,26.8,26.8,27.8,26.8,27.1,26.9,27.1,26.9],"script":[4.9,4.8,4.8,4.7,5.2,4.7,5,4.7,4.7,5.1,4.7,4.9,4.7,4.8,4.8],"paint":[21.6,21.6,21.7,21.9,23.5,21.6,21.9,21.7,21.7,22.1,21.8,21.8,21.8,21.9,21.8]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"02_replace1k","values":{"total":[30.7,31.4,30.4,31.1,31.4,31.1,31.2,30.9,31.1,31.3,31.7,31.6,31.7,30.7,30.7],"script":[7.9,8.4,7.9,8.1,8.2,8,7.9,8,7.9,7.8,8,8.2,8.1,7.8,8],"paint":[22.2,22.4,22,22.5,22.6,22.5,22.7,22.3,22.6,22.9,23.1,22.9,23,22.3,22.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.6,15.5,15.7,15.9,16.7,17,16.5,16.1,16.6,16.5,14.7,16.7,15.3,15.5,16.2],"script":[5,5.1,4.4,5.1,5,5.5,4.5,4.9,5.5,5,4.9,5.6,4.6,4.7,5.6],"paint":[9.5,8.3,9.9,9,9.4,9.2,10.1,9.6,9.3,9.9,8.6,8.9,9.5,9.6,9.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,7,7.4,6.5,6.4,6.4,6.7,6.7,8.8,8,6.7,8.4,6.8,7.3,7.3,6.9,6.7,6.4,6.4,6.3,7,7.1,7.6,6.9,6.8],"script":[4.7,4.5,5.1,4.6,4.2,4.5,4.9,4.8,5.6,4.8,4.6,5.5,4.3,4.3,4.8,3.9,4.5,4.4,4.3,3.9,4.4,4.9,4.6,4.7,4.4],"paint":[1,2.3,1.7,1,1.2,1.7,1.3,1.7,2.9,2.3,1.7,1,1.4,2.8,1.5,2.4,0.5,1.9,1.4,1.9,1.9,2,2.7,2.1,1.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"05_swap1k","values":{"total":[18.2,17.9,17.4,17.3,19.1,18.3,20.1,17.7,17.7,18.4,18,17.7,18.7,17.5,17.1],"script":[4.6,4.8,4.5,4.9,5,4.8,6.1,4.8,4.1,5,4.8,4.7,5,4.9,4.6],"paint":[12.9,11.1,12,10.7,11.6,12.4,12.6,11.9,12.6,12.2,11.8,11.9,11.3,11.6,11.5]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.2,13.7,14,12.7,13.8,14.3,13.5,13.8,13.6,13.5,15,15,13.5,14,14.1],"script":[3.1,3.4,3.6,2.5,3.5,3.6,3.3,3.4,3.3,3.1,4.1,3.9,3.1,3.6,3.4],"paint":[9.9,9.4,9.5,9.6,9.7,10.1,9.7,10,9.8,9.7,10.3,10.2,9.7,9.4,10.1]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"07_create10k","values":{"total":[273.9,268.3,271.1,271.1,271.2,272,270.2,273.1,271,271.2,271.9,273.2,271.9,271,274.3],"script":[41.4,41.1,41.4,41.1,40.5,41.5,41.7,40.5,40,40.5,41.2,41.6,40.9,39.7,40.7],"paint":[225.4,219.9,222.3,222.8,223.3,223.4,221.2,225,223.5,222.9,223.6,224.3,223.6,223.9,226.2]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.8,33.7,33.6,34.1,33.6,33.8,33.3,33.4,33.3,33.4,33.5,33.4,33.9,33.2,33.5],"script":[6.8,6.7,6.6,6.7,6.6,6.4,6.6,6.7,6.4,6.5,6.7,6.4,6.6,6.3,6.6],"paint":[27,26.1,26.1,26.4,26.1,26.5,25.8,25.7,26.1,26,25.9,26.1,26.4,26,25.9]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,11.6,10.8,11.9,11.5,11.3,11.1,11.6,11.3,12.5,12.1,11,11.8,11.4,11.6],"script":[10.6,9.6,8.7,9.5,9.6,9.3,8.9,9.4,9.6,10,9.4,9.5,9.7,9.7,9],"paint":[0.8,0.6,1.9,1.5,0.3,1.1,1.3,1.3,1.1,2.3,2.3,0.7,1,1.1,1.7]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8073711395263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.333477020263672]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3469905853271484]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3774919509887695]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.8456974029541]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[58.4]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.6]}},{"framework":"lwc-v8.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[24.9,24.8,24.6,25,25.1,24.9,24.8,24.8,24.6,24.8,24.8,24.9,25,24.9,24.8],"script":[2.7,2.6,2.6,2.6,2.6,2.6,2.7,2.6,2.7,2.6,2.7,2.7,2.7,2.6,2.6],"paint":[21.8,21.8,21.6,22,22,21.9,21.7,21.8,21.6,21.8,21.7,21.8,22,21.9,21.8]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.6,27.7,27.4,27.7,27.7,27.6,28.2,28,27.8,27.5,27.9,28.6,27.6,27.5],"script":[4.6,4.6,4.6,4.6,4.7,4.6,4.7,4.9,4.7,4.6,4.6,4.8,4.7,4.6,4.7],"paint":[22.8,22.5,22.6,22.4,22.6,22.6,22.5,22.9,22.9,22.7,22.4,22.6,23.5,22.6,22.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.7,10.9,12.5,10.9,10.8,13.1,12,12.1,10.7,10.9,10.7,10.8,11,10.5],"script":[0.5,1.1,1,1.3,0.6,0.2,0.8,1.2,0.7,0.2,0.6,0.2,0.6,0.8,0.6],"paint":[9.9,10,8.9,9.8,9.2,9.6,10.8,9.1,9.9,8.6,9.7,9.5,9.5,8.7,8.7]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,3,2.8,2.9,3,2.8,3,2.3,3.9,2.8,2.2,2.4,2.6,3.1,2.8,2.8,2.4,2.4,2.4,2.3,2.2,2.4,2.6,2.7,2.9],"script":[0.6,0.6,0.8,1,0.8,0.1,0.1,0.1,0.8,0.6,0.1,0.7,0.7,0.1,0.9,0.6,0.5,0.3,0.1,0.1,0.1,0.5,0.1,0.9,0.6],"paint":[1.6,2.3,1.1,1,0.5,1.5,2.6,1.3,1.4,1.7,1.6,1.6,1.7,2.8,1.4,2,1.8,1.9,2.2,1,2,1.8,1.5,1.2,1.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[15,13.3,14,15.4,14.8,14.5,14.3,14,14.9,15.7,15.2,13.4,17,13.9,14.4],"script":[1.7,0.9,1.1,1.4,1.8,1.5,2,2,1,1.2,1.8,1.1,2.2,1.2,1],"paint":[12.1,11.7,11.1,12.9,11.5,12.3,11.2,11.8,13.6,12.9,12.4,11.3,13.8,11.7,12.4]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.2,10.7,11.3,11.5,10.9,11,11.1,10.8,10.9,10.9,10.9,10.9,11.3,11,10.5],"script":[0.7,0.6,0.7,0.9,0.7,0.7,0.8,0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.6],"paint":[9.8,9.2,10.3,10,9.4,9.7,9.7,9.2,9.4,9.6,9.5,9.6,10.1,9.1,9.6]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[257,257.5,259.5,257.2,257.7,257.5,256.8,256.8,256.8,258.4,256.9,255.3,256.8,259.1,256.1],"script":[28.2,27.9,28,28.2,27.7,27.7,27.7,28.2,27.6,28.1,27.3,27.7,27.9,27.9,27.6],"paint":[221.5,222.4,224,221.2,222.6,222.8,221.9,221.4,221.9,223.1,222.4,220.6,221.7,223.8,221.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,30.3,30.3,30.5,30.5,31,30.3,30.7,30.9,30.8,30.7,31.3,31.1,31.4,30.2],"script":[3.1,3.1,3.2,3.1,3.3,3.1,3.2,3.3,3.2,3.3,3.1,3.5,3.3,3.2,3.2],"paint":[26.2,26.4,26.4,26.6,26.4,27.1,26.4,26.7,26.9,26.8,26.8,27,27.1,27.4,26.3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.2,9.1,9.2,9.9,10.3,9.7,9.6,9.2,10.7,10,8.3,9.9,9.2,8.7],"script":[7.5,7.8,7.8,7,7.8,8.8,7.4,7.9,7.4,8.5,7.3,6.3,7.6,7.6,6.8],"paint":[0.2,0.7,0.2,1.3,1.8,0.5,1.3,0.6,1,2,2.1,1.8,1.4,0.3,0.9]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5475587844848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.524415969848633]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.535733222961426]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7301301956176758]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.066320419311523]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.2]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[30.6,28.5,28.4,28.9,28.1,28.5,28.3,28.9,29,28.9,28.6,28.4,28.9,28.2,28.5],"script":[6.6,6.8,6.7,6.7,6.3,6.5,6.7,6.8,6.9,6.8,6.6,6.4,6.6,6.5,6.6],"paint":[23.4,21.2,21.2,21.7,21.2,21.4,21.1,21.6,21.5,21.6,21.5,21.5,21.7,21.1,21.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31,31.3,31.3,31.3,32.3,31,31.2,31.2,31.2,31.1,31.2,31.8,31.2,31.4],"script":[8.5,8.6,8.7,8.8,8.4,8.4,8.4,8.8,8.6,8.6,8.5,8.5,9.3,8.5,8.6],"paint":[21.2,21.8,22,21.9,22.3,23.3,22,21.9,22,22.1,22,22.2,21.9,22.1,22.3]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,14.9,15.6,14.7,16,14.4,15.1,15.9,15.3,15.1,14.5,15.1,15.3,15.4,14.7],"script":[4.6,5,4.8,4.6,5.1,3.8,4.8,4.6,4.3,4.9,4.7,5.1,4.9,4.2,4.8],"paint":[9.3,7.6,9.2,8.9,9.8,8.9,9,10.2,10.4,8.8,8.6,8.9,9.4,9.9,8.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.2,2.8,3.4,2.9,2.9,3,2.9,2.8,2.7,3.4,2.5,2.1,3,2.9,2.5,3.1,3,3,2,2.1,3,3.2,2.7,2.8,2.5],"script":[0.1,0.1,1.1,0.8,0.1,1,1.1,0.5,0.5,0.8,0.9,0.3,0.9,0.5,0.1,1.1,0.1,0.9,0.1,0.2,1.1,0.9,0.5,0.9,0.1],"paint":[2.6,2.1,1.6,0.5,2.6,1.7,1.1,1.1,1.4,2.4,1,1.1,1.5,1.5,2,1.2,2.8,1.5,1.1,1,1.8,2.1,2,1.3,1.6]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.7,12.8,12.7,13.1,13,12.9,12.3,12.6,13.5,13.9,13.4,14,12.9,13.2,12.9],"script":[0.9,0.1,0.1,0.1,0.4,0.2,0.1,0.5,0.7,0.7,0.1,0.8,0.4,0.1,0.5],"paint":[11.7,11.2,11.6,12.1,11.5,11.5,11,11.2,11.7,11.9,12.6,12.9,11.5,11.8,11.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.5,10.6,11.2,10.4,10.3,10.6,10,10.3,10.4,10.3,10.7,10.1,10.7,10.5],"script":[0.2,0.3,0.4,0.3,0.4,0.4,0.3,0.2,0.2,0.3,0.3,0.3,0.1,0.3,0.1],"paint":[9.9,9.4,9.8,10.2,9.6,9,9.7,9.3,9,9.4,9.3,9.8,9.5,9.9,9.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[280.1,277.4,274.6,277,274.6,279.9,278.7,278.8,278.7,276.9,277,280.5,277.5,276.3,276.8],"script":[47.9,47.9,46.8,47.5,47.3,48,47.4,47.4,49.2,47.3,46.7,47.6,47.2,46.6,47.2],"paint":[224.3,222.5,220.5,222.1,220.1,223.8,223.9,223.6,222.3,222.5,223,224.9,223,222.6,222.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33,32.1,32.7,33.9,33.2,33.7,33.6,32.4,33.4,33.2,33.7,33.2,33,32.5,33.1],"script":[6.4,6,6.3,6.4,6.4,6.7,6.4,6.3,6.4,6.2,6.5,6.4,6.4,6.3,6.1],"paint":[25.6,25.2,25.5,26.5,25.9,26.1,26.2,25.2,26,26.1,26.2,25.8,25.7,25.3,26.1]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.1,13.8,15.3,14.9,15.6,15,15.8,15.8,14.9,15.4,14.8,14.7,15.2,14.2,15.8],"script":[12.9,12.6,13.5,13.2,13.4,13,13.9,13.8,13.5,13.6,12.7,12.7,13.3,11.7,14],"paint":[1.3,1,1.2,0.7,0.7,0.9,1.1,1.7,0.5,0.6,0.3,1.1,0.5,1.6,0.5]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7664394378662109]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.671788215637207]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8554611206054688]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0164203643798828]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.509987831115723]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[65.2]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[35.4,35.8,35.7,35.8,36.4,35.7,36.1,36.1,35.6,35.6,36,36.1,35.8,36.3,36],"script":[12.7,13.1,12.9,12.8,13.4,12.8,13.1,13.2,12.7,13.1,13,13,13,13.3,13.2],"paint":[22.1,22.1,22.3,22.4,22.5,22.4,22.4,22.3,22.4,22.1,22.4,22.6,22.3,22.5,22.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[39.9,38.3,39.2,39.1,39.5,39.3,38.4,38.5,39.1,39.7,39.1,38.6,39,38.9,39.9],"script":[15.3,15.1,15.3,15.6,15.8,15.6,15.1,15.2,15.5,16.1,15.6,15.2,15.6,15.2,15.8],"paint":[24,22.6,23.4,22.9,23.1,23.1,22.7,22.7,23,23.1,22.9,22.8,22.8,23.1,23.6]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.2,11.6,11.7,12.4,12.3,11.6,13.8,13.5,12.7,11.9,11.7,11.3,11.4,12.2,11.4],"script":[1.1,1,1.3,1.7,1.9,1.4,2.1,1.3,2,1.5,1.3,1.4,1.1,0.9,1.3],"paint":[9.8,9.3,9.2,9.4,8.7,8.7,9.8,10.5,9.6,8.7,9,8.8,9.3,10,8.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[5.4,2.7,1.9,2.4,2.5,1.6,2.6,2.4,2.8,2.6,2.4,2.5,2.4,2.2,2.3,2.2,1.8,2.1,2.3,2.1,2.6,2,2.2,2.1,2.4],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.9,0,0.8,0.1,0.1,0.1,0,0.1,0,0,0,0.7,0.1,0.1,0,0.3,0.1,0.7,0],"paint":[1.4,2.5,1.5,1.6,1.9,1,1.2,1.5,1.9,2.4,0.7,2,2.2,0.9,1.8,1.2,1.5,1.3,1.2,2,2.4,1.2,1.9,1.3,2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[12.9,13.1,14.7,12.8,13.2,13.1,12.9,12.3,13.4,13.2,12.4,12.7,13.2,13.1,12.5],"script":[0.7,0.1,0.1,0.6,0.1,0.9,0.9,0.1,0.1,0.1,0.4,0.4,0.5,0.5,0.1],"paint":[11.2,11.9,13,10.5,11.6,11.1,10.6,11.3,11.9,11.8,11.1,11.3,11.3,10.9,11.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.3,10.6,10.4,10.9,10.3,10.7,11.9,10.3,10.2,10.4,10.7,10.3,10,10.5],"script":[0.2,0.1,0.3,0.3,0.5,0.3,0.3,0.5,0.1,0.3,0.3,0.3,0.4,0.2,0.3],"paint":[9.4,9.3,9.8,9.5,10.1,9.6,9.8,10.7,9.5,8.9,9.6,9.8,9,9.2,9.7]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[336.5,337.1,339.7,340,339.4,337.1,337.5,338.3,339.8,338.2,340.1,337.7,341,344.1,337.7],"script":[115,113.9,118.8,115.3,115,112.4,115.4,114.5,115,115.1,115.5,114.6,115,117,115.3],"paint":[214.3,216,213.8,217,217.2,217.4,215,216.4,216.7,215.7,217.4,215.7,218.4,218.8,215.2]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,39.3,39.3,39.2,38.8,40.8,39.6,38.6,40,39.3,39.3,40,39.4,39,39],"script":[12.8,12.9,12.7,12.6,12.5,13.3,12.9,12.5,13.1,13,12.6,13.2,12.8,12.9,12.6],"paint":[25.3,25.4,25.6,25.6,25.4,26.5,25.7,25.1,26,25.3,25.7,25.8,25.7,25.1,25.5]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15,15.7,15.9,15.7,15.2,14.6,15.9,15.8,15.7,16,16.7,15.1,15.4,15.6,15.5],"script":[13.3,13.5,13.6,13.5,13.1,12.7,13.1,13.4,13.4,13.5,13.2,13.6,13.6,13.6,13.8],"paint":[1.1,0.3,0.8,0.8,1,1,1.7,1.3,1.2,2.3,2.4,0.9,0.7,0.9,1]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.758763313293457]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.133251190185547]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1670188903808594]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1239166259765625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.575115203857422]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.4]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.1]}},{"framework":"marko-v6.0.88-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.2,25.8,24.3,24.4,24.4,24.8,23.9,24.6,24,24,23.9,24.5,24.1,24.1],"script":[3.8,3.7,4.1,3.7,3.6,3.7,4,3.8,3.9,3.8,3.7,3.6,3.7,3.7,3.7],"paint":[21.2,20,21.3,20.2,20.3,20.4,20.5,19.8,20.3,19.9,19.9,19.9,20.4,20,20.1]}},{"framework":"marko-v6.0.88-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.1,29.7,28.9,29.3,28.9,28.9,28.9,30.2,29.5,29.2,28.7,28.9,28.6,30.9],"script":[6.5,6.5,6.5,6.3,6.4,6.4,6.2,6.5,6.6,6.6,6.3,6.4,6.5,6.5,6.4],"paint":[22.3,22,22.6,22,22.4,22,22.1,21.9,23,22.4,22.4,21.7,21.9,21.6,23.8]}},{"framework":"marko-v6.0.88-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,13.1,21.3,12.3,20.2,12,13.1,13.2,12,12.6,11.7,13,13.5,14],"script":[2,3,3.1,3.8,1.7,2.8,2.3,2.6,2.2,1.9,1.6,2.1,2.2,2.2,2.4],"paint":[9.2,9.3,8,15,9.1,14.6,8.4,8.4,9.8,8.7,10.1,8.3,9.4,9.1,10.6]}},{"framework":"marko-v6.0.88-keyed","benchmark":"04_select1k","values":{"total":[5.3,3.6,4,3.8,3.7,3.2,3.7,4.1,3.9,3.1,3.9,3.4,3.3,3.6,3.4,3.7,3.8,3.9,3.6,4.2,3.6,2.7,4.1,4,3.3],"script":[0.7,1.2,1.8,1.6,1.9,1.8,0.7,1.8,1,1.8,1,1,1.6,1,0.7,1,1.6,1.8,1.9,2.3,1.3,1.1,1.6,2.2,1.2],"paint":[1.8,1.5,1.3,1.4,1.6,1.3,2.3,1.5,2.2,1.1,2,1.2,1.1,1.8,1.6,2.5,2.1,1.9,1.2,1.6,2.2,0.7,2.1,1.8,2]}},{"framework":"marko-v6.0.88-keyed","benchmark":"05_swap1k","values":{"total":[18.1,16.6,15.4,15.6,14.9,15.3,17.3,15.5,15.8,16.1,15.6,15.7,14.9,16.3,15.7],"script":[2.6,2.9,2.7,2.3,2.4,2.9,2.8,2.4,2.5,2.6,2.3,2,2.5,2.7,2.8],"paint":[14.4,12.8,11.7,11,11,11.6,14,11.5,11.9,11.1,11.5,12.8,11,11.7,10.4]}},{"framework":"marko-v6.0.88-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,10.9,11.4,10.9,11.5,11.5,11,11.4,11,11.3,11,11.1,11.1,11.1,11.3],"script":[0.8,0.7,1.4,0.7,1.2,0.9,1.1,0.9,0.7,1.1,0.8,0.9,0.8,0.9,0.9],"paint":[10.7,9.6,9.5,9.6,9.6,10,9.3,9.9,9.4,9.6,9.6,9.6,9.7,9.6,9.7]}},{"framework":"marko-v6.0.88-keyed","benchmark":"07_create10k","values":{"total":[272.9,268.6,268.8,267.2,268.5,271,268.5,270.8,270.6,268.2,272.6,270.2,270.8,267.5,272.1],"script":[38.1,35.9,35.7,36.7,36.7,36.1,36.5,37.2,35.9,36.4,36.5,36.2,36.6,36.7,36.6],"paint":[226.2,224.5,225.1,222.4,223.6,226.8,224,225.3,226.7,223.6,227.9,225.9,225.9,222.9,227.2]}},{"framework":"marko-v6.0.88-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.4,31.9,30.5,29.9,32.1,30.7,31.4,30.8,31.8,31.3,31.5,31.7,30.7,30.7,30.6],"script":[4.4,4.6,4.4,4.4,4.6,4.4,4.5,4.5,4.6,4.5,4.5,4.5,4.5,4.5,4.4],"paint":[25.2,26.6,25.3,24.8,26.8,25.5,26.2,25.5,26.4,26,26.3,26.3,25.5,25.4,25.4]}},{"framework":"marko-v6.0.88-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.9,10.9,10.7,11.5,10.9,11.8,11.2,11.4,10.9,11,11.4,11.2,10.3,12,11.3],"script":[9.4,9.2,8.6,9.1,8.6,10.3,9.3,9.2,8.8,9.6,8.8,9.1,8.3,9.3,8.9],"paint":[1.3,1.2,1.4,1.4,1.7,0.7,0.4,1,0.3,1.2,0.6,1.9,0.9,1.5,1.5]}},{"framework":"marko-v6.0.88-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5834779739379883]}},{"framework":"marko-v6.0.88-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6622543334960938]}},{"framework":"marko-v6.0.88-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.700641632080078]}},{"framework":"marko-v6.0.88-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9512443542480469]}},{"framework":"marko-v6.0.88-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.230067253112793]}},{"framework":"marko-v6.0.88-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11]}},{"framework":"marko-v6.0.88-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8]}},{"framework":"marko-v6.0.88-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"01_run1k","values":{"total":[40.6,39.9,42.4,42.7,37.7,37.1,37.6,38,39.7,35.6,42.6,41.4,38.7,40.8,40.2],"script":[13.1,14.5,13.5,14.7,14.6,13.4,13.4,13.9,13.6,13.2,14.9,14.5,13.2,14,14.7],"paint":[20.7,21.6,21.8,22.2,22.6,22,21.6,21.8,21.9,21.9,21.7,21.7,21.7,21.9,21.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"02_replace1k","values":{"total":[49.1,49.3,49.5,50.8,48.3,47,43.9,43.6,48.2,47.8,47.7,49,47.6,49.3,48.6],"script":[20.1,19.5,19.8,20.5,19.8,20.3,20.5,20.2,19.5,20.1,19.8,19.3,20.2,20.1,19.9],"paint":[23.1,23,23.3,23.2,23.2,23.1,22.9,23,23.3,23,22.7,23.3,23.1,23.3,23]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.5,22.3,58.5,20.5,20.9,58.3,20.7,19.5,59,20.5,20.1,57.7,21.9,58.8,21.7],"script":[6,7.8,7.5,6.4,7.1,6,6.3,6.5,7.4,6.6,6.9,6.5,6.8,7.4,7.6],"paint":[11.4,12.9,12.6,12.3,11.8,14.2,11,11,12.6,12.7,12,12.7,11.4,12.9,13]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"04_select1k","values":{"total":[11.9,15.7,13.8,13.8,14.2,15.6,10.5,9.8,10.8,9.5,15.7,15.6,9.6,16.8,15.6,11.4,9.3,13.6,12.1,10.9,15,11.9,12,13.4,11.4],"script":[7.4,6,5.5,6.2,5.9,6,5.2,5,5.2,5.6,6.7,6.9,5.5,6,5.8,6.2,5.1,5.5,6.2,4.3,5.7,5.2,5.2,4.6,6],"paint":[4,3.5,3.1,3.6,3.7,3.7,2.7,2.8,4.7,2.8,3.1,2.8,3,4.8,3.6,3.6,3.2,3.9,4,2.9,5.2,2.3,3,3.3,3.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"05_swap1k","values":{"total":[109.2,147.9,145.8,145.3,108,147.3,107.8,145.8,143.9,104.9,105.4,145.6,148.2,105.8,146.1],"script":[17.1,18.5,18.4,18,18.6,17,17,17.5,17.9,16.9,16.9,18.9,17.5,16.4,17.8],"paint":[89.1,88.7,86.5,86.2,86.5,89.8,87.5,87.4,85.3,86,86,85.9,92.6,85.9,85.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,15.6,14.9,14.7,15.2,15.8,15.7,15.9,15,16.4,15.4,14.6,16.1,19,14.7],"script":[2.7,2.6,2.6,2.4,2.9,2.5,2.5,2.7,2.8,2.7,2.5,2.4,2.7,3.1,2.7],"paint":[11.4,11.2,10.9,11,11.1,12.5,11.9,12.1,11,11.2,11.4,11.1,12.1,11.7,10.7]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"07_create10k","values":{"total":[361.7,351.7,354.9,352.6,362.6,353.7,355.3,359.7,359.2,357.1,354.9,364.1,352.6,359.9,352.1],"script":[126.4,122.2,126.2,123.7,128.6,124,121.2,128.5,128.5,123,123.7,128.6,123.6,126.4,122.7],"paint":[225.1,224.7,224.3,224.6,227.8,225.4,224,225,224.9,224.9,222.6,225.9,224.7,228.8,225]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.6,54.7,55.1,42.4,42.6,52.9,44,55.2,53.7,52.7,42.8,53,53.9,54.2,53.1],"script":[14.6,15.2,15.1,15.2,14.8,13.9,15.7,14.4,14.8,13.8,15.3,14.3,14.9,14.7,14.2],"paint":[26.4,26.5,26.7,26.5,26.5,26.8,27.1,28.8,26.4,26.8,26.2,27.6,26.4,26.8,26.8]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"09_clear1k_x8","values":{"total":[66.2,66.2,22.9,68.6,21.9,23.1,23.4,23.9,68.2,23.5,68.3,22.8,22.8,21.3,68.5],"script":[19.6,18.9,18.5,18.4,18.3,18.9,18.8,19.2,18.1,18.7,17.3,18.4,19.2,17.9,17.5],"paint":[2.1,3.1,2,3.9,2.1,2.8,3.9,3.8,3.9,2.9,2.9,2.7,2.3,2.4,3.9]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7770347595214844]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.245203971862793]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.424333572387695]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.064295768737793]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.91492462158203]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.3]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.6]}},{"framework":"marko-classes-v5.37.60-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66.9]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"01_run1k","values":{"total":[25.9,25.6,25.6,25.8,25.9,25.5,25.8,25.6,25.7,25.9,25.4,26.1,25.3,26,26.3],"script":[4.1,3.9,3.8,4,4.1,3.9,3.8,3.8,3.9,3.9,3.8,3.8,3.9,4.1,4.2],"paint":[21.5,21.3,21.4,21.5,21.4,21.2,21.6,21.4,21.4,21.6,21.3,21.8,21.1,21.5,21.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"02_replace1k","values":{"total":[29.7,29.1,29.3,29.2,28.8,29,29.2,29.2,29.2,29,29.5,29.3,29.3,29.6,29.3],"script":[6.2,6.1,6.2,6.2,6.1,6,6.2,6.2,6.2,6.1,6.1,6.3,6.2,6.2,6.2],"paint":[22.9,22.4,22.6,22.4,22.2,22.5,22.5,22.4,22.4,22.4,22.8,22.5,22.5,22.8,22.6]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,17.6,18.1,18.2,18.5,18.4,18.7,18,20.4,18,17.5,17.4,20.1,21.2],"script":[5.6,6.2,5.9,5.9,6.3,6.7,5.6,6.3,5.8,6.1,6.2,6.5,5.3,7.3,7.3],"paint":[11.1,9.4,9.6,10.9,9.5,9.1,10.3,10.1,10.3,12.8,9.6,9.2,10.1,11.1,11.5]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"04_select1k","values":{"total":[6.7,6.5,7,6.7,6.1,6.9,6.4,6.5,7,6.4,7.3,8.1,6.5,6.4,6.7,7.2,6.5,6.3,5.7,6.9,7.5,8.5,7.3,6.5,5.6],"script":[4.2,3.4,4.3,4.8,4.1,4.2,4.4,3.8,4.5,4.5,4.4,5.2,3.7,3.9,4.5,4.6,4.1,3.9,3.7,4.5,4.9,5.4,4.9,4.2,3.5],"paint":[1.5,2.1,2.5,1,1.2,2.5,1.2,2,1.3,1,2.8,2.4,2.7,1.6,1.1,2.5,2.2,1.4,1.1,1.3,2.2,2.3,1.6,1.3,2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,20.4,19.5,19.1,19.1,19.6,20.2,18.4,20.5,19.5,18.6,20.4,19.5,19.7,19.5],"script":[5.8,6.5,5.7,5.2,6,6.1,6.5,5.2,5.8,5.7,5.4,6.3,5.8,5.4,5.5],"paint":[13,11.7,12.6,11.9,11,11.8,12.1,11.4,12.8,11.6,12.5,12.9,11.3,12.6,12.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.8,13.4,12.8,13,13.1,13.3,12.8,13.9,12.9,13.1,13.4,13.3,13.1,13.4,13.1],"script":[2.8,2.9,2.5,2.6,2.6,2.8,2.5,3,2.8,2.9,2.8,2.6,2.7,2.7,2.7],"paint":[9.1,9.9,9.5,9.8,10.1,9.8,9.6,10.2,9.3,9.6,10,10.1,9.5,9.9,10]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"07_create10k","values":{"total":[271.4,270.4,271.4,273,272.2,270.3,274.3,270.1,274,271.2,273.7,273.7,271.2,273.8,271.5],"script":[41.4,41,41.2,41.6,42.1,40.9,41.4,42.1,42.1,41.4,41.8,41.7,41.4,41.1,41],"paint":[223,222.2,222.3,224.2,223.1,222.3,225.8,220.8,224.7,222.7,224.1,224.8,222.5,225.7,223.3]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,32.2,32.4,32.5,32.8,31.9,32.6,32.5,32,32.5,33.7,32.5,31.8,32.4,33.1],"script":[5.7,5.8,5.8,5.7,5.8,5.6,5.7,5.7,5.8,5.9,6.3,5.8,5.7,5.7,5.8],"paint":[25.7,25.5,25.6,25.8,25.9,25.4,26.1,25.8,25.3,25.7,26.4,25.8,25.1,25.8,26.4]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.8,9.5,9.5,9.6,10.2,9.8,9.5,10,10.1,9.3,9.6,9.8,10.5,10.5],"script":[8,8.9,8.1,7.9,7.7,8.5,8.3,7.3,7.9,8.5,7.7,7.8,7.7,8,8.2],"paint":[1.1,0.6,0.3,0.9,0.4,0.5,1.3,1.2,0.4,1.1,0.2,0.6,1.1,1.9,1.2]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5871400833129883]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6566686630249023]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.597414016723633]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7035703659057617]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.32912826538086]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.7]}},{"framework":"mettle-v1.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"01_run1k","values":{"total":[27.5,27.2,26.7,26.7,27.9,27.7,27.2,27.5,26.9,27.3,26.6,27.6,27.6,27.6,27.1],"script":[4.7,4.6,4.2,4.2,4.9,4.8,4.7,4.8,4.8,4.7,4.2,4.8,4.8,4.7,4.7],"paint":[22.3,22.2,22.2,22.1,22.6,22.5,22.1,22.3,21.8,22.2,22.1,22.4,22.4,22.5,22]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.4,29.7,29.5,30.2,29.8,29.7,29.9,29.5,29.8,30.3,30.1,29.8,29.9,30],"script":[6,6.5,6.5,6.5,6.6,6.4,6.6,6.6,6.6,6.6,6.7,6.4,6.5,6.7,6.8],"paint":[22.8,22.4,22.7,22.5,23,22.9,22.5,22.7,22.4,22.7,23,23,22.8,22.6,22.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.9,10,10.4,10.2,10.2,10.8,11,11.1,9.9,11.5,10.9,10.5,10.6,10.4,11],"script":[0.1,0.1,0.6,0.8,0.1,0.1,1,0.8,0.1,1.1,0.9,0.5,0.2,1.1,0.8],"paint":[8.6,8.6,8.8,8.3,8.9,9.7,8.7,9,8.7,9.4,8,8.2,8.8,8.3,9]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,2.6,2.2,2.3,1.8,2.5,2.1,2.3,2.5,2.2,2.5,2,2.7,2.8,2.5,3.3,2.3,2.7,3.3,2.3,1.9,2,2,1.5,2.5],"script":[0,0,0,0.4,0,0.6,0,0.5,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0],"paint":[1.7,1.6,1.8,1.8,1.7,1.7,1.2,1.2,2.3,2,1.6,1.1,2.3,2.5,1.4,2.5,0.4,2.5,2.1,1.5,1,0.8,1.9,1.1,1.5]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"05_swap1k","values":{"total":[12.4,12.5,12.7,12.9,12.7,13.1,11.9,12.5,13,12.5,12.9,13.3,12.8,12.2,12],"script":[0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.1,1,0.2,0.1,0.1,0.8,0.1,0.1],"paint":[11.1,11,11.4,11.1,11.5,12,11.1,10.7,11.7,11,11.2,12.1,11.3,11.3,10.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.1,10.3,10.2,10.2,10.3,10,10.3,9.9,10.1,10.7,10.3,10.4,10.1,10.9],"script":[0.1,0.2,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.2,0.1,0.3,0.1,0.1],"paint":[9.9,9.5,9.6,9.8,9.5,9.8,9.3,9.8,9.2,9.1,9.6,9.6,9.7,9.6,10.1]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"07_create10k","values":{"total":[275,274.8,273.9,273.8,273.7,273.9,276.2,271.3,276,277.3,276.4,274.1,273.6,274.6,275.9],"script":[45,44.5,44.7,44.2,43.7,44.4,45,42.9,44.4,45,44.4,43.5,44,44.3,44.3],"paint":[222.7,223.1,222,222.3,222.6,222.2,223.7,221,224.2,224.9,224.7,223.4,222.1,222.9,224.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.8,31.8,31.8,31.7,32.3,32.1,32.5,32.4,31.9,32,31.9,31.6,31.8,31.3,32],"script":[4.7,4.5,4.7,4.1,4.8,4.7,5,4.4,4.5,4.6,4.7,4.5,4.4,4.3,4.6],"paint":[26.4,26.5,26.3,26.8,26.8,26.7,26.7,27.3,26.5,26.5,26.5,26.4,26.6,26.2,26.7]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.4,9.3,9.5,9,8.8,9.6,10,9.6,10.3,9.8,10,10.4,10,8.9,9],"script":[7.6,7.4,7.8,7.5,7,7.4,7.9,7.5,7.9,7.9,7.3,8.5,8.2,7.3,7.6],"paint":[1,1.6,0.3,0.6,0.9,1.3,1.9,1.3,2.3,1.1,1.6,1.7,0.7,0.4,0.2]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5490226745605469]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.37209415435791]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4526987075805664]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7490358352661133]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.340540885925293]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.8]}},{"framework":"michijs-v2.3.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[35.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.2,23.1,22.8,23,23.3,22.9,22.9,23.2,23,23.2,23.1,23,23,22.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[21.6,21.5,21.4,21.2,21.3,21.6,21.2,21.3,21.5,21.3,21.6,21.4,21.3,21.4,21.2]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[26.3,25.6,26.2,25.6,25.8,25.5,25.8,25.5,26.9,25.7,25.9,26,25.8,25.9,26.2],"script":[3.3,3.2,3.3,3.2,3.3,3.2,3.2,3.2,3.7,3.2,3.2,3.4,3.3,3.1,3.4],"paint":[22.5,22,22.5,22,22.1,22,22.3,21.9,22.7,22.1,22.3,22.2,22.1,22.4,22.4]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.7,11,10.9,12.5,10.5,10.3,10.8,10.3,10.1,10.1,10.4,9.9,10.2,10.9,10],"script":[1,0.8,0.8,0.8,0.6,0.8,0.9,0.1,0.5,0.5,0.5,0.1,0.1,0.6,0.5],"paint":[8.4,8.6,8.8,10.5,9,8.6,9,8.6,9.1,8.7,9.2,8.6,9.2,9.4,8.1]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[2.5,1.7,2.1,2.5,2.4,2.8,2,2.8,2,1.7,2.1,2.3,2.4,2.3,2.5,1.8,2.1,2.8,1.9,2.8,2.6,2.7,2.6,2.7,2.1],"script":[0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.1,0.6,0.2,0.3,0.7,0.4,0.1,0.6,0.8,0.5,0.4,0.1],"paint":[1.9,0.7,1,2.3,2.2,1.6,1.1,1.7,1.8,0.9,1.2,1.4,1.4,1.5,1.8,1,1.7,1.9,1.4,1.9,1.6,1.8,1.4,2.2,1.7]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[13.7,13.5,14.4,14.2,13.9,13.7,13.2,15.1,13.9,14.6,13.3,14.4,12.5,13.8,13],"script":[0.9,0.6,1.5,0.6,1.1,0.9,0.6,0.2,0.6,1.3,0.2,0.6,0.5,0.6,0.8],"paint":[11.6,12.2,12,12.1,12,11.6,11.6,13.6,12.2,12,11.4,12.7,11.1,11.2,10.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10,10.1,10.3,10.2,9.9,10.2,10.1,10.1,10,10.2,10.4,10.1,10.9,10.5],"script":[0.3,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[9.6,9.1,9.5,9.3,9.4,9.5,9.3,9.4,9.5,9.5,9.6,9.4,9.4,10,9.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[245.9,244.4,246.5,246.1,244.4,248.4,245.7,246.9,246.7,246.7,246.1,246.5,244.3,246.6,245.7],"script":[14.9,15.5,14.8,15.4,15.1,15.2,14.9,15.1,15.3,14.8,15.1,15.4,14.9,15.1,14.9],"paint":[223.8,221.8,224,223.5,222.3,225.8,223.7,224.8,224,224.8,224,223.8,222.3,224.1,223.5]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27,27.1,26.8,27.1,26.9,27.2,27,26.8,27,26.8,27.1,26.7,26.8,27.9,27],"script":[1.3,1.3,1.3,1.3,1.3,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.4,1.5,1.4],"paint":[25,25,24.8,25.1,24.8,25.1,24.9,24.6,24.9,24.8,25,24.6,24.7,25.7,24.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.1,9.7,9.2,8.9,9.4,8.7,8.7,9.4,9.1,10.3,9.3,10.1,9.4,9.8],"script":[7.4,7.3,7.2,7.5,7.7,7.2,7.1,6.9,7.4,7.4,8.9,7.5,8,7.7,7.9],"paint":[0.6,0.3,1.2,1,0.2,1.9,0.2,1,1.8,1,1.1,0.5,1.3,0.6,1.8]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5894346237182617]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0219831466674805]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.018202781677246]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7805452346801758]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.162980079650879]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.3]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.9]}},{"framework":"mikado-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.4,23.7,23.6,23.5,25.7,23.6,23.7,23.9,23.4,23.9,23.6,23.7,23.8,23.7],"script":[2.1,2.2,2.1,2.1,2.1,2.2,2.1,2.1,2.2,2.1,2.2,2.1,2.1,2.1,2.1],"paint":[20.8,20.9,21.2,21.2,21,23.1,21.1,21.2,21.4,20.9,21.4,21.1,21.2,21.3,21.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"02_replace1k","values":{"total":[27.3,26.8,26.8,26.7,27.3,27.5,27,26.9,27.2,27,26.9,26.9,26.9,27,26.9],"script":[4.5,4.4,4.1,4.1,4.4,4.5,4.5,4.1,4.5,4.2,4.1,4.1,4.1,4.2,4.1],"paint":[22.3,22,22.3,22.3,22.5,22.6,22.1,22.4,22.2,22.4,22.4,22.4,22.3,22.4,22.4]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.6,10.3,10.6,10.5,11.4,11.5,10.8,10.7,11.4,10,11.2,11.2,11.4,11.1,12.5],"script":[0.6,0.6,1.3,0.2,0.2,0.9,1.4,0.6,0.6,0.9,1.3,0.5,0.1,0.8,1.1],"paint":[8.5,9,7.3,8.5,10,9.8,8.4,8.8,9.7,7.9,9,9.7,10.2,9.5,9.5]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"04_select1k","values":{"total":[8.3,2.5,2.1,2,2.8,2.9,1.8,2.2,2.7,2.1,2.6,2.1,1.9,2.1,2.7,2.8,3.4,1.9,2.4,2.4,1.9,2.6,3.7,2.3,2.4],"script":[0.1,0.1,0.4,0.2,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.9,0.9,0.8,0.1,0.5,0.1,0.1,0.1,0.9,0.2,0.1],"paint":[2.8,2.3,1.6,1.1,2.3,1.6,1,2,1.8,1.9,1.7,1.5,0.9,1.9,1.2,1.4,1.4,1.1,0.4,2.1,1.1,1.9,1.2,2,1.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"05_swap1k","values":{"total":[12.4,13.1,13,12.8,12.9,13.3,14.9,12.9,13,12.9,13.2,12.6,12.4,13.4,12.1],"script":[0.5,0.6,0.1,0.6,0.1,1,0.1,0.1,1,0.1,0.1,1,0.1,0.9,0.4],"paint":[10.7,11.1,12,11.6,11.8,11.7,14.2,12,10.6,11.9,11.9,10.2,9.8,11.3,10.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.4,10.4,10.1,10.3,10.2,10.5,10.1,10.2,10.1,10.2,10.2,10.3,10.3,9.8],"script":[0.3,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.1,0.1,0.4,0.1,0.1,0.1],"paint":[9.4,9.7,9.7,9.4,9.6,9.7,9.5,9.2,9.2,9.5,9.5,9.2,9.6,9.7,8.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"07_create10k","values":{"total":[254.7,256.8,256.2,254.5,255.3,256.1,253.8,253.4,254.8,256.3,253.9,253.8,256.4,254.9,253.6],"script":[24.4,24.3,24.1,24.3,24.1,24.8,24.3,24.3,24.7,23.8,24.2,24.3,24.3,24.2,24.4],"paint":[223.1,225.2,224.8,223.1,223.9,224.1,221.9,222,222.8,225.1,222.4,222.2,224.5,223.6,222]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.8,27.5,28.3,27.7,27.5,28.4,26.5,27.9,27.5,27.6,29.7,28.2,28.4,27.8,28.1],"script":[2.2,2.1,2.2,2.1,2.1,2.4,2.1,2.1,2.2,2.2,2.4,2.4,2.5,2.1,2.4],"paint":[24.9,24.7,25.4,24.8,24.7,25.2,23.8,25,24.6,24.8,26.5,25.1,25.2,25,24.9]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.3,9.4,9.9,10.3,9.7,10,9,9.2,9.4,9.5,9.8,9.5,10,10.2],"script":[7.8,7.9,8,7.5,8.2,7.4,7.8,7.5,7.7,7.8,7.2,7.8,8.1,8.2,8.1],"paint":[0.9,0.3,0.6,2.1,0.7,2.1,1.9,0.7,0.6,0.2,2.2,1.2,0.6,0.3,1.3]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6015281677246094]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.345113754272461]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3708229064941406]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7348957061767578]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.137575149536133]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.2]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"mikado-proxy-v0.8.400-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[52.3,47.1,42.1,42.9,42.9,41.8,42.8,41.7,48.2,41.8,43.1,43.7,41.7,47.7,44.7],"script":[19.3,19.2,19.6,19.7,19.7,19.5,19.9,19.9,19.4,19.9,19.6,19.8,19.7,19,19.5],"paint":[20.9,21.3,21.3,21.3,21.7,21,21.3,21,21.4,20.9,21.6,21.3,21.1,21.3,21.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[68.1,62.2,56.6,58.2,59.3,58.9,63.2,62.8,58.3,58.1,58.5,56.8,59.2,56.9,57.5],"script":[32.5,33.8,31.2,33.1,33.6,32.7,32.1,33.3,32.9,32.4,34.2,32.6,32.6,33,32.9],"paint":[23.4,22.8,22.8,23.4,23.2,23.3,19.2,23.2,23.4,23.2,22.6,23.1,22.9,23,22.7]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.4,62.8,49.4,63.7,45.4,64.1,47.4,46.7,48.4,63.4,62.5,62.9,64.6,48.2,66.4],"script":[32.8,30.3,34.7,32.7,31.4,33.4,33.3,32.6,35,32.2,32.1,31.6,33.1,32.1,35.4],"paint":[13.2,12.5,12.3,12.9,11.7,13,12.3,12.9,13.2,11.9,13.1,14.3,12.8,14.7,13.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[38.4,41.5,41.1,40.2,38.5,39.7,38.4,39.6,37.7,40.3,37.9,39.1,37.6,41.1,38.7,38.6,38.5,37.7,38.3,36.6,38.6,39.8,42,38,40.5],"script":[32.5,32.4,33.7,31.4,32.1,34.7,33,33.5,31.5,33.9,32.3,32.7,32.1,33.6,33,31.7,32.4,31.9,32.9,31.4,34.1,32.9,36.8,30.7,33.1],"paint":[3.4,3.1,4.2,4.4,4.6,3.7,4.8,3.4,4.3,4.5,2.6,4.2,3.4,4.3,4.7,3.3,3.9,3,4.5,3,3,3.6,3.5,3.3,3.2]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[45.9,48,65.8,64,51.1,65.7,61.7,63.5,65.8,64.5,47,64.6,64.9,62.4,63.6],"script":[27.9,29.7,30.3,29.3,30.2,29.2,26.5,29.2,30.4,29.2,29.5,31,30.2,27.9,29.6],"paint":[15.9,16.4,16,16,18.8,15.8,16.2,16.9,15.3,15.6,15.9,15.8,16.2,15.2,16.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.6,39,35.8,42.5,42.9,32.6,37.6,39.6,37.8,38.6,38,36.7,40.5,32.5,39.1],"script":[16.1,15.6,16.5,15.3,14.7,16.6,17.3,16.1,16.9,15.8,15.6,15.7,16.1,15.8,16.3],"paint":[13.2,12.9,12.7,12.4,12.7,13,13.1,13.3,13.4,13.1,13.7,13,13.5,13.6,13.3]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[417.7,407.8,416.4,408.9,410.2,406.7,413.4,413.2,407.4,408.2,407.3,411.5,408.2,409.1,409.3],"script":[182.3,183.7,184.1,182,182.5,182.2,185.3,185.1,182,182.9,182.1,185.3,182.1,183.1,183.3],"paint":[220.7,219.8,219.6,220.8,221.8,220.5,222.7,220.6,220.5,220.2,220.2,219.9,221.4,221.2,220.9]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.2,61,64,61.5,61.7,61.6,61,61.9,61.5,61.4,61.6,61.3,61.6,57.2,61.9],"script":[25.4,25.1,26.5,25.3,25.5,25.3,25.1,25.5,25.3,25.2,25.1,25.2,24.9,24.9,25.6],"paint":[26.6,26.4,26.8,26.7,26.8,27,26.5,26.8,26.6,26.8,26.8,26.7,27.2,26.6,26.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.5,47.6,43.2,44.1,43.3,44.7,44.5,43.1,48.6,44.6,43.5,43.8,43.3,46.1,43.1],"script":[20.4,20.7,19.9,20.5,19.3,19.7,20.3,19.5,19.9,19.5,19.6,18.7,20,19.5,20.4],"paint":[2.8,1.3,2.6,2.8,3.5,2.5,3,3,3.4,2.3,3.3,3.7,2.2,2.6,2.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.585171699523926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.074122428894043]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.846994400024414]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.1737699508667]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.7725191116333]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[490.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.7,28.8,28.3,29,28.8,28.6,29,28.1,28.5,28.3,28.7,28.4,28.2,28.8,28.6],"script":[5.9,6.1,6,6.2,6.1,6,6.1,5.7,5.8,5.8,5.8,5.9,6,6,6.1],"paint":[22.2,22.1,21.8,22.2,22.1,22.1,22.3,21.9,22.1,22,22.3,22,21.7,22.3,22]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33,33.3,32.8,32.6,32.6,32.6,32.9,32.5,32.4,32.5,32.6,32.6,33,32.7,33],"script":[10.5,10.4,10.2,10.2,10.1,10.2,10.5,10.3,10.2,10.2,10.4,10.2,10.5,10.3,10.6],"paint":[22,22.3,22,21.8,21.9,21.7,21.7,21.6,21.6,21.7,21.6,21.8,21.9,21.8,21.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.6,20.7,21.5,22.1,22.2,22.6,22.6,22.7,22.4,21.3,21.8,21,22,21.6,21.8],"script":[6.4,6.1,5.9,6.7,6.1,6.6,6.6,6.8,6.5,5.6,6.2,6.5,5.7,6.1,6.4],"paint":[12.6,12.5,13.5,13.3,14.5,14.3,14.3,13.3,14.4,14.5,12.7,12.9,14.9,14,13.2]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[11.2,11.3,11.6,11.3,11.4,11.6,11.6,10.8,11.5,11.1,11.9,11.6,12,11.8,12.5,11.5,11.1,11.6,12.6,10.6,12,11.7,11.7,11.7,11.7],"script":[5.5,5.8,5.8,5.3,5.6,6.2,5.8,5.5,5.7,5.5,5.6,6.3,5.9,6.3,6.6,6.4,5.7,5.8,6.7,5.5,5.6,6.4,5.8,5.8,6.2],"paint":[4.2,3.5,4.5,4,4.2,3.6,4.7,3.9,4.5,3.7,4.7,3.7,5.2,4.8,4.1,4.5,3.6,4.5,5.2,3.6,4.9,3.9,4.8,5.6,3.6]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.4,21.1,21,20.4,20.3,20.7,19.9,20.3,20.5,19.7,20.4,20.9,20.2,22.3,22],"script":[5.5,5.7,5.8,5.3,5.2,5.2,5.6,5.7,5.5,4.9,5.3,6.1,5.3,5.5,6.4],"paint":[12.7,12.3,13.3,13.2,13.8,12.8,12.5,12.2,13.9,13.3,14,13.4,12.8,14.9,12.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,14,14.5,14.8,14.4,14.2,14.4,14.7,13.9,14.5,14.3,14,14.4,14.7,14.5],"script":[3,3,3.1,3.1,3.1,3.2,3.3,3.2,3,3.3,3.1,3,3,3.1,3.1],"paint":[10,10,10.8,10.9,10.6,10.2,10,10.4,10.3,10.2,10.7,10.1,10.7,11,10.8]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[308,286.8,290.4,287.2,289.5,288.6,289.1,284.1,295.6,286.4,288.2,288.4,288.8,288.6,289],"script":[53.6,53.6,53.6,52.6,54,52.7,53.4,52.8,54.4,53.5,52.9,53.3,52.5,54.6,52.4],"paint":[246.5,225.4,229.1,226.8,227.7,228.2,227.5,223.5,232.4,224.8,227.5,227.3,228.4,225.9,228.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37,37.2,36.8,37,36.9,36.8,36.7,37.4,37.7,37.9,36.8,36.9,37.2,37,37.2],"script":[8.8,8.9,8.7,8.8,8.6,8.6,8.7,8.9,8.7,8.6,8.8,8.8,8.6,8.7,8.9],"paint":[27.1,27.4,27.2,27.2,27.3,27.2,27.1,27.5,27.8,28.2,27,27.1,27.5,27.3,27.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.5,15.4,17,15.2,15.6,15.7,16.8,15.5,15.1,15,15.2,15.4,15,16.1,15],"script":[13.6,13.9,15,12.8,13.8,14.2,14.9,13.8,13.5,12.7,12.8,13.5,12.9,13.4,12.3],"paint":[1,0.5,1.8,2.2,0.9,0.6,1,0.2,0.7,1.4,1.1,1,1,1.7,1.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5688838958740234]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3439197540283203]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3874692916870117]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7192602157592773]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.181997299194336]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.7]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[35.1,33.4,35.7,32.3,35.3,33.7,34.6,33.3,29.1,35,34.1,35.4,34.3,34.1,35.1],"script":[5.7,6.2,6.2,6.6,6.4,6.3,6.3,6.2,6.4,6.5,6.4,6.2,6.5,6,6],"paint":[20.9,21.4,21.2,21.8,21.7,21.6,21.2,21.3,22.4,21.6,21.4,22.1,21.8,21.5,21.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,35.3,32.7,35.8,33,33.1,35.4,34.5,38.1,35,34.6,38.2,34.1,35.9,34.9],"script":[8.9,9,9.3,8.8,9.1,8.8,8.8,9.1,9.1,9.1,9.1,9.7,9.3,8.9,8.9],"paint":[22.6,23.1,22.8,22.9,22.4,23,23.3,22.9,23.3,22.9,22.7,22.7,23.3,22.6,22.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[38,39.1,38.2,37.8,37.7,21.5,39.1,37.6,38.3,21.8,36.9,37.4,21.1,37.6,37.1],"script":[10.6,10.4,9.9,9.7,10.6,8.8,10.1,9.9,10.1,10,10.1,10.7,10.1,10.5,9.3],"paint":[11.2,11.1,10.5,12,10.3,11.1,12.2,10.3,11,10.7,11.4,11.1,8.9,10,10.5]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[11.6,10.6,12.6,15.3,10.7,11.9,13.3,14,13.5,10.6,11.1,12.9,14,15,11.3,14.7,10.7,11.3,13.3,12.4,10.4,10.8,10.9,10.4,11],"script":[7.5,7.2,7.4,7.8,7.7,9.2,7.3,7,7.5,8.1,8.1,8.5,7.9,8.3,8.9,8.3,8.2,7.8,7.3,8,7.9,7.9,8.1,7.6,7.8],"paint":[2,2.4,1.6,2.8,1.4,1.8,2.7,2.4,1.5,1.1,2.7,2.4,2.2,2,1.4,2.3,2.2,1.7,2.1,1.5,1.7,2.3,1.8,1.5,1.8]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[37.8,22.8,22.1,39.2,38.7,21.2,38.4,37.9,38.9,38.3,38.3,22.1,37.7,38.3,38.6],"script":[7.6,8.2,8,8.9,7.8,7.5,7.9,8.6,8.1,7.1,8.2,7.6,7.1,7.8,8.2],"paint":[13.7,13.1,13.1,13.1,13.7,11.2,12.9,12.7,12.7,13.3,13.3,12.5,14.4,14.2,13.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,17.9,13.3,13.5,14.6,15.8,12.7,13.5,13,14,13.4,13.2,13.4,14.1,13.3],"script":[3.9,4,4.1,4.3,3.9,4,3.4,4,3.9,3.9,4.2,4.1,4,4,3.9],"paint":[8.8,9.1,8.5,9,8.7,9.4,8.8,9.1,9,9.1,9.1,9,9.1,8.8,9.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[285.1,290.5,290.6,294.5,293.3,292.9,289.6,298.4,290,293,293.6,292.2,288.9,292.7,297.6],"script":[68.7,70.3,69.6,70.7,70.2,69.6,70.4,70.1,70.7,70,70.5,70.3,70.4,69.8,69.6],"paint":[213,214.1,213.3,216.6,215.9,215.6,215.5,217.6,215.6,215.3,215.5,213.6,215.2,214.1,219.1]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.2,34.5,39.9,39,40.1,38.9,39.1,34.5,34.1,39.7,34.3,39.3,41.7,41.8,34.9],"script":[8.5,8.5,8.6,8.1,8.6,8.3,8.4,8.5,8.4,8.5,8.4,8.8,8.1,8.6,8.8],"paint":[25.2,25.5,25.6,25.3,25.8,25.1,25.2,25.5,25.2,25.6,25.5,24.8,25.7,25.3,25.6]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.3,13.2,12,29.5,28.1,28.5,28.6,12,12.3,27.6,11.9,11.7,27,28.2,27.3],"script":[10.7,9.6,9.9,11.9,10.6,10.9,11.1,10.4,10.5,9.6,10.4,9.8,9.5,10.2,9],"paint":[0.6,2,1.6,1.5,1.1,1.5,1,0.3,1.1,1.9,0.3,0.9,0.3,1.2,1.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6371936798095703]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.976790428161621]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.401081085205078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9134235382080078]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.14993095397949]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[38]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"01_run1k","values":{"total":[26.4,26.1,26.6,26.2,25.9,26.5,26.2,26.1,26.4,26.6,27.9,26.1,26.3,26.5,26.2],"script":[4.6,4.5,4.9,4.6,4.5,4.6,4.6,4.6,4.6,4.6,5.7,4.6,4.6,4.6,4.5],"paint":[21.4,21.2,21.3,21.3,21,21.5,21.3,21.2,21.5,21.6,21.6,21.1,21.4,21.5,21.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"02_replace1k","values":{"total":[31.6,31,30.5,30.4,29.9,30,31.8,30.4,31.3,30,31.1,30.6,29.9,29.8,31.3],"script":[7.8,7.7,7.5,7.4,7.1,7.1,7.8,7.2,7.8,6.9,7.7,7.6,7,7,7.8],"paint":[23.2,22.8,22.5,22.4,22.3,22.4,23.3,22.6,22.9,22.4,22.9,22.4,22.3,22.3,22.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.7,10.8,11,10.9,13,11.3,11.4,11.3,15.5,10.8,11.5,11.4,10.9,11.3],"script":[1.6,0.9,1.4,1.1,1.4,1.8,1.6,1.1,1.1,2,1.2,1.3,1.3,1.2,1],"paint":[7.6,8.8,8.6,8.8,8,9.7,8.6,9.1,9.3,12.1,8.3,9.4,8.1,8.6,9.1]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.8,3,2.4,3.1,2.2,2.7,2.7,2.7,2.3,2.4,2.1,2.7,2.6,2.6,2.4,2.7,2.5,2.7,2.8,2.6,2.4,3.6,2.9,2.5],"script":[1,0.1,0.8,0.4,1.2,0.1,0.1,0.9,0.1,0.1,0.1,0.4,0.9,0.6,0.5,0.9,0.1,0.3,0.6,0.1,0.1,0.1,0.6,0.8,0.1],"paint":[1.8,1.6,2.1,1.7,1.3,1.5,2.2,1.3,2.5,1.1,2.2,1.6,1.3,1.6,2,1.4,2,2,1.5,2.5,1.7,1.8,1.8,0.4,1.9]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14,15,16.1,15.4,14.7,14.3,13.8,14.4,14.3,14.3,14.1,14.1,14.7],"script":[1.5,1.1,1.5,1.3,1.1,1,1,1.6,1.1,1.6,1.3,1.5,1.3,1.8,1.4],"paint":[11.4,11,11.4,12.6,13.5,12.9,12.7,11.4,11.9,11.8,11.5,11.1,11.2,11.4,12.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.4,10.8,10.7,10.4,10.8,10.7,10.4,10.5,10.4,10.8,10.3,10.4,10.6],"script":[0.4,0.5,0.4,0.6,0.4,0.5,0.6,0.5,0.5,0.6,0.6,0.5,0.4,0.5,0.6],"paint":[9.6,9.9,9.2,9.6,9.3,9.1,9.7,9.6,9.2,9.7,9.5,9.4,9.5,9.6,9.8]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"07_create10k","values":{"total":[274.8,274.9,276.4,275.6,276,281.1,276.1,277.8,275.7,277.5,276.7,276,276.6,275.4,279.9],"script":[54.4,54.9,54.2,54.7,54.6,54.5,54.4,57,55.1,54.8,54.2,54.1,54.4,54.5,54.2],"paint":[213.4,213.1,215.2,214,214.4,218.9,214.8,213.9,213.8,215.9,215.6,215.2,215.4,213.9,217.3]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.1,32.2,31.7,31.6,32.1,32,31.9,31.4,32,32.5,32,32,31.8,31.8,31.7],"script":[4.9,5.3,5.1,5.3,5.2,5.4,5.3,5.1,5.3,5.4,5.3,5.4,5.2,5.2,5.3],"paint":[25.5,26,25.7,25.4,25.9,25.7,25.7,25.4,25.8,26.2,25.7,25.7,25.7,25.6,25.5]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10.5,10.6,9.8,9.9,10.9,10.2,10.6,10.3,10.7,9.8,9.8,10.1,10.9,10.6],"script":[8.6,8.4,7.8,8,8.5,8.9,8.7,8.8,8.8,8.8,8.3,8.7,8.3,9,8.4],"paint":[0.9,0.5,2,0.7,0.3,0.5,0.3,0.8,0.7,0.6,0.7,0.9,0.9,0.9,1.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8121128082275391]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9510927200317383]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.976673126220703]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1915369033813477]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.80894660949707]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.4]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.6]}},{"framework":"mobx-jsx-v0.16.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[73.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.3,27.9,28.4,28.7,28.7,28.4,28.4,28.4,28.5,28.4,28.6,28,28.3,28.1],"script":[5.9,5.9,5.9,5.9,6,5.9,6,5.9,6,5.9,5.9,6,5.9,5.9,5.9],"paint":[21.8,22,21.6,22,22.2,22.4,22,22,22,22.2,22.1,22.2,21.7,22,21.8]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[32.7,33,32.8,32.6,32.5,32.8,33,32.7,33.3,33.4,32.5,32.8,32.8,32.9,33.9],"script":[8.6,9,8.9,8.9,8.8,9,8.9,8.9,9.7,9.7,8.8,8.7,8.9,9.2,9.9],"paint":[23.6,23.5,23.4,23.3,23.2,23.4,23.6,23.3,23.2,23.3,23.2,23.6,23.4,23.2,23.6]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,13.7,13.5,14.1,16.2,14.3,13.9,14.3,14.5,13.5,14.4,14,13,14.8,14.3],"script":[2.9,3,3.1,3.1,3.7,3.8,3.6,2.8,3.6,2.2,2.6,4,3.1,3.1,3.7],"paint":[8.6,9.6,7.9,10,10.6,9.3,8.9,10.4,9.9,10.1,10.5,9,8.5,10.5,8.9]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[6.5,7.3,7.1,6.5,6.9,6.2,7.8,6.8,7.5,6.7,6.8,7,6.5,6.9,7.1,6.4,6.6,7.2,6.3,6.6,6.7,6.4,6.7,6.8,6.3],"script":[4.4,5.2,4.8,4.3,4.3,4.6,5.3,4.3,5.2,4.1,4.5,4.8,4.5,4.5,4.7,4.4,3.6,4.6,4.2,4.4,4.4,4.2,4.6,4.5,4.1],"paint":[1.5,1.3,2.2,1.6,2.5,1,2.3,2,1.6,2.4,0.6,1.6,1.2,1.7,2.2,1.4,1.3,2.4,2,2,2.2,1.1,1.5,1.7,1.4]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[19.3,17.9,18.6,18.8,18.6,18.5,18.6,17.9,19.6,17.9,18.5,18.6,19.2,18.3,19.2],"script":[5.2,5.1,5.8,5,4.7,5.2,5.7,5,5.2,5.4,5.3,5.4,6,5.3,4.7],"paint":[12.4,11.6,11.2,12.7,12.3,11.5,10.6,11.1,13,10.8,12.4,11.6,11.8,12,13.5]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.9,12.8,12.7,12.4,12.8,12.9,12.9,12.8,13,12.9,13.2,13.2,12.8,13.1],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.5,2.5,2.8],"paint":[9.7,9.6,9.6,9.6,9.7,9.8,9.8,9.9,9.6,9.8,10.1,10,9.9,9.8,9.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[367.7,365.8,363.4,366.5,368.2,364.7,365.5,363.5,366.6,364.7,364.5,366.2,362.9,365.6,371.9],"script":[142,140.6,138.6,140.8,140.2,139.6,140.9,138.6,141.5,139.6,140.4,139.8,138.7,141.3,140.4],"paint":[217.5,217.4,216.5,218,220.2,217.5,216.8,217.3,217.4,217.4,216.4,218.7,216.2,216.6,222.1]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.3,48.5,49.1,48.4,48.2,47.9,49.1,48.2,47.9,49.1,48.3,48,48.9,47.6,47.8],"script":[19.5,19.4,19.7,19.2,19.1,19.3,19.2,19,19.2,19.8,19.2,18.7,19.4,19,19.2],"paint":[27.9,28.2,28.5,28.3,28.2,27.8,28.9,28.3,27.9,28.5,28.1,28.4,28.6,27.8,27.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19,18.4,18.2,19,19.2,18.9,20.5,19.4,18.7,18.4,19,19,21.3,18.6,18.5],"script":[17.9,16.7,16.7,17.9,17.8,17.7,19.4,17.7,16.5,16.4,17.8,17.8,19.7,16.8,17.1],"paint":[1,1.6,1.4,1,0.8,1.2,1,1.7,2.1,1.9,1.1,1.1,0.7,1.5,1.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.840876579284668]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.77424430847168]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80296516418457]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.299688339233398]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.50382804870605]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.3]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[28.9,28.9,29.1,28.1,29.1,29.1,29.3,28.8,28.7,29,29,29.3,28.6,29.2,28.9],"script":[6.7,6.8,6.9,6.8,7.1,7,7.1,6.7,6.7,6.7,6.8,7,6.7,6.9,7],"paint":[21.6,21.6,21.6,20.7,21.5,21.5,21.6,21.6,21.5,21.7,21.7,21.8,21.5,21.7,21.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[33,33.6,33.8,33.1,33.9,33.3,33.7,33.7,33.7,33.5,33.6,33.4,34,33.6,33.9],"script":[10.6,10.9,10.6,10.5,10.7,10.6,10.8,10.8,10.9,10.5,10.7,10.4,10.7,10.7,10.6],"paint":[21.8,22.1,22.6,22.1,22.6,22.1,22.3,22.4,22.2,22.5,22.2,22.4,22.7,22.3,22.8]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,13.3,13.9,15.4,13.8,13.7,13.6,14.2,14.9,13.3,13.6,13.6,16.6,14.2],"script":[2.7,3.1,3.1,2.6,3.8,3.1,3.3,3.1,3.1,3.3,3.3,3.1,2.8,3.4,3.5],"paint":[10.3,8.9,8.6,10.4,10.6,10.1,9.7,9.4,9.8,10.4,8.9,9.6,9.6,12.5,10]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[4.7,3.7,3.8,4,3.1,3.4,3.3,3.5,4.2,4,3.7,3.4,3.7,3.9,3.2,3.7,3.9,2.9,3.6,3.6,4.1,4.2,3.7,3.9,3.2],"script":[1.5,1.6,1.4,1.7,1.5,1.3,0.9,1.6,1.9,1.7,2.2,1.3,1.3,1.7,1.6,1.8,1.7,1,1.6,1.7,1.7,1.5,1.5,1.7,1.1],"paint":[1.3,1.3,2.3,2.2,1.1,2,2.3,1.8,2.1,1.5,1.4,1.2,1.6,1.5,1.5,1.3,2.1,1.1,1.8,1,2.3,2.5,0.8,1.4,2]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[16.2,16.8,15,15.6,15.3,15.9,16,16.2,17.7,16.7,20.4,16,16,16.1,16.6],"script":[2.4,3.1,2.4,2.6,2.8,2.9,2.9,2.2,3.3,3.1,3.3,3,2.6,2.5,2.4],"paint":[13,12.4,11.3,11.9,11.3,12.1,12.2,12.8,12.9,12.6,15.3,11.7,11.8,12,12.5]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,12,12.2,11.5,12,11.7,11.9,11.7,12.1,12.1,11.9,12.1,12,12.1,11.6],"script":[1.6,1.8,1.5,1.7,1.7,1.4,1.5,1.7,1.8,1.7,1.6,1.7,1.7,1.7,1.7],"paint":[9.9,9.7,9.8,9,9.5,9.6,9.7,9.2,9.7,9.4,9.7,9.7,9.8,9.5,9.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[288.8,288.3,286.7,285.3,290.5,288.2,288.9,285.8,286.2,286.2,291.4,291.6,285.1,288.3,287.6],"script":[65.9,64.3,64.2,62.3,66.5,63.8,65.6,64.6,63.6,65.5,69,66.6,63.5,65.2,64],"paint":[215.8,217,215,215.9,216.8,217,216.1,214.2,215.5,213.7,215.1,218,214.5,215.9,216.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35,34.9,35.3,34.6,35.6,35.2,34.8,35.2,34.8,35.2,34.8,34.5,34.7,34.8,34],"script":[8,8.1,8.2,7.9,8.1,8.3,8,8,8.3,8.1,8.3,7.8,8.3,8,8.2],"paint":[26,25.9,26.1,25.7,26.5,26,25.9,26.2,25.6,26.2,25.6,25.8,25.5,25.8,24.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.6,12.5,12.9,13.5,12.7,13,13.2,13.3,12.7,12.7,12.7,12.8,13.4,12.6,12],"script":[11.7,10.2,11,11.4,10.8,11.5,11,10.7,11.1,10.6,10.8,11.3,11,10.8,10.9],"paint":[1,2.1,0.3,1,1.7,0.2,0.7,1.5,0.2,1.3,1.7,0.3,1.4,1.1,0.9]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5533246994018555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.983302116394043]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0129194259643555]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7552499771118164]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.80017852783203]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.4]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.3]}},{"framework":"nanoviews-v1.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"01_run1k","values":{"total":[37.5,33.5,37.1,36.1,35.4,36.9,37.2,37.1,37.2,33.9,33.8,37.8,35,38.4,35.4],"script":[5.5,5.6,5.9,6.1,6.1,6.2,6.1,6,6.1,6.1,6.1,5.9,5.8,5.7,6],"paint":[21.2,22.2,21.7,21.6,22.6,22.2,21.9,21.3,21.9,22.2,22.1,21.5,22.2,21.5,22.1]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"02_replace1k","values":{"total":[31.2,31.9,33.6,34.5,34.2,33.4,33.6,32.7,33.7,32.6,33,31.9,31,33.3,32],"script":[8.1,7.8,8.3,8.4,8.7,8.3,8.7,8.6,8.2,8.1,8.5,8.6,8.3,8.7,8.7],"paint":[22.6,23,22.9,23.9,23.1,22.8,22.6,23.1,23,22.7,22.5,22.9,22.3,22.4,22.9]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12,11.4,10.8,11,11.6,11.1,12.5,11.9,10.8,12.2,10.6,10.1,12.1,11,11.6],"script":[0.4,0.1,0.1,0.6,0.1,0.1,1.1,1.2,0.1,1,0.3,0.1,0.7,0.6,0.5],"paint":[10.3,10.3,9.6,9.1,10,9.8,8.9,10,9.7,9.6,8.7,9.3,10,9.1,10.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.4,2,2.3,2.9,2.4,2.6,2.5,1.6,2.8,2.7,2.4,2.5,2.4,2,2.2,2.4,2.4,1.9,3.6,2.2,2.8,2.2,1.9,2],"script":[0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0],"paint":[1.7,2.3,1.8,2.1,1.3,2.2,1.8,2.1,0.9,2.6,2.5,2.2,1.5,1.6,1.1,2,1.5,1.4,1.1,2.1,2,2,1.1,1.2,1.8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"05_swap1k","values":{"total":[13.3,13,12.5,13.1,13,13.7,14,12.6,13.4,13.6,13.2,13.3,14.5,13,14.5],"script":[0.7,0.5,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.4,0.8,0.2,0.4],"paint":[11.6,11.6,11.4,11.6,11.1,12,12.5,11.6,11.8,12.3,11.6,11.3,12.3,11.8,13.2]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"06_remove-one-1k","values":{"total":[10,10.3,10.6,9.9,10.7,10.3,10.2,10,10.3,10.2,10.2,9.8,9.8,10.2,10.4],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.2,0.1,0.1,0.3,0.3],"paint":[9.5,9.4,9.9,9.5,9.9,9.5,9.3,9.3,8.9,9,9.5,8.9,9.3,9.4,9.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"07_create10k","values":{"total":[289,290,289.2,285.7,285.6,290.9,702,286.6,288.5,292.8,710.9,717.5,285.5,292.6,710.8],"script":[59.2,60.3,61.3,65.1,64.9,61.9,62,65.1,65.5,62.9,63.1,61.6,63.7,62.5,62.5],"paint":[226.2,226,224.4,217.1,216.7,225.4,229.1,217.8,219,226.2,233.7,231.9,217.8,226.6,229.3]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.3,33.6,50.1,50.4,50.3,50.3,50.4,34.1,50.5,49.8,50.6,51.4,50.6,49.2,50.8],"script":[5.9,6.1,5.9,6.3,6.1,6.2,5.9,6.2,6,6.1,6.2,6.2,5.9,6.2,6.1],"paint":[25.9,26.8,25.4,25.2,25,25.2,25.2,27.3,25.5,25,25.6,26.3,25.8,24.7,25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.4,10.2,10.5,10.7,10.1,11,11,10.7,10.6,11,10.4,10,10,9.8],"script":[8.7,8.6,8.4,8.3,8.3,8.6,9,9,8.7,8.5,8.8,8.4,8.5,8.7,8.6],"paint":[0.2,0.3,0.9,0.9,2,0.7,1.1,1.7,0.7,0.9,1.3,1.3,0.6,0.3,0.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6935501098632812]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5599679946899414]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.539504051208496]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9478740692138672]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.703126907348633]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.7]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8]}},{"framework":"native-document-v1.0.34-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[27.8,33.6,34.2,33.5,33.7,34.3,34,34.1,32.5,34.9,33.1,33.4,35.3,35.8,34],"script":[24.2,24.5,23.3,24.6,24.2,24,23.6,24.3,24.2,24,24.1,24.1,23.7,24.1,23.9],"paint":[21.2,21.3,20.2,21.4,21,20.8,20.4,21.3,21.1,20.9,21,21,20.6,20.9,20.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[40.9,33.1,33.9,35.4,34.4,36.3,33.1,33.9,32.6,32.4,35.8,35.7,33.9,34.9,35.2],"script":[28.8,29,29.1,29.2,28.8,29,28.7,28.6,28.7,28.6,29,29.1,29,28.7,29],"paint":[21.9,21.8,21.7,21.9,22,22.1,22.2,21.9,21.7,21.7,21.8,21.8,22.2,22,21.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.3,56,42.4,62.1,41.8,40.6,43.3,59,42.5,40,57,57.1,40.6,40,58],"script":[33.9,32.2,34.6,36.5,35.2,33,33,34.4,34.4,32.6,34.5,33.8,33.6,32.2,33.6],"paint":[15.3,12.8,14.6,13.5,12.5,11.1,14,13.4,14,12,13,13.5,12.1,10.8,13.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[36.1,34.5,36.7,34.3,33.6,35.2,35.9,34.5,35.5,35,35.2,33.9,34.1,34,36.5,34.3,35.3,37.5,34.8,35,34.1,35.5,36.1,34.1,36.9],"script":[29.3,28.9,30.4,28.7,28.3,28.8,28.6,27.9,30.2,29.6,28.2,28.3,28.7,28.4,29.5,27.5,29.5,31.2,28.7,29.1,27.4,29.4,30.4,28.9,28.2],"paint":[3.7,3.2,3,2.6,2.8,2.2,5.2,3.5,3.7,3.3,4.4,2.5,3.5,3.8,3.3,3.8,3.3,4.1,3.4,3.7,1.9,4.2,3.1,2.6,3]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[133.2,130,146.7,148,145.3,132.6,149.1,131.3,149.2,131.9,149.6,147.7,145.5,149.8,130.2],"script":[114.7,113.3,113.3,114.4,111.9,115,116.4,111.9,115.7,114.5,115.6,115.2,113.3,117,112.6],"paint":[85.7,85.4,86.8,85.9,83.1,87,86.5,86.5,86.7,86.5,87.7,84.8,83.8,87.5,84.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[65.4,66.1,69.6,66.2,66.6,66.9,68.1,66.3,64.3,65.6,67.3,66.1,66.6,65.6,71.8],"script":[20.8,20.8,21.3,21,20.6,21.2,20.4,21.4,20,20.5,21.9,21.2,21,21.6,21.3],"paint":[43,43.5,42.7,43.7,44.1,43,42.5,41.8,42.3,43.4,43.9,43,43,42.2,44.6]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[289.8,294.4,293.6,295,291.9,294.1,297.6,295.3,295.4,293.4,297.2,293.3,290.9,288.1,294.7],"script":[241.2,239.7,239.7,240.1,240.4,241.2,242.4,241.3,241.9,241.5,242.7,241.2,241.9,239.8,240.1],"paint":[225.9,224.3,225.3,225.5,225,225.2,227.6,225.2,226.3,224.7,229,226.5,225.3,224.4,223.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.2,43.5,43.4,42.8,43,43.6,42.9,43.3,42.6,45.7,43.8,45,42.2,43.4,43.6],"script":[32.6,32.5,32.4,32,32.5,32.7,32.3,32.6,32.2,32.3,32.4,32.3,31.8,32.9,32.5],"paint":[26.2,26.5,26.1,25.9,26,26.1,25.9,26.2,25.8,26.1,26,25.7,25.4,26.1,25.8]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.1,42.8,22.8,22.4,23.8,23.2,41.8,24,22.7,43.3,22.5,23.6,42.7,24.4,44.2],"script":[18.6,19.6,19,18.3,20.4,18.9,19.7,19.4,19.4,21.1,18.5,20.4,19.1,20.4,19.4],"paint":[1.6,1.7,2.4,3,3.5,2.9,2.9,3.5,1.8,1.9,2.5,3,2.1,2.7,2.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.316070556640625]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.850957870483398]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.89284610748291]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.579249382019043]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.24550437927246]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.9]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.7]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[113]}},{"framework":"owl-v2.5.1-keyed","benchmark":"01_run1k","values":{"total":[27.7,26.2,30.3,26.1,25.9,26.2,26.4,32.1,26.1,32.2,26.5,26.7,26.2,26.9,26.8],"script":[4.4,4.5,4.5,4.5,4.4,4.3,4.5,4.3,4.5,4.3,4.7,4.5,4.4,4.5,4.4],"paint":[21.5,21.5,21.5,21.5,21.4,21.6,21.6,21.4,21.5,20.9,21.6,21.8,21.4,22.2,21.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"02_replace1k","values":{"total":[35.8,30.4,31.8,33,30.3,34,30,31.9,30.4,34.1,33.5,34.3,34.2,32.4,32.7],"script":[7.5,7.4,7.3,7.4,7.5,7.5,7.6,7.4,7.4,7.5,7.4,7.8,7.6,7.5,7.5],"paint":[22.1,22.5,22.4,22.4,22.4,22.1,22,22,22.6,22.6,22.7,22.4,22.1,22,22.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.9,17.5,17.2,18,17.3,17.4,17.7,18.1,16.7,18.4,17.8,18,18.2,18,18],"script":[7.6,7.1,7.3,6.8,6.9,7.2,7,6.4,6,7.8,7.2,7.6,7.2,7.8,7.3],"paint":[11.1,10.2,9.3,9.9,9,10,9.4,9.9,9.8,9.1,9.3,9.1,9.5,9,9.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"04_select1k","values":{"total":[8,8,8.5,7.4,7.9,8.2,8.8,8.1,7.1,8.6,7.6,8.4,7.4,7.8,7.4,8.2,7.5,8.4,7.6,7.6,6.8,7.9,7.8,7.4,7.9],"script":[5.7,5.7,6.5,5.7,5.9,4.9,6.4,5.8,5.3,5.4,5.7,5.4,5.2,5.2,5.3,5.2,5,6.3,5.9,5.7,5.1,5.2,5,5.5,5.8],"paint":[1.5,2.1,1.8,1.6,1.9,1.4,1.7,2.1,1.3,2.2,1.2,1.9,1.5,1.7,1.9,2.5,2.3,1.3,1.1,1.8,1.6,1.7,1.9,1.8,2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"05_swap1k","values":{"total":[33.1,34.1,17.7,18.1,33.8,18.1,18.5,18.1,17.8,21.9,18,18.4,17.5,18.1,17.6],"script":[5,5.2,5.7,6,5.4,6,5.2,5.9,5.6,6.9,5.3,5.7,4.9,5.8,4.8],"paint":[12,13.4,11.5,12,11.3,11.2,12.4,10.7,11.7,14.7,11.9,12.5,11.9,11.5,11.2]}},{"framework":"owl-v2.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.2,13.6,13.9,13.5,14.3,13.4,14,13.4,13.6,14,13.4,13.8,13.4,13.9,13.6],"script":[4.7,4.7,4.8,4.5,4.9,4.3,4.9,4.7,4.8,4.9,4.7,4.7,4.4,4.7,4.5],"paint":[9,8.8,9,8.8,9.2,8.7,8.8,8.6,8.6,8.9,8.3,8.7,8.8,8.7,9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"07_create10k","values":{"total":[275,276,277.8,275.2,276.9,274.2,275.6,274.4,275.8,275.4,274.8,275.8,275,273.3,272.7],"script":[46.4,47.1,46.3,46.6,47,46.7,46.3,46.9,46.3,46.8,46.3,46.9,47.3,47.2,46],"paint":[225.1,225.5,227.7,225.1,226.5,224.2,225.8,224.2,226.2,225.2,225.2,225.4,224.3,222.8,223.4]}},{"framework":"owl-v2.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.1,39.3,39.6,39.5,33.9,34.3,34,34.3,33.4,39.3,34.5,38.1,38.7,38.9,33.7],"script":[7.5,7.6,7.6,7.7,7.6,7.7,7.7,7.8,7.5,7.4,8,7.4,7.6,7.7,7.8],"paint":[24.7,25.4,25.6,25.3,25.5,26.2,25.9,26.1,25.5,26.1,26.2,25.3,25,25.4,25.5]}},{"framework":"owl-v2.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,11.2,11.1,10.7,11.6,10.8,12.2,11,10.7,10.9,12.3,11.9,11.3,11.2,11.5],"script":[8.9,9.4,8.5,8.4,9.5,8.2,9,8.9,8.9,9.3,10.1,9.1,9.1,9.4,9.7],"paint":[1.7,1.1,1.7,1.2,0.3,0.6,2,1.4,1,0.3,2,2.1,1.6,1.6,1.1]}},{"framework":"owl-v2.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.879669189453125]}},{"framework":"owl-v2.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.352874755859375]}},{"framework":"owl-v2.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3989343643188477]}},{"framework":"owl-v2.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3456077575683594]}},{"framework":"owl-v2.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.868826866149902]}},{"framework":"owl-v2.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[79.9]}},{"framework":"owl-v2.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"owl-v2.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[90.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"01_run1k","values":{"total":[27,27.2,26.9,27.3,28.1,27,26.8,26.9,27.2,27.6,26.8,27.2,26.9,27.1,27.2],"script":[4.8,5.1,5,5,5.1,5.1,4.7,5,5,5.1,4.7,5.1,4.7,4.8,5.1],"paint":[21.8,21.6,21.3,21.8,22.4,21.4,21.7,21.4,21.7,22,21.7,21.6,21.8,21.9,21.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"02_replace1k","values":{"total":[30.4,30.6,30.2,30.1,30.8,29.8,30.3,30.3,30.7,30.7,30.1,29.9,29.7,30.1,29.9],"script":[7.1,7.1,7.1,7.1,7.1,6.9,6.9,7,7.4,7,7.3,7.1,6.8,7,7],"paint":[22.7,22.9,22.6,22.5,23.1,22.3,22.8,22.7,22.7,23.1,22.2,22.4,22.3,22.6,22.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.1,12.6,12.3,12.4,11.7,12.4,12.3,13.7,12.6,11.6,12.3,11.7,14.5,11.6,11.9],"script":[1.2,1,1.5,0.5,0.8,0.9,0.8,1.1,0.5,1,0.8,0.2,1.1,0.5,1.4],"paint":[9.2,10.7,8.9,10.7,9.7,10.2,10.1,11.5,9.8,9.7,9.9,10.3,11.5,9.7,9.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"04_select1k","values":{"total":[3,2.6,2.9,2.7,2.1,2.5,2.2,2.4,3.2,2.6,2.7,2.5,2.9,2.1,3.3,3.3,2.3,2.7,2.6,2.4,2.7,2.5,3.1,2.6,2.3],"script":[0.7,0.1,0.8,0.1,0.6,0.5,0.6,0.6,0.8,0.1,0.9,0.6,0.1,0.2,1,0.9,0.1,0.3,0.1,0.5,0.7,0.1,0.6,0.3,0.5],"paint":[2.1,1.5,2,2.4,1,1.9,1.1,1.6,1.5,2.3,1.5,1.8,1.8,1.1,2.1,1.2,1.3,2.2,0.8,1.7,1.9,1.9,1.8,2.2,1.7]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.9,13.7,13.6,14.7,13.7,13.1,13.9,13.8,14.8,13.3,13.8,13.6,13.1,13.4],"script":[1.4,1.1,1.2,0.7,0.6,0.9,0.6,0.9,1.1,1.6,1,0.9,1,0.2,0.9],"paint":[11.6,11.2,11.4,12.3,12.5,11.8,11.4,12.1,11.6,12,11.3,11.8,12.1,11.2,11.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.5,10.3,9.9,10.4,10.3,9.9,10.4,10.2,10,10.6,10.4,10.3,10.2],"script":[0.4,0.4,0.1,0.1,0.1,0.4,0.1,0.1,0.2,0.1,0.1,0.3,0.3,0.4,0.1],"paint":[9.5,9,9.7,9.3,9.2,9,9.6,8.6,9.9,9.5,9.6,9.4,9.1,8.6,9.5]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"07_create10k","values":{"total":[281.9,281.3,281.3,279.3,280.1,283.1,282.2,279.1,280.8,278.3,280.1,282.4,281.3,281.7,281.2],"script":[46.9,47.1,49.1,47.3,47.6,47.4,47.7,47.2,47.5,47.9,48.1,47.4,48.6,47.4,47.7],"paint":[227.9,226.8,225.1,224.9,225.3,227.5,227.3,224.7,226.2,223.3,224.9,227.5,225.5,226.7,226.1]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,32.9,32.5,31.9,32.5,32.3,33.3,31.6,32.7,32.3,32.5,32.1,32.9,32,32.4],"script":[5.2,5,5.3,5.2,5.2,5.1,5.1,4.9,5.2,5.2,4.9,5,5.3,4.9,5.3],"paint":[26.2,27.1,26.3,25.8,26.3,26.2,27.3,25.9,26.6,26.1,26.8,26.4,26.6,26.4,26.2]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.7,10.3,11,10.5,10.1,10.8,10.7,10.7,11,11,12.2,10.8,9.8,10.7,10.4],"script":[8.8,8.2,9.2,9.1,8,8.8,8.7,9.2,9.1,9.1,10.1,9,8.4,9.1,9.1],"paint":[0.8,1.8,0.9,0.3,1.1,0.7,1,0.3,0.9,1.1,1.2,1.2,0.2,0.2,0.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6104583740234375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.101165771484375]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1690216064453125]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8223886489868164]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.909683227539062]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.6]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3]}},{"framework":"plaited-v7.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"pota-v0.19.206-keyed","benchmark":"01_run1k","values":{"total":[25.2,25.1,25.4,26.1,24.9,26,25.3,25.8,25.7,25.3,25.4,25.6,25.2,25.1,25.3],"script":[3,2.8,3.1,3.1,2.8,2.7,2.8,3.1,3,3,2.8,3.1,2.8,2.9,3.1],"paint":[21.8,21.9,21.9,22.5,21.7,22.9,22.1,22.3,22.2,21.9,22.2,22.1,21.9,21.9,21.8]}},{"framework":"pota-v0.19.206-keyed","benchmark":"02_replace1k","values":{"total":[30.8,29.4,29,28.7,28.4,28.8,28.8,29,28.9,28.7,28.3,29.1,29,28.7,28.9],"script":[6.6,6,5.8,5.8,5.3,5.8,5.8,5.7,5.9,5.9,5.7,6.2,6,5.9,5.7],"paint":[23.7,22.8,22.6,22.3,22.5,22.5,22.4,22.7,22.5,22.2,22.1,22.3,22.4,22.3,22.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.8,12.5,12.1,11.9,12.4,10.8,12.1,12.3,11.8,11.6,12.3,12,10.8,12.4,12.4],"script":[1.2,1,0.8,1.4,1.5,0.2,0.6,1.2,1.1,0.6,1.2,1.5,0.2,0.9,0.7],"paint":[11.1,10.5,9.6,9.5,9.8,8.9,10.3,10.2,9.5,9.7,9.9,9.5,9.8,9.9,10.6]}},{"framework":"pota-v0.19.206-keyed","benchmark":"04_select1k","values":{"total":[4.8,3.2,2.8,2.2,2.1,2.6,2.7,2.1,2.1,2.2,2.6,2.3,2,2.5,2.6,2.6,2,2.3,2.2,2.6,2.2,2.4,2,2.2,2.2],"script":[0,0,0,0,0,0,0,0,0.5,0,0.4,0,0.1,0,0.6,0,0,0,0.1,0,0,0,0,0,0],"paint":[2.4,3,1.5,1.5,1.5,2.5,1.8,1.4,1.5,1.7,2,1.4,1.1,1.4,1.6,2.5,1.7,1.2,1.9,1,1.4,1.7,1.8,2,1.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.1,13.3,13.6,13.2,13.6,15,14.5,13.5,13.6,15.1,13.3,14,13.4,13.9],"script":[1,0.2,0.7,0.2,0.2,0.3,0.6,1.2,0.2,1.1,1,1.4,1,1,0.8],"paint":[11,11.7,11,12.2,12,12.7,13.5,12.2,12.4,11.7,13.1,10.3,11.2,11.4,11.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,11.2,10.7,10.9,10.9,10.8,11.5,10.7,10.8,10.9,10.8,10.9,10.4,10.6,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.5,0.6,0.5,0.6,0.6,0.5,0.6,0.3,0.6],"paint":[9.4,10.1,9.6,9.6,9.4,9.7,10.5,9.7,9.7,9.4,9.5,9.4,9.2,9.8,9.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"07_create10k","values":{"total":[270.1,265.6,266.1,266.3,266.3,267,266.1,265.8,266.6,265.5,265.8,264.5,265.5,267.8,265.8],"script":[34,33.6,33.5,34.4,33.7,35.5,33.7,33.9,34,34,33.9,33.1,33.8,34,34],"paint":[228.3,224.5,225.1,224.5,225.1,224.1,224.9,224.5,224.9,224.2,224.4,224.1,224.4,226.5,224.4]}},{"framework":"pota-v0.19.206-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.8,31.8,30.4,30.5,30.1,29.7,30.8,30.2,30.4,30,30.4,31.5,30.3,30.8,30.8],"script":[3.1,3.2,3.1,3.2,3.1,3.1,3.3,3.1,3.1,3.1,3.1,3.1,3.1,3.2,3.3],"paint":[26,27.8,26.5,26.5,26.3,25.9,26.7,26.3,26.5,26.1,26.4,27.6,26.5,26.8,26.8]}},{"framework":"pota-v0.19.206-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.9,10.3,9.7,10.1,12.3,9.9,10.4,10.7,9.8,10.1,10.6,9.7,11.3,10.6,12.6],"script":[8.1,8,7.7,7.7,9.4,7.7,8.1,8.8,7.8,8.2,8.6,7.9,9.1,8.6,10.2],"paint":[1.3,0.6,1,0.7,1.8,1.1,1.4,1,1.1,1,1.3,0.7,1,1.2,1.2]}},{"framework":"pota-v0.19.206-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6116056442260742]}},{"framework":"pota-v0.19.206-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6195240020751953]}},{"framework":"pota-v0.19.206-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.636446952819824]}},{"framework":"pota-v0.19.206-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8092126846313477]}},{"framework":"pota-v0.19.206-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.014822006225586]}},{"framework":"pota-v0.19.206-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"pota-v0.19.206-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3]}},{"framework":"pota-v0.19.206-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[28.1,27.5,27.2,26.8,27.6,27.4,27.3,27.3,27.6,27.4,27.2,27.2,28.5,27.3,27.2],"script":[5.7,5.5,5.6,5.6,5.6,5.8,5.8,5.7,5.8,5.8,5.6,5.6,5.9,5.9,5.8],"paint":[21.8,21.4,21,20.7,21.4,21.1,21,21.1,21.3,21,21.1,21.1,22,20.9,20.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[32.3,32.4,32.9,33.7,32.7,33.2,33.1,33,33.8,32.7,32.4,32.9,33.3,33.1,32.8],"script":[9.8,9.8,10.1,10.5,10,10.2,10.3,10.1,10.5,10,10,10,10.1,10,10.1],"paint":[22,22,22.2,22.6,22.1,22.4,22.1,22.3,22.7,22.1,21.9,22.4,22.6,22.5,22.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.3,12.1,12.3,12.6,11.8,12.4,14.2,13,13,13.6,12.9,12.8,12.6,13.4,12.4],"script":[1.9,2.4,2.3,2.4,1.8,2.5,3.2,2.4,3.2,2.6,2.3,2.6,2,2.6,2],"paint":[9.2,8.5,8.9,9.2,8.8,8,9.5,9.4,8.3,9.9,9.1,9.5,9.3,9.8,8.2]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[4.2,3.4,4.1,3.7,4.1,4,4,4,3.7,4.4,4.7,4,3.4,3.9,4.7,3.3,3.8,4,4.1,3.6,3.7,4.6,4.1,3.7,3.5],"script":[1.9,1.7,1.6,1.7,1.9,1.4,1.7,1.4,1.5,1.5,2.3,1.4,1,1.8,2.4,1.3,1.7,1.4,1.7,1.1,1.3,2.1,1.4,1.6,1.7],"paint":[2.2,1.6,1.6,1.2,1.6,1.8,1.6,2.4,1,2.8,1.8,1.6,1.3,1.5,1.5,1.5,2,1.8,1.9,1.4,2.3,1.6,2.5,1.3,1.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.8,15.8,14.5,14.4,15.2,15.5,14.1,14.7,15.5,15.2,14.7,15.5,13.7,14.5],"script":[1.2,1.5,2.1,1.6,1.6,2.2,2,1.7,1.6,1.8,1.7,1.6,2.2,1.5,1.8],"paint":[11.9,12.3,12.6,12.4,11.9,11.8,12.3,11.1,11.8,13.4,12.3,12.2,12.3,11,11.7]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11,11,11.4,11.2,10.8,10.9,11,10.9,11.3,11.2,11,11.1,11,11],"script":[0.7,1,0.7,0.8,0.9,0.7,0.7,0.7,1,0.9,0.8,0.8,0.7,0.9,0.8],"paint":[9.4,9.6,9.5,9.6,9.5,9.6,9.6,9.7,9.3,9.8,9.9,9.7,9.8,9.6,9.6]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[298.4,296.7,297.7,297,298.2,298.6,296.3,299.5,296.7,301.8,300.1,296.1,303,304.5,297],"script":[66.9,66.3,66,67.2,67.3,66.8,66.7,67.2,66.5,67.6,67.6,66.6,67.3,67.3,66.8],"paint":[224.2,222.8,224.2,222.4,223.5,224.3,222.3,224.9,222.9,226.4,225.2,222.3,228.4,228.4,222.9]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.9,33.4,34.3,33.9,34.1,34.2,33.9,34.2,34,33.9,33.8,33.8,33.8,34,34.1],"script":[6.9,6.7,6.9,7,7,6.9,7.3,7.3,7,7,7,6.9,6.8,6.9,6.8],"paint":[26.1,25.7,26.4,26,26.2,26.4,25.6,26,26.2,26,25.9,26,26,26.1,26.4]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,12.1,12.6,12.2,13.8,12.6,13.5,12.3,12.1,13,12.2,12,12.3,11.7,11.9],"script":[10.6,10,10.3,9.8,11.8,10.7,11.1,10.1,10.1,10.6,10.4,10,10.8,9.9,10.1],"paint":[0.9,1.8,1.2,1.4,1.8,1.7,1.8,1.6,0.9,1.5,0.9,0.3,0.6,0.3,0.5]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6097860336303711]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6132383346557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.661724090576172]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7480039596557617]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.265636444091797]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.3]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1]}},{"framework":"preact-classes-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"01_run1k","values":{"total":[29.4,29.1,28.5,29.4,29.1,29.6,28.9,29,28.7,29.3,29.2,28.8,29.2,29,28.7],"script":[6.6,6.5,6.5,6.9,6.5,7,6.8,6.6,6.4,6.8,6.9,6.5,6.5,6.5,6.5],"paint":[22.3,22.1,21.4,22,22,22,21.6,21.8,21.8,21.9,21.7,21.7,22.1,22,21.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"02_replace1k","values":{"total":[33.1,34.7,33.4,33.6,33.3,33.1,33.4,32.8,33.8,33.4,33.3,33.6,33.4,33.2,33.6],"script":[10.1,10.8,10.2,10.3,10.3,10,10.4,10,10.5,10.1,10.3,10.5,10.2,10.2,10.5],"paint":[22.4,23.3,22.6,22.7,22.5,22.5,22.4,22.3,22.8,22.7,22.4,22.5,22.6,22.4,22.5]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.2,22.5,21.8,21.4,20.2,21.4,21,21.9,21.7,21.8,21.5,22,20.6,21.8,22],"script":[10.1,9.9,9.6,9.5,8.6,9.5,9.3,10.1,9.6,9.8,9.3,10.4,9,10,9.6],"paint":[9.6,9.8,9.5,10,8.7,9.8,8.9,10.1,10.6,9.2,9.9,9.4,9.3,9.9,10.9]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"04_select1k","values":{"total":[14.7,14.9,14.4,15.3,13.4,14.5,14.7,14.7,12.2,13.7,14,14.1,14,15.2,13.9,14.6,14.4,13.9,13.8,13.9,14.2,13.9,13.3,14.5,14.8],"script":[11.2,11.3,11.2,12.1,10.7,11.1,11.9,11.1,9.6,11,11.2,10.9,10.5,11.9,10.4,11.4,10.8,10.7,10.6,10.8,10.8,11.1,10.7,11.1,11.4],"paint":[1.8,2.2,2.4,0.8,2.1,2,1.7,1.4,1.4,1.4,1.1,1.3,3.2,2.8,1.1,2.8,2.5,1.2,2.1,2.6,1.1,1.7,0.9,2.5,1.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"05_swap1k","values":{"total":[25.3,25.7,25.8,25.6,24.6,25,25.9,26.3,26.1,24.9,26.4,26.7,27.3,24.7,25.6],"script":[11.2,11.5,11.6,11.4,11.1,11.4,11.8,11.4,12.4,10.4,12,11.6,12.5,10.5,11.4],"paint":[12,12.5,11.9,12.3,11.1,12.5,11.1,12.8,12.6,12.5,12.3,12.8,12.9,12.4,11.4]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.1,16.9,16.8,16.4,16.9,16.8,16.7,17.2,16.6,16.7,17.3,17,16.7,19.1,16.9],"script":[6,5.8,5.9,5.4,6,5.6,5.8,6.2,5.5,6,6.1,6.1,5.8,6.7,5.8],"paint":[10,10.2,9.5,9.9,10.1,9.9,9.9,10.2,10.1,9.9,10.3,9.5,9.7,10.9,10]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"07_create10k","values":{"total":[300.2,300.6,301.1,300.5,296.5,298.7,301.3,299.7,299.8,298.9,298.1,300.3,300.6,299.4,295.5],"script":[71.1,69.9,69.3,69.3,68.2,69.3,69.3,70.2,69.5,69,69.8,69.6,70.1,69.4,69.3],"paint":[221.7,223.4,224.4,223.9,221.2,222.2,224.7,222.2,222.8,222.8,221.1,223.2,223,222.5,219.1]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.6,36,36,36.7,35.4,35.7,35.3,35.9,35.7,35.5,35.7,35.9,36,35.7,35.7],"script":[8.9,8.9,8.9,9.2,8.9,8.8,8.8,9,8.8,8.9,9,9,9.1,8.9,9.1],"paint":[25.9,26.1,26.2,26.5,25.5,26,25.6,26,26,25.7,25.8,26,25.9,25.9,25.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[13,12.2,12.8,12.5,11.8,12.1,11.8,11.7,12.3,12.2,11.4,12.9,11.5,11.6,11.1],"script":[10.7,10,10.6,10.4,9.9,9.8,9.5,9.5,10.4,10.4,9.9,11,9.5,10.3,9.6],"paint":[1.5,2.1,2,0.3,0.6,0.8,0.7,0.9,0.3,1,0.3,1.2,0.6,0.3,0.3]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6020488739013672]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.354781150817871]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3935155868530273]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7652626037597656]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.10957431793213]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.7]}},{"framework":"preact-hooks-v10.27.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[35.7,35.7,34.4,35,34.5,34.4,34.1,36.5,34.5,34.8,34.5,34.3,34.4,34.4,35.6],"script":[13.7,13.7,12.1,12.8,12.5,12.4,12.2,12.8,13.1,12.4,12.2,12.6,13,12.3,13.2],"paint":[21.4,21.4,21.7,21.6,21.5,21.5,21.3,23,20.8,21.8,21.7,21.1,20.8,21.4,21.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[39.9,39.9,40.4,39.7,40.4,40.5,40.1,40.4,41.1,40.2,40.2,40.6,39.6,39.2,40.1],"script":[16.6,16.5,16.8,16.1,17.3,17.2,17.1,17.2,17.6,16.5,16.5,17.2,16.5,16.4,16.8],"paint":[22.7,22.7,23,23,22.4,22.7,22.4,22.6,22.9,23.2,23,22.8,22.5,22.3,22.6]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.4,14.5,15.7,14.9,15.2,15.2,14.8,16,14.8,15,16.5,14.4,14.8,16.9,15.7],"script":[5.2,4.4,4.4,4.5,4.5,4.5,4.1,4.8,4.9,4.6,5.3,4.2,4.5,6,4.4],"paint":[9.8,8.3,9.8,8.3,9.6,9.1,9.4,9.6,8.7,7.8,9.7,9.5,9.4,8.9,10]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[3.8,3.2,3.5,2.9,3,3.5,3,3,3.1,2.7,3,2.6,2.7,3.5,2.8,3.2,3.6,3.3,3.3,3.3,3.5,3.4,3.5,2.9,2.5],"script":[1.2,1,1,0.9,0.9,1,0.7,1,1,0.7,1,1,0.6,1.2,1,0.9,1.5,1,1.4,1.1,1.2,0.9,1.4,0.7,0.9],"paint":[2.3,1.4,2.4,1.9,1.2,2,2,1.9,0.8,1.4,1.4,1,1.1,2.2,1.6,1.7,1.6,2.2,1.8,1.5,2.1,1.6,1.3,1.3,1.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.3,15,15.3,15.4,15.8,15.1,14.5,14.6,15.4,15.1,16,16.7,14.6,14.6,14.7],"script":[2.7,2.3,2.5,2.2,2.3,2.4,2.3,1.8,2.2,2.1,2.4,2.2,1.8,2.3,1.6],"paint":[12,11,11.8,11.7,12,11.5,10.7,11.7,12.1,11.9,12.3,13.3,11,11.7,12.3]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.6,11.4,11.5,11.5,11.6,11.5,11,11.7,11,11.4,11.5,11.4,12.2,11.5],"script":[1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2],"paint":[10.1,9.4,9.7,9.7,9.6,9.7,9.5,9.2,9.9,9.1,9.7,9.5,9.8,10.3,9.5]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[338.5,340.2,339.4,341.2,339.2,338.9,336.8,338.2,341.3,342.5,339.9,339.7,343.2,340.2,338.4],"script":[114.3,114.1,111.7,114.3,112.7,110.1,109.8,111.6,112.6,114.4,112.1,112.8,115.4,111.6,112.4],"paint":[216.6,218.4,219.7,219.3,218.8,221.2,219.2,218.9,221,220,219.9,219.3,220,219.9,218.1]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.6,41.1,41.7,41.1,40.8,41.2,41.3,42.5,41.6,41.9,41.4,41.5,41.6,41,41.6],"script":[14.2,13.9,14.3,14,13.8,14.2,14.1,14.1,13.8,14.1,13.8,14.1,14,14.1,14.3],"paint":[26.4,26.2,26.4,26.1,26.1,26,26.3,27.3,26.8,26.8,26.5,26.4,26.7,25.9,26.4]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14,15.3,15,14.3,13.9,14.7,14.7,14.5,15.2,15.1,15.1,15.2,15.3,15.5,15.7],"script":[12.3,12.8,13.3,12.3,11.9,12.5,12.9,12.3,12.7,12.8,13,13,13.6,13.6,13.7],"paint":[0.3,2.2,0.6,0.8,1.7,1.5,1,1.1,1.4,0.7,0.3,1,1,1.7,1.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6635227203369141]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.739272117614746]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.819304466247559]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0426464080810547]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.14390182495117]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8]}},{"framework":"preact-kr-observable-v10.27.1 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"01_run1k","values":{"total":[36.2,33.8,34.5,34.4,34.8,34.7,35.4,35.8,34.4,37.5,34.6,35.3,35.1,35.7,34.4],"script":[13.1,11,11.8,11.4,12.1,11.7,12.1,12.6,11.9,12.8,11.6,12.5,12.2,12.6,11.5],"paint":[22.5,22.2,22.2,22.4,22.2,22.4,22.7,22.6,21.9,24.2,22.5,22.2,22.3,22.6,22.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"02_replace1k","values":{"total":[36.3,36.8,37,36.2,36.2,36.7,36.7,37.3,36.9,37.5,36.9,36.1,36.3,37,37.1],"script":[13.3,13.5,13.8,13,13,13.3,13.4,13.8,13.4,13.8,13.8,13.2,13,13.5,13.6],"paint":[22.3,22.7,22.6,22.6,22.6,22.8,22.7,22.9,22.9,23.1,22.6,22.3,22.8,22.9,22.9]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,11.1,11.7,11.5,11.2,11.1,12.3,12.4,11.7,10.9,10.8,11.5,11.5,10.6,12.2],"script":[1.2,1,1.4,1.3,0.6,0.6,1.5,1,0.9,0.6,0.6,1,0.8,0.2,1],"paint":[9.1,9,8.9,9.2,9.5,9.2,10,10.8,9.2,9.2,9.6,9,9.5,9.1,10]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"04_select1k","values":{"total":[4.3,3.3,3.5,3.7,3.9,3.3,3.6,2.5,3.3,3,3.6,2.9,3,3.7,3.2,3.5,3.7,3.6,2.9,3.9,2.6,2.8,3.1,2.4,3.6],"script":[1.1,0.9,1.2,1.2,1.5,0.9,1.2,0.8,1.1,1,0.9,0.3,0.6,1.7,0.9,0.9,1.3,1.2,1.1,1.6,0.3,1.1,1.5,0.9,1.2],"paint":[1,1.8,2.1,1.6,2.3,1.8,0.4,1.2,1.4,1.2,2.5,2.4,1.8,1.8,1.4,1.8,2.3,1.4,1,2.2,2.3,1.6,1,1.4,1.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"05_swap1k","values":{"total":[16.2,15.7,15.4,15.5,16.1,16.6,15.7,19,16.7,16.8,16.7,16.1,16.7,16.1,16.7],"script":[3.4,3.1,3.2,3,3.2,3.3,3.6,3.8,3.5,3.4,3.3,3.4,2.8,3.4,3.4],"paint":[11.1,11.5,11.2,11.5,11.8,11.9,11,13.8,12,12.5,11.7,11.7,13.2,12,12.3]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.8,12.6,12.2,13.4,11.8,11.6,12.1,11.8,11.8,12,12.1,11.9,11.8,12.2],"script":[1.6,1.5,1.8,1.8,1.8,1.7,1.7,1.7,1.6,1.6,1.7,1.8,1.7,1.5,1.8],"paint":[9.5,9.5,10,9.8,11.1,9.5,9.6,9.9,9.4,9.5,9.7,9.4,9.6,9.7,9.5]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"07_create10k","values":{"total":[325.8,328,326.8,322.5,327.9,325.9,326.3,327.7,326.4,323.6,327.9,324.4,327.7,328.9,326.2],"script":[100.3,102.1,102.8,99.6,100.2,99.9,102.2,100.6,101,99.1,102.7,100.7,102.9,100.6,101.5],"paint":[218.4,218.6,217,215.8,220.6,218.9,217.2,219.9,218.3,217.5,218.3,216.6,217.7,221.1,217.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39,38.8,38.4,39.5,39.2,39.2,38.9,38.4,38.6,39.1,38.7,38.5,39,40.7,39.1],"script":[10.9,10.7,10.7,11.1,11.2,11.1,11,10.6,10.6,11.2,10.6,10.9,11,10.8,11.1],"paint":[27,27.2,26.8,27.4,27,27.1,26.9,26.8,27.1,26.9,27.1,26.6,27,28.8,27]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.7,13.2,14.5,15,14.3,14.5,15.6,14.2,14.1,15.5,14.5,13.7,14.2,14.4,14.5],"script":[12.8,11.6,12.6,12.9,12.7,12.2,13.2,11.9,11.9,13,12.3,12.1,11.9,12,12.7],"paint":[1.1,0.3,0.5,0.3,0.3,1.3,1.1,0.7,1.5,0.8,0.3,1.1,1.3,1.4,0.6]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6455287933349609]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.1189727783203125]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.140664100646973]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9424858093261719]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.165324211120605]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.1]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"preact-signals-v10.27.1 + 2.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52]}},{"framework":"quel-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.4,29,28.1,27.7,28.2,28.5,29,27.6,29.2,28.2,27.8,28.1,27.1,27.9],"script":[5.7,5.7,5.8,5.5,5.5,5.5,5.7,6.1,5.4,6,5.4,5.6,5.5,5.5,5.5],"paint":[22.4,22.2,22.7,22,21.7,22.1,22.3,22.4,21.6,22.7,22.3,21.6,22,21.1,21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[33,33,32.8,32.4,33,32.9,32.8,33,32.9,32.7,33,33.2,34.7,33.1,32.2],"script":[9.3,9.5,9,8.8,9.4,9.1,9.2,9.4,9.1,9.2,9.4,9.2,9.6,9.3,9],"paint":[23,22.9,23.2,23.1,23.1,23.1,22.9,23,23.3,22.9,23.1,23.4,24.5,23.1,22.6]}},{"framework":"quel-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.7,14,15.8,13.2,14.2,13.8,13.4,14.5,14.5,13.4,13.5,13.8,14.1,14.2,14.5],"script":[2.1,2.2,3.3,2.2,2.2,2.6,2.9,2.5,3.2,2.5,2.6,2.5,2.5,2.5,2.9],"paint":[8.9,10.6,11.8,9.9,10.8,10.1,9.5,11,10.2,9.5,9.1,10,9.7,9.5,10.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[2.9,2.4,3.1,3,3.1,3.3,2.9,2.8,3.1,2.7,3.5,2.8,3,2.7,2.6,2.9,3.4,3.5,3.3,3.3,3.1,3.5,3.1,2.5,3.3],"script":[0.2,0.2,0.9,0.6,0.6,0.8,0.2,0.7,0.6,0.5,1.1,0.7,0.3,0.8,0.2,0.3,1.1,1.3,0.9,0.8,0.6,1,1,0.6,0.9],"paint":[2.6,1.3,1.6,2.2,1.6,1.1,2.2,2,1.8,1.3,0.4,2,2.6,1.1,1.8,2.4,1.2,2.1,1.5,1.5,1.6,2.3,1.4,1.1,1.5]}},{"framework":"quel-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[15,14.5,14.4,15.2,15.8,15.2,14.8,14,14.5,14.3,14.4,14.2,15.2,14.2,16.1],"script":[1.7,0.9,1.4,1,1,1,0.6,0.9,1.1,1.3,1.4,1.4,1.7,1.3,1.8],"paint":[11.8,12.4,11.7,13.2,13.3,12.9,12.7,11.9,11.9,11,12,11.9,12,11.3,13.1]}},{"framework":"quel-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.3,13.3,13.7,13.1,13.3,13.2,13.4,13,12.9,13.4,13.5,13.3,13.2,13.4,13],"script":[2.5,2.7,3,2.6,2.5,2.5,2.5,2.6,2.5,2.9,2.8,2.8,2.7,2.7,2.5],"paint":[10.2,10,10.4,9.9,10.1,10.1,9.9,9.8,9.4,9.9,9.9,9.7,9.9,10,9.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[343.6,344.4,341.7,347.9,342.3,343.6,344.2,340.4,341.1,341.3,341.5,343.9,341.8,347.6,345.8],"script":[108.9,110.3,107.6,108.9,108.7,108.4,109.8,107.4,107.3,108,107.9,109.2,108.2,110.1,110.3],"paint":[226.6,226,226.1,230.8,225.5,226.7,226.2,224.9,225.7,225.3,225.4,226.7,225.4,228.9,226.9]}},{"framework":"quel-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.5,42.6,42.9,42.1,42.5,42.5,42.9,42.8,42.2,41.9,42.4,41.9,42.4,42.2,42],"script":[15,14.6,15.1,14.8,14.9,14.7,14.9,14.9,14.7,14.6,14.8,14.8,15.2,14.7,14.8],"paint":[26.4,27,26.8,26.2,26.6,26.7,27,26.9,26.4,26.3,26.6,26.1,26.1,26.4,26.2]}},{"framework":"quel-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.9,17.7,15.6,16.2,15.7,15,16,15.6,18.3,16.2,16.1,16,15.9,16.3,16.4],"script":[13.5,15.6,13.8,14.1,13.4,13.3,13.9,13.5,16.8,14,13.8,14,13.4,14.1,14.2],"paint":[1.4,0.6,1,1.6,0.5,1,1.6,1.4,1.4,0.9,1.6,1.8,1.5,1.4,1.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0724897384643555]}},{"framework":"quel-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.211780548095703]}},{"framework":"quel-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.186689376831055]}},{"framework":"quel-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.821178436279297]}},{"framework":"quel-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50977897644043]}},{"framework":"quel-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"quel-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8]}},{"framework":"quel-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.8]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"01_run1k","values":{"total":[89.2,87,84,85.4,87.9,85.5,84.1,87.5,87.2,90.5,85.6,87.4,90.1,86.7,90.8],"script":[60.9,61.2,61.6,61.1,61.4,60.3,61,61.9,61.4,61,61.6,61.5,60.8,61.1,60.6],"paint":[22.6,22.5,22.1,22,22.3,22.4,22.5,22.6,22.6,22.4,22.4,22.5,22.1,22.5,22.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"02_replace1k","values":{"total":[92.1,99,92.3,91.9,96.8,93.1,98.9,96.9,94.5,97.1,92.5,94.1,92.7,93.4,99],"script":[63.4,63.7,63.4,63,63.3,63.4,63.6,64.7,63.4,63.2,64,63.8,63.4,63,63.7],"paint":[23.3,23.5,23.6,22.9,23.2,23.4,23.7,23.6,23.3,23.1,22.9,23.5,23,22.8,23.1]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[57.5,56.9,56.6,57.5,56.4,59,57.7,57.3,59.4,59.1,57.5,57.5,59.3,59.3,56.5],"script":[3.8,3.3,2.7,3.9,4,3.2,3,3.6,3.6,2.9,3.9,4.7,3.6,3.2,3.3],"paint":[12.5,12.3,12.6,12,10.9,11.5,10.9,11.5,12.9,12.4,12.6,10.9,11.6,11.3,12.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"04_select1k","values":{"total":[14.1,9.3,10.7,8,13.8,10.7,6.4,9.4,7.1,5.8,10.1,9.4,11.6,13.3,8,8.3,8.1,8.1,8.4,13.7,11.8,5.7,10.5,13.1,5.4],"script":[1,2.1,2,2.1,1.6,1.4,1.2,1.4,1.6,1.5,2,2.2,1.9,1.2,1.4,0.9,2.1,1.9,2,1.2,1.8,2.2,1,1.4,0.3],"paint":[3.3,3.5,2.7,2.2,3.3,2.7,2.3,3.3,3.5,3.7,4.3,2.2,2.5,2.9,3.8,2.6,2.1,2.1,4,2,3.8,2.3,3.7,3.8,3.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"05_swap1k","values":{"total":[25.6,67.2,66.3,66.2,25.1,25.1,66.9,67.7,66.5,65.9,69.7,65.2,66.2,67.1,65],"script":[8.4,9,8.7,8.5,8.2,7.4,9.1,8.3,8,8.2,9,8.6,8.9,9,8.5],"paint":[15.4,15.1,13.7,14.9,15.9,14.7,14.5,13.7,16.2,15.2,15.5,14.7,15.3,14.8,14.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.5,17.5,19.4,16.5,17.5,17.1,17.1,17.4,16.8,16.9,17.4,16.9,17.1,16.8,17.2],"script":[5,4.8,4.7,4.8,5.2,4.7,4.8,4.8,4.8,5.2,5.2,4.9,5.1,4.7,5],"paint":[11.2,11.2,11,10.9,11.3,11.2,11,11.3,11.1,10.9,11.2,10.6,10.7,11.1,11.2]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"07_create10k","values":{"total":[833.3,828.1,822.4,839.1,830.2,831.9,839.7,836,832.4,830.4,828.3,838,835.8,840.2,833.8],"script":[591.6,592.7,590.8,598.8,593.9,595.2,595.3,594.6,594.1,592.9,593.9,595.2,596.1,600.8,591.2],"paint":[229,227.3,224.9,232.5,229.5,228.8,235.9,232.1,229.2,227.8,226.8,234.2,231.5,228,231.9]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[87.5,88.3,87.4,87.7,89,89,87.8,88.1,87.9,88,88.8,88,87.6,89.5,87.9],"script":[49.1,49.7,49.2,49.2,49.9,50.3,49.5,49.2,49.4,49.1,49.9,49.5,49.5,51.1,49.1],"paint":[27.3,27.1,27.1,27,28,27.2,27.4,27.4,27.5,27.8,27.7,27.4,26.9,27.1,27.4]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[64.9,22,23.2,22.8,23.5,22.5,64.9,22.2,23.8,22.8,63.7,22.3,21.1,22.2,23.1],"script":[19.4,18.8,19,18.5,20.1,19.4,18.9,18.2,19,19.2,18.2,18.9,17.6,18.6,19.4],"paint":[3.6,3.1,2.9,2.1,2.8,2.6,3.9,2.8,3.4,2.5,1.9,1.5,2.8,2,2.5]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4940757751464844]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.986279487609863]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.990345001220703]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[9.274320602416992]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[86.92636203765869]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[87.7]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.6]}},{"framework":"qwik-v1.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"01_run1k","values":{"total":[41.3,40.8,42.6,42,41.8,42,39.8,42.1,41.3,42.1,41.9,41.8,42.4,39.6,42.3],"script":[18.9,18.7,19.8,19.9,19.7,19.7,18.2,19.6,19.5,20,19.8,19.4,19.9,18.2,19.8],"paint":[21.8,21.5,22.2,21.6,21.4,21.8,21.1,21.8,21.3,21.6,21.5,21.8,21.9,20.8,22]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"02_replace1k","values":{"total":[45.4,45.5,46.9,46.7,45.3,46.1,45.9,46.2,46.2,45.9,46.1,46,45.9,46.5,46.5],"script":[22,22.1,23.5,23.1,22.8,23,22.8,23.4,23.1,22.8,22.9,22.8,22.6,22.7,23.3],"paint":[22.8,22.8,22.8,23,22,22.6,22.6,22.3,22.6,22.6,22.6,22.6,22.6,23.2,22.7]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.2,12.7,12.6,12.6,12.3,12.6,13.5,13.4,13.4,12.5,12.7,13.3,12.3,13.2],"script":[1.9,2.5,2.4,1.9,2,2.1,2.2,1.9,2.2,2.2,2.3,1.7,2.1,1.7,3],"paint":[9.2,9.8,9.4,9.6,9.5,8.7,8.9,10.3,10.5,9.7,9.3,9.5,9.9,9.7,9.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"04_select1k","values":{"total":[7.2,8.7,9.1,7,8,7.7,8.8,8.4,9,7.1,6.9,8.2,7.3,8.1,9.1,9.4,7.1,6.8,7.6,6.9,6.8,9,7.2,6.4,7.4],"script":[4.5,5.7,5.9,4.8,4.8,5,5.4,5.9,5.8,4.7,4.4,5.6,4.7,5,5.9,5.8,4.4,4,5,4.6,4.8,6.2,4.6,4.6,4.8],"paint":[2.4,2.3,1.7,1.4,2.4,2.5,1.8,2.4,2.9,1.3,1.9,1.2,2,2.1,1.5,2,1.7,1.8,1.1,1.9,1.1,1.8,1.8,1.3,1.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"05_swap1k","values":{"total":[107.6,103.3,104.7,108.2,106.7,105.1,108.4,107.3,110.1,110.2,106.3,107.1,106.4,108.4,105.5],"script":[20.1,18.7,20.2,19.9,18.7,19.6,20.1,21.2,19.6,22,19.4,21,19.8,19.8,18],"paint":[86.2,81.7,82.1,85.1,85.8,83.4,86.5,84.4,87.5,86.2,83.9,83.1,83.8,85.9,85.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16,14.7,15.9,15.9,15.2,16.4,15.5,14.8,15.1,16.1,16,15.7,15.5,15,15.3],"script":[4.5,3.8,4.6,4.9,4,4.8,4.5,3.8,4.1,4.5,4.8,4.3,4.3,3.6,4.1],"paint":[10.8,10.1,10.5,10.3,10.5,10.6,10.7,10.2,10.3,10.9,10.6,10.6,10.6,10.7,10.3]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"07_create10k","values":{"total":[378.9,376.9,378.5,378.3,377.7,378.7,378.9,380.3,380,380.7,380.2,381.1,378.6,378.8,383],"script":[152.2,152.4,154,153.7,154,153.4,154.6,155.8,153.9,155.2,154.6,155.9,154.9,153.5,155.4],"paint":[218.6,217.3,217.4,217.6,216.4,218,217.2,217.4,219.1,218.2,218.4,218,216.6,218.1,220.5]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.5,45.1,45.6,45.7,45.5,45.6,45.4,45.4,45.6,45.9,45.5,45.7,45.6,48.1,45.5],"script":[17.2,17.6,17.9,18.1,18.2,17.8,18.1,18.1,17.6,17.8,18.2,18.1,18,18.4,18],"paint":[26.3,26.5,26.7,26.6,26.3,26.8,26.3,26.3,27,27.3,26.2,26.6,26.6,28.6,26.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.7,29.8,28.2,29,26.5,28.6,30.2,28.9,27.7,27.6,28.8,28.1,28.6,27,29],"script":[25.6,27.9,25.9,27.1,25,26.2,27.8,26.5,25.3,25.6,25.9,26.2,26,25.3,26.8],"paint":[1.1,1.1,0.3,0.3,0.7,1.2,1.2,1.3,2.1,0.4,2.1,0.5,1.6,1.6,0.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.20477294921875]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.750065803527832]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.762483596801758]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.151012420654297]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.14854145050049]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[227.4]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6]}},{"framework":"ractive-v1.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[232.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"01_run1k","values":{"total":[55.5,53.4,52.4,54.9,53.7,55.4,55.3,55.3,52.1,52,58.9,54.4,53.5,53.4,54],"script":[23.7,24,24.2,24.2,24.1,24.4,24.1,24.7,24,24.6,24.1,24,24,24.1,24.4],"paint":[21.2,21.6,21.2,21.7,21.4,21.5,21.7,21.8,22.1,21.2,21.4,21.1,21.2,21.6,21.9]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"02_replace1k","values":{"total":[65.6,58.5,71.1,64.4,57.3,65.1,63.2,64.3,70.7,62.6,58.3,59.5,62.7,64.4,60.7],"script":[29.2,29.2,29.1,28.8,28.6,28.9,28.9,28.9,29.3,28.8,28.2,28.6,28.9,29.3,29.1],"paint":[23.4,23,23.5,23.5,23.6,23.7,23.6,23.5,23.6,23.3,23.7,23.4,23.5,23.3,23.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.7,45.7,44,45.7,45.4,45.4,45.3,29.5,44,45.9,29,27.7,43.8,47.4,44.9],"script":[15.3,15.6,14.5,15.5,15.4,15.7,15,15.2,15.9,14,13.8,13,14.8,15,15.7],"paint":[12.8,13.4,13.1,14.2,13.5,12.2,13.9,13.3,12,14.2,11.8,12.3,12.7,12.5,12.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"04_select1k","values":{"total":[16,17.6,22.6,16.1,22.2,20.8,14.2,23.5,14.3,14,15.5,18.5,10,17.9,21.6,16.9,15.1,19,19.9,22.1,16.6,22,19.3,17.4,20.7],"script":[6.1,5.5,6,6.1,5.6,5.4,5.2,7.2,4.4,6.6,7.1,5.2,5.6,5.5,7.5,7.1,6.2,4.9,6.6,4.5,5,6.3,6.1,5.3,4.9],"paint":[3.3,3.5,3.2,4.8,3,3.5,2.5,3.4,3.5,4.9,2.9,3.7,3.5,3.9,4.6,4,2.6,4.2,3.5,3.5,4.5,3.7,2.9,2.7,5.5]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"05_swap1k","values":{"total":[127.8,131.6,132,133.3,129.9,131.3,131.6,133.3,135.4,129.1,133.2,133.8,130.5,134.3,129.5],"script":[26.9,26.7,26.6,27.7,28.9,23.9,27.4,27.1,27.8,26,24.6,27.5,27.5,27.6,26.8],"paint":[83.3,85.5,84.3,87,82,84,83.9,83.2,82.7,84.9,84.9,85.2,85.3,86.2,84.3]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[28.8,25.7,28.4,31.7,32,25.5,24.6,26.9,23.9,24.1,27.8,29.6,30.1,26.7,28.2],"script":[6.8,6.6,6.5,6.8,6.5,6.8,7.1,6.3,6.3,6.3,6.8,6.8,6.7,6.2,6.8],"paint":[11.6,10.8,12.1,11.8,12,11.6,11.7,11.4,12.1,11.8,11.5,11.8,11.1,11.5,11.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"07_create10k","values":{"total":[523.2,509.4,514.2,516.9,514.5,515.1,522.3,517.7,524.3,509.2,524,516.8,514.9,501.8,514.1],"script":[272.4,271.7,275.2,273.7,277,275.8,275.5,275.6,283.5,271.8,278.2,277.3,276.8,272.9,274.1],"paint":[235.3,233.1,232,231.6,233.5,232.8,235.6,235.2,230.2,230.8,239.3,233.1,231.7,223.2,233.2]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.4,60.3,55.2,60.3,62.4,62.4,61.9,61,61.4,67.9,63.2,58.1,61.8,58.3,55],"script":[23.5,23,23.4,23.3,23.8,23.3,23.5,23.4,23.5,23.1,23.9,23.8,23.1,23.5,23.5],"paint":[25.8,26,26.3,26.2,26.2,26.1,26.2,26,26.3,26.5,25.6,26.1,26.4,25.9,26]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.6,57,55.7,54.9,59,57.2,58.2,55.3,60.3,57,57.2,56.4,56.1,58,60.2],"script":[32.8,31.5,31.5,30.9,32.8,31.9,34.4,32.8,33.1,32.5,33.2,33.5,32.5,32,32],"paint":[3.1,3.1,1.4,2.1,3,2.5,3.4,2.1,1.7,2.3,3,2.8,2.6,2.6,2.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.84600830078125]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.644961357116699]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.359033584594727]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.274052619934082]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[53.14693546295166]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[351.1]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.8]}},{"framework":"re-frame-v1.4.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[376]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[29.6,27.3,29,27.6,27.9,27.3,27.5,27.7,27.7,27.6,27.2,27.2,29.6,27.4,27.3],"script":[7.5,6.8,7.3,7.1,7.1,6.8,7,7,7.1,6.7,6.8,6.7,7.3,6.9,6.7],"paint":[21.5,19.9,21.2,20,20.3,19.9,20,20.2,20.1,20.3,19.9,20,21.6,20,20.1]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[35,34.3,34.2,34.6,34.7,34.2,34.4,34.8,34.1,34.1,34.3,34,33.9,34.3,34.5],"script":[10.9,11,10.8,10.9,11,10.8,11,10.9,11,10.9,10.6,10.8,10.6,11,10.9],"paint":[23.5,22.8,22.8,23.1,23,22.9,22.9,23.3,22.5,22.5,23.1,22.7,22.7,22.8,23]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,15.6,14.1,14.2,14.9,14.8,14.3,14.4,15,14.5,13.6,14.2,14.4,14.1,14.3],"script":[3.5,4.7,3.9,3.7,4,3.1,4,3.9,3.9,3.3,3.8,3.4,4,3.3,3.1],"paint":[9.3,9.9,8.8,8.8,10,10,8.8,9,10,10.3,8.9,10.1,9,9.9,10]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.2,4.3,5.3,4.1,4.2,4.5,4.9,4.3,4.2,4.3,3.6,4.9,5.3,4.6,4.7,4.5,4.5,4.1,3.4,4.6,4.9,4.3],"script":[1.5,2.4,2.1,2.2,2.3,2.4,1.9,2.1,2.6,2.1,1.3,2.1,2.6,1.2,2.1,2.6,2.4,2.8,2.3,1.6,1.5,1.5,1.5,1.8,2.7],"paint":[2.8,2.7,2.3,1.2,1.8,2.7,2,2,1.8,2,2.8,1,0.7,2.2,1.9,1.8,1.2,1.8,2.1,2.5,1.4,1.1,2.2,1.1,1.5]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.3,105.9,110.5,104.9,104.6,107.6,107.4,106.1,105.7,103.4,107.9,104.4,105,106.2,106.7],"script":[17.7,18.1,20.6,17.4,18.1,19.4,19.8,17.3,18.2,17.8,17.4,17.8,18.8,19,18.4],"paint":[83.8,86.3,87.2,85.7,84.5,86.4,84.8,86.2,85.1,82.9,88.2,84.5,83.3,84.3,86.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.5,12.2,12.8,12.3,12.2,12.1,11.9,12,11.9,12.1,12.4,12.2,12,11.8,12.1],"script":[1.6,1.6,1.3,1.4,1.4,1.5,1.5,1.3,1.5,1.6,1.7,1.7,1.3,1.4,1.4],"paint":[10.3,10,10.7,10.2,9.8,9.8,10,10,9.7,10.1,10.3,9.8,9.7,9.9,9.9]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[398,395.6,394,393.7,395.6,394.4,396.2,398.2,395.2,393.6,394.6,397.3,397.3,398.1,395],"script":[169.9,169.8,170.2,169.1,169.8,168.4,170.4,171.5,171.1,168.8,168.5,172,170.2,171,168.8],"paint":[219.8,218.4,216.5,216.4,218,218.4,218.3,218.7,216.5,217.6,218.6,217.5,219.9,219.4,219]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.3,33.4,33.9,33.5,35.3,33.8,33.7,33.4,33.7,33.5,34.3,34.3,34,34,33.8],"script":[7.5,7.1,7.3,7.5,7.6,7.2,7.5,7.4,7.2,7.2,7.4,7.9,7.4,7.3,7.3],"paint":[26.8,25.4,25.7,25.1,26.8,25.7,25.2,25.1,25.6,25.5,25.9,25.6,25.7,25.8,25.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.8,18.1,18.1,17.6,19,17.5,16.8,18.4,18,18.9,17.9,17.6,17.9,18,17.6],"script":[15.6,16.4,15.8,15.8,16.8,15.2,15.2,16.3,15.7,16.8,15.9,15.7,15.7,16.1,15.6],"paint":[0.8,0.3,1.3,0.6,0.9,1.5,1.1,0.3,1.1,1.1,1.8,1,1.1,1.1,1.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1866731643676758]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.625495910644531]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.083898544311523]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.929896354675293]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.449259757995605]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[184.6]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.2]}},{"framework":"react-classes-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.6]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.8,27.5,29,29.1,28.9,28.8,27,29.3,27.2,29.4,29.1,29.1,29.1,27.2,26.8],"script":[6.5,6.1,6.6,6.9,6.6,6.6,5.9,6.6,6.2,6.9,6.7,6.8,6.7,6.2,5.8],"paint":[21.7,20.8,21.8,21.7,21.7,21.7,20.5,22.1,20.4,21.9,21.9,21.7,21.8,20.5,20.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[33.2,33.9,33.4,33.3,33.5,33.5,33.4,33.9,33.9,33.4,33.4,34.1,34.1,34,33.8],"script":[10.4,10.8,10.8,10.3,10.5,10.6,10.5,10.6,10.9,10.6,10.9,10.9,10.9,10.8,10.8],"paint":[22.2,22.5,22,22.5,22.5,22.3,22.3,22.7,22.4,22.2,21.9,22.6,22.6,22.7,22.4]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.3,14.6,15.4,13.9,15.9,15.8,14.3,15.2,14.5,15.2,16.1,14.4,14.7,14.5,14.7],"script":[4.2,3.8,4.2,3.9,4.3,3.7,3.7,3.8,3.8,4.3,4,4,3.7,3.9,4.2],"paint":[8.6,9.7,9.9,8.8,10.6,10.9,9.5,10,9.6,9,9.9,9.4,9.5,7.9,9.5]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.1,4.9,4.6,4.3,4.9,4.8,4.5,4.1,5.1,4.8,4.4,4.2,4.2,4.6,4,4.6,4.3,4.5,4.9,4,4.5,4.1,4.6,5.5,3.6],"script":[2.2,2.1,2,1.6,2.1,2.4,2.2,1.9,2.3,2.1,1.9,1.4,1.5,2.4,1.9,2.1,1.4,2.3,2.2,1.3,1.9,1.5,2.1,2.5,2],"paint":[1.1,1.6,2.4,2.6,2.6,1.4,2.2,1.3,1.7,2.5,1.8,2.7,1.8,1.4,1.5,1.7,2.3,1.2,2.4,1.3,2.4,2.5,1.6,2.9,1.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[103.9,105.6,103.9,103.2,103.9,100.7,103.6,106,103.8,106.8,101.6,106.9,107.2,102.7,110],"script":[17.2,19.2,17.6,18,17.6,16.9,17.5,18.5,17.6,19.1,17.3,19.5,17.7,17.3,20.4],"paint":[83.6,83.7,84.1,83.2,84.8,81.7,83.8,85.8,83.3,85.5,81.9,85.5,86.7,83.7,88]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.6,12.2,12.7,12.2,12.1,11.6,12,12.1,11.9,12.8,12.1,11.6,12,12],"script":[1.5,1.3,1.6,1.4,1.4,1.9,1.3,1.6,1.7,1.3,1.5,1.3,1.4,1.5,1.6],"paint":[9.7,9.5,10.2,10.5,10.1,9.8,9.7,10,9.8,10,10.4,9.7,9.6,10,9.8]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[392.2,387.8,412,411.6,389.4,391.8,391.3,389.7,390.2,388.8,389.8,389.5,389.5,390,389.2],"script":[166.4,164.7,187.1,186.4,164,166.5,164.4,165.8,166.3,164.5,164.5,165,166.1,165.4,163.8],"paint":[218,215.7,217.4,218,218,217.7,219.1,216.7,216.6,216.8,217.7,217,216,217,218]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.9,33.9,33.9,35,34.6,34.3,34.2,34.6,34.4,34,34.2,34.8,34.3,34.5],"script":[7.1,7,7.3,7.4,7.5,7.3,7.5,7.2,7.3,7.2,7.4,7.4,7.6,7.2,7.6],"paint":[25.6,25.9,25.7,25.6,26.6,26.5,25.8,26,26.4,26.3,25.6,25.9,26.3,26.2,26.1]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.8,18.2,18.7,18.8,19,17.5,19.2,16.8,17.5,18.4,18.1,18,19.6,17.1],"script":[15.1,15.2,15.8,17,16.9,17.1,15.3,17,15.2,15.6,16.1,16.1,15.9,17.7,14.8],"paint":[2,0.8,2.1,0.7,1.3,0.9,0.9,1.3,0.3,0.4,1.7,1.8,1.1,1.2,0.3]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1615581512451172]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.661070823669434]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.061215400695801]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.937605857849121]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.34535026550293]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[183]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50]}},{"framework":"react-compiler-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[202.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[28.6,28.9,26.8,29,29.1,26.7,28.9,29,27.3,26.8,27,26.9,29.2,26.9,28.8],"script":[6.5,6.8,5.9,6.5,6.9,5.8,6.6,6.7,6.2,6,5.8,6,6.7,6,6.6],"paint":[21.6,21.6,20.3,22,21.7,20.4,21.8,21.7,20.6,20.3,20.7,20.4,21.9,20.3,21.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[32.9,32.6,33.4,32.7,33.4,33.4,32.8,33.9,34.1,33.6,32.8,33.9,32.8,33.3,33],"script":[10.2,10.2,10.5,10.5,10.5,10.7,10.4,10.8,10.9,10.6,10.4,10.9,10.3,10.5,10.7],"paint":[22.1,21.8,22.3,21.6,22.4,22.1,21.9,22.5,22.7,22.4,21.9,22.4,21.9,22.3,21.7]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,15.3,15.2,14.6,14.7,14.4,14.9,15.2,14.9,15,17,15.3,15.1,15.1,15.3],"script":[4.2,4.6,4.6,4.4,3.8,4.5,3.8,4.4,4.6,3.5,4.8,4.1,4.5,4,5],"paint":[10.2,8.4,9.4,7.9,9.6,8.7,10.8,9.9,9.6,9.8,10.7,9.5,8.9,10,9.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.3,4.5,4.8,4.9,4.6,4.4,4,6,4.6,4.5,4.3,4.6,4.3,5.1,4.6,4.1,4.7,4.4,4.3,4,4.5,4.5,4.8,4.3,4.5],"script":[2.2,2.1,2.1,2,1.7,2.1,1.5,2.8,2.2,2.3,1.8,1.5,2,2.3,2.2,2,2.1,1.4,1.5,1.1,2.3,2.4,1.5,2.4,2],"paint":[2,1.2,1.9,2.3,1.6,1.1,1.5,2.3,2.3,2.2,1.9,1.8,2,2.6,2.2,1.4,2.3,2.9,2.7,2.9,1.7,1.3,1.3,1.1,2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[104.8,102.9,105.8,105.7,106.3,104.3,105.3,105.7,105.6,105.8,106.6,104.8,104.2,102.9,105.1],"script":[18.5,17.5,19.4,18.8,17.6,17.6,19.9,19.7,17.9,18.9,18,17.3,17.1,17.5,18.2],"paint":[84.7,83,85.1,83.9,85.8,84.1,82.7,83.3,85.3,84.3,84.8,86.1,85.7,82.9,85.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,12.8,11.6,12.1,11.9,12.1,12.8,11.7,12,11.7,11.6,12.2,11.9,12.1],"script":[1.2,1.3,1.5,1.3,1.3,1.5,1.5,1.5,1.3,1.3,1.3,1.2,1.4,1.5,1.7],"paint":[9.9,10.2,10.4,9.7,10.2,9.9,10.2,10.1,9.7,9.8,9.7,9.6,10,9.6,9.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[410.7,390.6,388.7,393,409.5,386.6,390.4,389.5,389.7,409.8,388.1,391.6,412.4,431.6,388.7],"script":[187.7,165.4,164.1,163.8,184.3,160.8,163.5,164.2,164,186.3,164,166,185,205.1,163.7],"paint":[215.8,217.5,217.5,221.7,218,217.9,219.2,218,218.2,216.4,216.7,218.3,219.8,218.8,217.3]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.7,34.4,34.1,34.2,34,33.6,34.1,33.8,33.6,33.7,33.7,33.7,33.7,34.1],"script":[7,6.9,7,7,7.3,7.1,6.9,7,6.9,6.7,6.7,6.9,7.1,7.1,7],"paint":[25.6,25.8,26.4,26.2,25.9,25.9,25.7,26.2,26,26,26.1,25.9,25.7,25.7,26.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,17.9,16.7,18,18.8,18,17.5,18.3,17.3,18.8,18,18.3,18,17.4],"script":[15.8,15.9,15.9,14.7,16.5,16.6,15.8,15.3,16.4,14.8,16.5,15.7,16.1,15.6,15.5],"paint":[0.9,1.9,1.5,0.4,0.9,1.3,0.3,0.8,0.5,1.5,1.4,2.1,0.3,1.4,1.1]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1562519073486328]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.455169677734375]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.906815528869629]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8477325439453125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.578155517578125]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.2]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"01_run1k","values":{"total":[31.9,37.5,32,41.2,38.6,33.1,36.6,34.4,31.6,40.8,35.5,36,37.9,34.9,37.4],"script":[7.8,7.6,7.7,7.6,7.5,7.6,7.8,7.5,7.3,7.4,7.7,7.5,7.5,7.3,7.8],"paint":[21.8,21.5,21.7,21.8,21.6,22.4,21.9,21.7,21.6,21.2,21.9,21.5,21.5,22.4,21.8]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"02_replace1k","values":{"total":[36.1,40.7,34.4,34.7,38,39.1,36.9,37.4,35.1,36.5,38.6,38.3,34.3,38.2,36.4],"script":[11.6,11.4,11.7,11.4,11.2,11,11.5,11.7,11.4,11.4,11.4,11.4,11.6,11.5,11.6],"paint":[22.4,22.6,22,22.7,22,22.8,22.4,22.7,23.1,22.5,22.1,22.4,22.2,23,22.5]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.4,33.5,34.3,34.8,18.7,34.7,34.8,19,34.9,33.3,35.5,34.1,34.2,33.4,33.9],"script":[6,5.2,6,5.2,5.9,5.8,6.3,5.9,6,5,5.8,6.3,5.4,5.5,5.4],"paint":[12.6,12.2,11.7,12.1,11.4,13.7,12.1,12.5,12.5,13,12.1,12.7,13.1,12.6,13.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"04_select1k","values":{"total":[7.3,7.5,11.6,12.9,12.1,8.4,10,13.1,9.5,11.4,7.4,13.3,7.4,6.5,9.7,11,12.2,11.9,12.4,14.2,7.6,9.5,13.7,8.1,8],"script":[3.8,2.7,4.5,3.1,3.4,3.2,2.7,3.5,3.2,3.1,2.7,3.7,2.8,3.4,3.8,2.4,3.2,2.3,3.6,3.5,3,4,4.2,3.9,3.5],"paint":[2.5,1.8,2.8,3.5,3.9,2.5,2.7,2.5,2.1,3.6,2.4,4.2,3.6,1.9,2.2,3.1,3.3,4.6,3.9,3.6,3.7,3,3.2,2.6,3.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"05_swap1k","values":{"total":[124.3,122.4,106,121.4,121.7,126.7,110.5,105.6,123.4,110,106,108.6,122,109.6,104.9],"script":[18.8,19.6,18.8,19.1,18.7,21.1,21.2,20.4,19.1,19.7,19,19.5,19.8,19.2,19.1],"paint":[86.6,86.8,84.7,85.2,84.2,89,86.9,83.9,86.6,85.9,84.9,85.9,85,88.9,83.7]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14,13.7,16.7,14.1,15.2,15.6,13.9,14.1,13.7,14,14.6,15.2,13.7,13.6,15.1],"script":[1.8,1.8,2.3,2,1.8,1.9,1.8,1.8,1.6,1.8,1.5,1.7,2,1.5,1.6],"paint":[10.7,10.6,10.8,11,11,10.7,10.8,11,10.9,10.7,10.5,11.5,10.9,10.8,11]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"07_create10k","values":{"total":[393.9,392.6,390.1,393.3,391.4,393.3,392.7,393.5,392.7,385.3,389.4,390,394.5,387.4,393],"script":[170.5,166.6,165.3,168,164.9,167.5,165.2,166.2,165.4,162.5,166.5,162.1,168,165.3,167.6],"paint":[217.6,219.5,218.2,217.8,218.2,218.6,217.8,216.5,218.9,215.6,216.2,216.8,218,218.1,217]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.5,50.6,35.3,35.6,41.4,35.2,35.2,40.5,39.6,50.5,38.7,34.4,35,39.1,35.6],"script":[7.3,7.5,7.3,7.3,7.4,7.5,7,7.3,7.3,7.2,7.2,7.3,7.3,7.6,7.5],"paint":[27.2,26.3,27.4,27.8,27.1,27.3,27.7,26.9,26.3,26.4,27,26.6,27.3,26.5,27.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[34.2,16.4,18.2,16.6,17.1,18.6,18.5,35.7,34.6,36,17.3,16.1,16.5,17.1,16.9],"script":[12.4,12.3,14.4,12.5,12.5,13.9,13.4,14.2,12.1,13.9,14.2,12.4,12.2,13.2,13.2],"paint":[2.7,2.3,2.6,2.3,3.3,3.2,2.2,2.5,1.2,2.9,2.6,1.5,2.8,1.9,2.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1486320495605469]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.531782150268555]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.999907493591309]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729299545288086]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.673840522766113]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.4]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.6]}},{"framework":"react-hooks-use-transition-v19.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.4]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"01_run1k","values":{"total":[31.4,30.3,29.9,30,29.8,29.7,29.9,30.8,30.9,30.5,32.1,31.3,31.6,31.7,32.2],"script":[8.6,8.1,7.9,8.2,8,8,8.1,8.4,8.6,8.6,9,8.5,8.7,8.9,8.7],"paint":[22.3,21.7,21.4,21.2,21.2,21.1,21.2,21.8,21.7,21.4,22.5,22.2,22.3,22.3,22.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"02_replace1k","values":{"total":[34.3,35,35.4,34.2,34.4,34.8,35.1,34.9,35.1,34.7,34.7,33.9,34.9,34.8,34.9],"script":[11.7,12.2,12.1,11.8,11.6,12.1,12.1,11.8,12,12,12.3,11.7,11.8,12.2,11.8],"paint":[22,22.2,22.6,21.8,22.2,22.1,22.4,22.5,22.5,22.1,21.9,21.6,22.4,22.1,22.6]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.3,17.2,19.4,17.4,17,16.8,16,17.3,16.5,16.7,16.5,17.4,17.6,17.1,17.6],"script":[5.8,5.9,6.7,5.1,6,5.8,5.5,5.3,5.5,5.9,5.5,5.7,5.8,5.4,5.2],"paint":[9.8,8.7,10.5,10.8,8.8,9.5,8.9,9.7,9,8.7,9.1,9.3,9.5,9.3,11]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.1,4.4,4.8,4.5,4.3,4.7,4.2,4.3,4.6,4.1,3.7,4.4,4.5,4.2,4.5,5.4,4.3,4,4.2,4.5,5.8,5.7,4,5.8,4.7],"script":[2.2,1.8,2.4,1.9,2,2.5,1.8,2.4,2.1,1.9,1.5,1.6,2.2,2,1.8,2.3,2.1,2.4,2.5,1.9,1.5,2.9,1.6,2.8,2.1],"paint":[1.2,2.4,1.7,2.5,1.5,1.8,0.8,1.2,1.5,1.3,1.1,2.7,2.1,2.1,1.6,1.2,1.6,1.1,1.3,2.5,2.6,2,1.9,1.6,1.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"05_swap1k","values":{"total":[105.6,103.5,105.3,102.9,103.1,105,106.3,108.2,104.9,107.1,104.7,110.1,106.5,104.7,104.7],"script":[18.4,17.6,17.1,18.5,17.1,18.7,18.1,18.2,18.8,19.7,18.4,19,18.4,18.3,19],"paint":[85.1,84.2,84.8,82.5,82.9,83.6,85,88.1,82.7,84.8,83.8,88.6,85.6,82.8,82.8]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,12.5,12.2,12.3,12.2,12.2,12.1,12.4,12.3,12.1,12.1,11.7,12.1,12.5,11.9],"script":[1.6,1.7,1.5,1.3,1.7,1.4,1.8,1.8,1.6,1.6,1.5,1.6,1.6,1.7,1.7],"paint":[9.3,10.2,10.2,10,9.5,10.2,9.5,9.8,10.1,10,10.1,9.7,9.8,10.1,9.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"07_create10k","values":{"total":[405,403.3,403.5,407.4,405.4,406.7,409.5,404.1,403.2,409.1,402.5,404.8,402.9,403,402.3],"script":[178.3,176.6,176.2,176.8,176.8,177.3,182,177.1,176.4,181.1,174.7,177.9,176.4,175.9,177.8],"paint":[218.8,218.6,219.6,222.7,220.3,221.4,219.6,218.8,219.1,219.6,220,218.9,218.9,219,216.5]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[37.5,37.1,36.5,38.1,36.5,36.8,37,37.2,37,37.3,37.5,37,36.8,37.6,36.9],"script":[9.3,9.1,9,9,9.1,9.1,9.3,9.1,9.2,9.2,9.2,9,9.1,9.6,9.2],"paint":[27.2,26.9,26.6,27.9,26.5,26.8,26.7,27.1,26.8,27.1,27.2,26.9,26.7,27,26.7]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,18.2,19.4,18.2,19.8,21.2,18,19.1,19,18.8,18.3,19.7,19,18.7,18.1],"script":[15.8,16.8,16.8,16.3,17.5,19.3,15.5,16.6,16.8,16.2,16.6,17.2,16.6,17.2,15.8],"paint":[0.5,0.3,2.3,1.2,1.5,0.3,1.4,1.4,1,1.5,0.5,0.9,2.1,0.7,1.1]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.176253318786621]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.790728569030762]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.185572624206543]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8829221725463867]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.4531364440918]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[188.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[51.3]}},{"framework":"react-kr-observable-v19.0.0 + 3.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[209.9]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[30.4,30.5,30.8,30.7,30.3,30.6,31.4,30.3,31.2,30.8,30.3,31.1,30,30.5,30.2],"script":[9.1,9,9.2,9.3,9.2,8.7,9.3,8.9,9.4,9.4,8.9,9.2,8.9,8.8,8.6],"paint":[20.9,21.1,21.2,21,20.7,21.4,21.8,21,21.4,21,21,21.5,20.8,21.3,21.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.8,36.2,36.9,35.6,36.1,35.8,35.7,35.9,35.9,35.3,36.3,36.1,35.6,35.4],"script":[13.3,13.3,12.9,13,13,13.2,12.6,12.4,13.2,12.9,12.6,12.6,12.7,13,12.7],"paint":[22.2,22.1,22.9,23.5,22.2,22.5,22.7,22.8,22.4,22.5,22.3,23.3,23,22.1,22.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.5,15,15,14.9,14.6,14.7,15.8,15.4,15.8,15.2,17.3,15.3,16.1,16.1,15.3],"script":[5.4,4.7,4.5,4.3,3.7,4.5,4.6,3.9,4.4,4.5,4.8,3.4,4,4.3,4.3],"paint":[10,8.5,9.5,9.5,9.1,8.7,9.9,10.2,9.7,8.8,11.6,10.2,11,11.1,9.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.6,5.8,5.9,5.9,5.9,5.4,5.3,5.6,5.7,5,5.9,5.8,5,5.9,6,6.2,5.8,6.3,6.1,5.7,6.2,5.4,5.2,5.5,6.3],"script":[3.3,2.9,2.8,3.4,2.7,2.7,2.8,3.3,3.2,2.9,2.9,3.2,3.3,3,3,3.6,2.7,3.7,3.5,3.4,3.3,3,3,3.3,3.8],"paint":[1.6,2,2,1.6,1,1.7,1.7,1.2,2.1,1.5,2.8,2.4,1.6,2,1.8,1.8,2.9,2.5,1.6,1,2.2,1.6,1.6,1.3,1.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[104.2,105.7,103.4,102.9,110.9,104.3,106.4,104.7,104.4,104.6,103.2,104.7,105.8,104.7,105.7],"script":[17.4,20.4,20.2,17.9,18.9,18.6,19.7,18.3,18.2,19,17.9,20.8,18.7,19,18.3],"paint":[85,83.7,81.9,83.8,90.2,83.5,84.6,84.4,84.4,83.5,84.2,82.2,85.1,83.8,84.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.3,12.2,12.2,12.1,12.1,12.1,12.1,11.7,12.2,12.2,12.1,12.2,12.3,12.2],"script":[1.2,1.5,1.2,1.2,1.2,1.3,1.3,1.4,1.3,1.5,1.3,1.1,1.1,1.1,1.3],"paint":[10.4,10.1,10.1,10.3,9.9,9.8,10.2,10,10.1,10.3,9.9,10,10.3,10.6,10.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[416.8,422.8,417,416.8,415.7,410.6,416.9,421.6,415.3,413.2,415.8,416.5,416,421.6,412.6],"script":[190.2,196.7,190.2,192.6,189.1,186,189.6,190.4,189.5,188.6,189.2,189.6,190.5,189.1,190.2],"paint":[219.3,218.8,219.5,217.2,219.2,217.3,219.8,223.6,218.8,217.2,219.4,219.8,218.3,225.4,215.3]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.6,35.8,36.3,35.5,35.9,36,36.5,36.2,36.5,37.6,36.5,36.1,36.5,36,36.3],"script":[10,9.9,10,10,9.9,9.7,10,10,10.3,10.3,9.8,10,10.1,9.9,10],"paint":[25.8,25,25.5,24.8,25.2,25.5,25.6,25.4,25.4,26.6,25.8,25.3,25.5,25.3,25.5]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,11.8,12.6,12.1,11.1,12.4,11.1,11.8,11.8,12,12,12,11.5,12,11.7],"script":[9.9,10.5,11.1,10.9,10.4,11.5,9.5,10.2,10.3,10.6,11,10.7,10.2,10.4,10.1],"paint":[1.2,1.2,1.3,0.3,0.6,0.3,1.5,0.9,1.1,1.3,0.9,0.6,1.1,1.4,1.6]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.385213851928711]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.1598663330078125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.76962947845459]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7662296295166016]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.6622257232666]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"01_run1k","values":{"total":[30.9,29,29.2,29.8,29.4,29.5,29.4,29.8,29.8,28.9,29.2,31.2,29.7,29.4,29.3],"script":[9,7.9,8,8.1,8.1,8.1,8.3,8.4,8.3,8,7.9,8.7,8.4,8.3,8],"paint":[21.4,20.6,20.6,21.1,20.8,20.7,20.5,20.8,20.9,20.4,20.8,22,20.7,20.6,20.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"02_replace1k","values":{"total":[37,37.2,36.8,37.2,36.9,36.5,36.3,36.7,36.7,36.9,36.7,35.3,35.3,35.5,36.8],"script":[13,13.4,13.2,13,13.2,12.6,13,13,13.3,13.1,13.2,12.8,12.7,12.6,13],"paint":[23.5,23.2,23,23.6,23.1,23.4,22.7,23.1,22.9,23.2,23,22,22,22.4,23.2]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.7,16.7,16.6,17.2,17.2,16.7,16.5,18,17.3,17.2,16.7,17,16.3,16.7,18.3],"script":[5.5,5.2,5,5.5,5.5,5.2,5.2,6.6,5.7,5.7,5.4,5.3,5.3,5.4,5.9],"paint":[11.4,9.7,9.4,9.3,9.7,8.8,9.1,9.4,9.3,9.6,9.3,9.9,8.8,8.9,10.4]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.9,4.6,4.6,4.9,4.9,5.6,5.4,5.3,5.4,4.8,5.2,5.6,5.7,5,4.8,4.8,5.2,5.8,5.7,5.9,5.1,5.1,5.7,4.6],"script":[2.1,3.3,2.7,2.5,2.5,2.6,3.2,3,2.6,2.9,2.1,2.9,3.2,3.2,2.6,2.8,2.4,2.9,3.4,3.1,2.2,2.5,3,2.8,2.7],"paint":[2.2,1.7,0.8,1.5,2.3,2.1,1.5,2.2,1.7,1.6,2.6,1.4,1.5,1.5,1.4,1.2,2.3,2.1,2.3,1.7,2.2,2,1.2,2.7,1.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"05_swap1k","values":{"total":[105.8,106.3,108.2,105.4,106.4,109.1,109,110.4,104.3,109.5,106.3,110.2,109,111.9,106.4],"script":[20.8,21.9,23.2,20.7,21.6,22.8,22.9,24.1,22.2,22.4,22.9,24.2,23.6,23.8,21],"paint":[83.3,81.6,82.1,81.8,81.6,82.9,83.6,84,80.4,85.4,81.4,84.2,81.9,86.4,82.9]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12.6,13.2,12.8,11.9,12.1,12.4,12.3,12.4,12.1,12.8,12.2,12.2,12.3,12.1],"script":[1.6,1.6,1.8,1.9,1.4,1.6,1.8,1.4,1.5,1.7,1.7,1.6,1.7,1.7,1.6],"paint":[9.9,10.2,10.7,10.2,9.8,9.8,9.8,10.2,10.4,9.8,10.5,9.8,10,9.8,10]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"07_create10k","values":{"total":[411.6,434.3,412.2,416.2,410.6,412.3,423.6,421.6,428.1,410.9,420,409.9,429.2,421.6,411.4],"script":[184.3,207.8,186.4,187.9,185.5,184.5,196.1,194.3,202.9,187.5,193.5,184.6,201.5,195.9,185.1],"paint":[219.6,218.7,218.2,221,217.8,219.8,220,219.8,217.6,215.7,218.8,217.7,220.2,218.6,219.1]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.9,35.8,35.8,35.7,35.8,36.6,36.1,35.9,36.1,36.7,36.3,36.2,36.3,35.1],"script":[9.5,9.5,9.6,9.7,9.8,9.4,9.7,9.7,9.5,9.8,10,9.7,9.7,9.7,9.7],"paint":[25.4,25.5,25.3,25.2,25.1,25.4,25.9,25.4,25.4,25.4,25.7,25.7,25.6,25.6,24.5]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.9,17.9,18.6,18,18.5,19.7,17.1,18.1,17.7,18.3,17.5,18.9,19.6,18.3,17.6],"script":[15.8,15.6,16.6,16.4,16.5,17.4,15.3,15.9,15.2,16.1,15.1,16.6,17.3,16.4,15.7],"paint":[1.5,1.4,1,0.3,0.8,1,1.2,1.5,1.8,0.4,1.3,1.6,0.6,1.7,1.7]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5511512756347656]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.2431745529174805]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723941802978516]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.329962730407715]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.60988235473633]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[242.8]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64]}},{"framework":"react-mobX-v19.0.0 + 6.13.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[266]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"01_run1k","values":{"total":[29.8,27.7,30,28.3,29.5,29.3,28.2,28,28.2,29.6,28.2,27.7,28.1,29.3,29.4],"script":[7.9,6.9,7.9,7.4,7.7,7.6,7.1,7.2,7.4,7.7,7.1,7,7.3,7.6,7.7],"paint":[21.4,20.3,21.6,20.4,21.3,21.2,20.5,20.2,20.3,21.5,20.6,20.2,20.2,21.2,21.1]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"02_replace1k","values":{"total":[224.1,231.7,225.4,224,213.7,230.3,224.7,213,224,226.4,227.3,215.5,229.1,214.4,227.5],"script":[204.5,212.1,204.2,204.4,192.7,210.5,204.7,193,204.3,206.4,207.2,194.8,209.3,194.1,206.2],"paint":[19.1,19.2,20.8,19.2,20.6,19.4,19.6,19.5,19.2,19.4,19.7,20.3,19.4,19.8,20.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32,31.5,32.7,31.9,31.7,31.8,32.6,31.5,33.4,32.8,32.6,32,33.1,32.2,31.9],"script":[20,19.1,20.4,20.3,19.4,19.6,20,19.5,21,20.1,20,20,20.5,20.2,19.3],"paint":[9.9,10.6,10.2,10.1,10.9,10.5,10.6,9.6,10,10.5,10.3,10.4,10.5,9.5,11.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"04_select1k","values":{"total":[20.3,21.4,21.4,20.5,21.1,21.4,19.1,20.8,21.8,20.7,20.9,21.4,19.5,21.2,22,19.7,21.2,18.9,20.3,20.9,21.3,20.7,21.1,20.8,21.2],"script":[17.1,18.3,17.9,17.9,17.6,18,16.7,18.1,18.3,17.7,17.5,18.2,16.8,17.9,17.7,16.8,17.9,16.7,17.2,18.2,18,17.2,18,17.9,17.2],"paint":[2.1,1.2,1.4,1.5,1.9,1.6,1.4,1.5,3,1.8,2.3,2.5,1.4,2.2,2.9,1.2,1.8,1,1.2,2.6,3,2,2,2.3,2.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"05_swap1k","values":{"total":[122,122.1,122.7,124.5,125.1,122.7,128.6,124,120.1,122.7,123.2,123.6,124,124.6,128],"script":[37.9,36.3,36.8,37.1,37.3,36.8,37.5,36.6,34.1,37.2,36.4,37.8,37.1,38.6,39.4],"paint":[81.7,83,83.8,84.6,85.4,83.9,88,84.4,83.2,83.1,84.4,83.8,84.7,83.3,86.5]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,19.7,19.2,19.3,18.9,18.8,18.8,18.9,18.8,18.7,19,18.7,18.8,19.2,18.8],"script":[7.9,7.9,8.1,7.8,8,7.9,7.6,7.9,7.6,7.6,8.2,7.9,7.8,7.9,7.8],"paint":[9.9,10.5,9.6,10.7,9.6,9.9,10.2,9.5,9.6,10.2,10,9.6,9.9,10.1,10]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"07_create10k","values":{"total":[414.9,401.6,399.8,400.1,413.9,405,411.1,403.9,410.7,399.8,403.5,416.3,407.7,415.7,404.2],"script":[190.9,174.8,176.4,177.6,190.1,179,185.4,179.4,184.3,176.6,178.8,188.9,181.2,190.3,179.4],"paint":[216.8,219.4,216.2,215.1,216.6,218.3,218,216.6,218.8,216.1,217.3,219.7,218.6,217.8,217.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.4,39.6,39.8,39.6,39.9,39.3,39.5,39.4,39,39.9,39.8,39.5,39.1,39.3,39.4],"script":[12.3,12.2,12.3,12.9,12.4,12.2,12.3,12.3,12,12.4,12.3,12.3,12.4,12.4,12.1],"paint":[26.2,26.5,26.6,25.8,26.5,26.1,26.3,26.1,26,26.6,26.6,26.3,25.8,26,26.3]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.6,20.4,23.1,19.6,20.2,21,19.7,19.6,23.2,20.1,20.5,20.1,18.9,20,20.5],"script":[17.3,18,20.4,17.2,18.1,18.4,17.8,17.2,20.8,18,18.1,17.5,17.5,17.7,18.4],"paint":[2.1,1.2,1,2.1,1.1,2.4,1.5,1.7,1.1,0.7,1.6,1.9,0.3,1.4,1.9]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7072792053222656]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.071669578552246]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.640799522399902]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.701038360595703]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.479002952575684]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[297.7]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[78.6]}},{"framework":"react-native-onyx-v2.0.108-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[340.2]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.7,31.9,31.8,32.2,32.1,33,32.4,32.7,32.5,32.7,32.7,32.1,31.8,32,32.3],"script":[10.7,10,10,10,10,11.1,10.7,10.8,10.2,11,10.9,10.1,9.9,10.3,10.7],"paint":[21.5,21.4,21.2,21.6,21.5,21.4,21.1,21.4,21.7,21.1,21.3,21.4,21.3,21.1,21.1]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.5,39.8,39.1,39.5,39.7,39.6,39.4,40,39.8,39.4,39.8,39.5,39.7,39.3,38.5],"script":[15.7,15.6,15.8,15.7,15.8,16,15.8,16.3,15.9,15.7,15.9,15.7,16,15.8,15.3],"paint":[23.3,23.5,22.7,23.3,23.3,23,23,23.1,23.3,23.2,23.3,23.2,23.1,23,22.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.6,20,20.4,20.7,20.1,19.6,19.9,19.2,20.2,19.9,20.6,19,20.2,20.6,19.6],"script":[9,7.5,7.9,8.8,7.7,8.1,7.9,7.1,8.5,8.4,8.4,6.9,8.1,8.3,8],"paint":[9.2,10.4,10.3,10,10.7,9.3,10.7,10.6,9.4,8.9,10.5,9.1,9.7,9.5,10.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.3,6.3,5.8,6.5,6.1,5.9,6.1,7.1,6.6,5.8,6.4,5.7,5.9,6.1,6,5.7,5.6,5.7,5.6,5.7,6,6.1,6,5.5,5.5],"script":[3.1,3.8,3.6,3.9,3.3,3.2,3.4,4.4,3.7,3.6,3.4,3.7,3.2,4.1,3.7,3.6,3.4,3,3.5,3.1,3.6,3.9,4.1,2.9,3.1],"paint":[1,2.3,1.4,1.7,1.4,2.6,2.6,2.2,2.3,1.3,2.9,1.1,2.6,1.8,2.2,1.5,1.6,1.9,1.8,2.5,0.5,1.4,1.1,1.7,1.5]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[111.6,107.7,107.8,110.7,109.9,111,108.9,112.9,110.4,109.3,110,110.2,108.4,109.9,106],"script":[23.2,20.4,21.1,21.1,21.9,21,22.4,22.3,22.7,21.9,21.7,21.8,21,22.8,20.3],"paint":[85.5,84.9,84.1,86.2,85.6,86.8,84.5,88.2,85.2,85.2,85.8,86.2,85.9,84.4,83.7]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.3,25,24.5,24.9,24.8,24.2,23.9,24.1,24.7,24.4,25,23.9,24.5,24.2],"script":[12.6,12.2,13,12.3,12.8,12.3,12.2,11.8,12.1,12.7,12.6,12.8,12.5,12.4,12.2],"paint":[10.8,11,11.1,11.1,11,11.4,10.9,10.9,11.2,10.5,10.7,11,10.2,10.9,10.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[459.4,457,448.9,449.8,453,452.4,456.7,445.3,447.5,454.7,455.1,455.1,455.1,455.4,452.9],"script":[223.4,226.8,222.6,221.8,225.5,222.8,224.9,218.4,219.1,226.1,228.7,226.4,226.7,222.8,222.9],"paint":[227.9,222.5,219,220.3,220,222.2,224.1,219.5,221,221.3,219,221.4,220.9,224.3,222.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.6,39,38,37.9,38.1,39.6,37.8,38.4,38.2,37.6,37.5,37.8,38.6,38.2],"script":[11.2,10.9,11.9,11,11.2,10.8,11.7,10.9,11.2,11.6,11,11,10.9,11.8,11],"paint":[26.7,26.7,26.1,26.1,25.9,26.3,26.9,26,26.2,25.6,25.6,25.5,25.9,25.9,26.3]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.9,22.2,20.9,20.8,21.1,21.8,18.9,20.8,21.4,21.9,21.7,21.3,21,20.2,20],"script":[18.6,20.1,18.7,18.5,19.2,19.7,16.7,18.4,19.2,19.8,19.3,18.6,18.3,18.4,18.1],"paint":[1.1,1,1.9,1.7,1,0.4,1.9,0.3,0.8,1,1.4,2.4,1.8,0.6,0.6]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3014955520629883]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.64023494720459]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.327454566955566]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1526832580566406]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.58246803283691]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[193.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[52.9]}},{"framework":"react-redux-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[31.4,29.9,29.2,28.7,28.9,28.5,28.5,29.5,29.2,28.6,28.8,28.5,28.9,28.6,29.6],"script":[8.5,8.1,8,7.6,7.8,7.4,7.6,7.9,8,7.5,7.6,7.6,7.7,7.6,7.7],"paint":[22.3,21.3,20.7,20.6,20.5,20.6,20.4,21.1,20.6,20.5,20.7,20.4,20.7,20.4,21.3]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[36.4,35.9,35.9,35.8,35.8,36,35.9,36.1,36,36.5,36,36,36.1,34.9,35.4],"script":[13.1,13.2,13.3,13,12.9,13.1,13,12.8,13.1,13.1,12.9,12.9,13,12.4,12.9],"paint":[22.7,22,22,22.3,22.3,22.2,22.3,22.8,22.3,22.8,22.5,22.5,22.6,21.9,21.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.9,18.5,18.6,20.2,19.2,19.4,18,19.6,18.6,19,20,19.4,19.1,19.4,18.6],"script":[7.5,7.3,7.2,7.9,7.1,7.5,6.4,7.7,7,7.7,7.8,7.5,7.6,7.6,7],"paint":[10.9,9.4,9.3,11.6,10.6,9.5,9,9.5,9.7,9.5,10.6,9.6,9.2,9.9,9.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.5,6.3,5.2,5.3,5.1,6.3,5.2,4.6,5.5,5,5.8,5,4.6,5.3,5.2,5,5.1,4.6,5,5.8,5.6,5.9,5.2,5.3,6],"script":[3.1,3.6,2.7,3.2,3,3.8,2.6,2.7,3.1,3.1,3.3,2.7,2.6,2.9,2.6,2.7,2.8,2.5,2.2,3.3,3.2,3.2,2.3,3,2.9],"paint":[2.2,1.8,1.6,0.4,2,1.5,0.6,1.2,2.2,1.2,1.7,1.4,1,1.7,2.3,0.9,1.8,1.1,2.2,1.7,1.6,1.9,2.3,1.3,2.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.2,106.4,107.4,110.7,106.4,104,111.5,106.6,104.3,108.6,105,106.4,108.4,106,106.8],"script":[21.2,21.5,20.9,21.9,21.6,20.1,19.8,20.5,19.8,21.1,18.4,21,21.1,21,21.4],"paint":[83.4,82.2,85,86.4,81.8,81.7,89.2,83.7,81.8,84.5,83.6,83,85.3,82.9,82.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.4,12.7,12.8,12.3,12.8,12.6,13.5,13.3,12.8,13.1,13.5,12.9,13.1],"script":[2.1,2.1,2.3,2,2.3,1.9,1.9,2.2,2,2.3,2.1,2.5,2.2,1.9,2],"paint":[10.2,10.1,10.2,9.9,9.9,9.8,10.1,10,10.8,10.4,10,9.9,10.6,10.1,10.5]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[404.2,403.2,406,402,401.1,405.1,404,404.6,407.2,406.7,402.6,403.5,404.4,402.8,402.9],"script":[177.2,179.9,179.4,179.5,176.9,180.2,180.1,181.5,181.4,180.3,178.1,180.4,178.4,178.9,176.8],"paint":[219.7,215.9,219,215.4,216.6,217.6,216.5,215.8,218.3,219,216.9,215.7,218.9,216.6,218.8]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.9,35.3,34.4,35.1,34.6,34.5,35.3,35.3,36.9,35.4,35.5,34.9,35.3,34.3,35.5],"script":[8.8,8.9,8.9,8.7,8.8,8.9,8.8,8.8,9.3,9,8.8,8.9,8.8,8.4,8.9],"paint":[26.1,25.5,24.5,25.4,24.9,24.7,25.5,25.5,26.6,25.5,25.8,25.1,25.6,25,25.7]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.6,17.8,17.7,18.5,19.2,18.7,19.5,18.5,18.6,18.1,18.5,18.2,18.4,18.6,18.2],"script":[16.7,15.7,16.2,16.6,16.8,16.7,17.5,16,16.5,16.6,16.6,16.1,16.2,16.5,15.9],"paint":[0.3,0.7,1.2,0.3,1,1.2,1.2,0.9,1.8,0.3,0.3,0.3,1.1,1.9,1.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.221175193786621]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.987057685852051]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.436522483825684]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9729070663452148]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.40648651123047]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.9]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.6]}},{"framework":"react-redux-hooks-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"01_run1k","values":{"total":[32.6,31.9,32.4,31.2,31.2,31,30.4,31.1,30.3,30.6,30.1,30.6,30.9,31,30.9],"script":[10.2,9.7,10,9.7,9.6,9.3,9.3,9.4,8.9,9.2,8.9,9,9.4,9.6,9.3],"paint":[21.8,21.6,21.8,21,21,21.2,20.5,21.1,20.8,20.9,20.7,21.1,20.9,20.9,21]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.2,36,36,36.4,36.2,36.5,36,36.1,36.2,36.2,36.1,36,36.2],"script":[12.8,13.2,13.3,13.1,13.3,13.5,13.6,13.6,13.2,13.2,13.4,13.3,13.3,13.3,13.2],"paint":[22.1,22.4,22.4,22.4,22.1,22.3,22.1,22.3,22.2,22.3,22.2,22.2,22.2,22.2,22.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.7,25.2,25.2,25.7,25.5,27,25.9,24.3,27,25.1,25.4,26.9,25.3,24.1,23.9],"script":[12.9,13.6,13.2,14,13.4,15.2,13.4,12.7,14.3,12.4,13.1,13.7,13.1,11.9,11.9],"paint":[10.7,10.2,10.7,9,10,9.1,10.7,9.3,10.4,10.6,11.2,10.9,9.6,9.9,8.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.1,6,5.4,6.2,6.6,5.3,5.5,5.9,5.7,6.2,5.4,5.4,5.7,5.6,6.3,5.5,4.8,5.3,5.3,5.4,5.6,6.4,6.1,6.9,6.4],"script":[4,3.7,2.7,3.6,3.9,3.1,3,3.9,3,3.8,3,2.6,3.4,3.1,4.2,3.4,3.1,3.6,3.2,3.4,2.9,3.3,3.7,3.4,3.6],"paint":[1.5,1.7,2.5,0.8,2.5,1.1,1.4,1.1,1.7,2.3,0.5,2.2,2.2,2.3,1.9,1.9,0.8,0.8,1.6,1.1,2.4,2.1,1.8,2.9,1.8]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"05_swap1k","values":{"total":[110,111.3,111.4,108.1,107.7,109.8,110.3,108.4,110,112.1,110.3,111.9,113.1,111.8,108.7],"script":[22.7,23,23.3,23.3,22.1,23.5,23.6,23,24.1,23.4,25.5,24.3,24,22.9,22.8],"paint":[83.9,85.7,85.1,82.7,82.8,83.4,84.3,82.9,84.2,87.4,83,85.9,87,85.7,83.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.6,15.6,14.7,14.8,15.3,14.7,15.7,15.6,14.9,14.6,14.3,14.6,15.8,14,14.7],"script":[3.8,4.4,3.8,3.9,4,3.8,4,4.2,3.7,3.9,3.5,4,3.7,3.6,3.7],"paint":[10.1,9.9,10.4,9.9,10.7,10.3,11,10.7,10.4,9.7,10.1,10.3,11.6,9.8,10.6]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"07_create10k","values":{"total":[410,410.1,415.4,411.9,410.5,415.3,412.6,412.3,414.8,417.1,418.1,411.3,409.8,415.5,411.9],"script":[186.3,186,189.5,187.7,187.8,187.3,187.5,188.8,190.7,192.3,188,186,185.8,189,187.7],"paint":[216.1,216.7,218.3,217.1,215.3,220.6,217.8,216.2,216.6,217.6,222.6,218.1,216.6,219.3,216.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38,36.4,36.4,38.3,37.9,37.8,37.7,38.1,37.8,37.9,36.4,36.6,38,39,37.6],"script":[10.9,10.2,10.3,10.9,10.9,10.6,10.8,10.8,10.7,10.8,10.3,10.4,10.8,10.8,10.7],"paint":[26.2,25.3,25.1,26.4,26,26.2,26,26.4,26.1,26.2,25.2,25.3,26.3,27.1,25.9]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18,19.5,20.5,20.9,21.6,21,20.2,20.1,20,20.6,22.5,20.8,19.5,20.5,21.2],"script":[15.8,17.4,18.2,19,19.4,19,17.9,17.8,18,19.2,20.1,18.5,17.5,18.3,18.9],"paint":[2,0.8,1.4,0.4,1,1.1,1.6,1.3,1.5,0.3,1.2,1.7,0.3,1.5,1.4]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3983383178710938]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.435094833374023]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.927040100097656]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4592742919921875]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.43937873840332]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[246.1]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.7]}},{"framework":"react-redux-hooks-immutable-v19.0.0 + 9.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[276.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[33.5,32.6,32.6,33.4,33.2,32.5,33.1,32.4,32.7,32.3,31.9,32.6,32.9,33,32.8],"script":[11.6,10.9,10.8,11.2,10.8,10.3,11.2,10.9,11.2,10.2,10,10.4,11.1,11,10.9],"paint":[21.3,21.1,21.2,21.6,21.9,21.6,21.4,21.1,21,21.4,21.4,21.7,21.2,21.5,21.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[39.3,38.9,39.3,41.8,39.3,39.7,39.6,39.5,39.4,38.6,39.6,40,39.2,39.5,39.4],"script":[15.6,15.6,15.7,15.9,15.7,15.9,15.9,15.7,15.5,15.1,15.9,16,15.7,15.7,15.8],"paint":[23.2,22.6,23,25.4,23.1,23.2,23.1,23.2,23.3,23,23.1,23.4,23,23.2,23]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.2,19.6,19.5,20,19,18.6,20.9,19.8,19.6,19.1,20.6,18.9,18.6,19.9,20.7],"script":[8.3,7.8,7.8,8.2,7.2,7.3,8.5,7.9,7.5,8,8.2,7.4,7.3,7.7,7.6],"paint":[9.6,9.6,10,8.5,10,9.5,10.4,9.4,9.9,9.2,10,9.1,9.7,10.3,10.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.8,6.8,6.5,5.5,6.2,5.9,6.1,6.3,5.5,5.8,5.7,5.6,5.8,6.1,6.6,6.3,6.6,6.9,6,6,5.6,5.2,6.1,5.8,5.8],"script":[3.5,4.2,4,3.7,3.9,3.5,3.2,3.5,3.6,3.6,3,2.6,3.4,3.6,4,3.1,4.1,3.7,3.5,3.5,3.1,3.1,3.6,3.3,3.4],"paint":[1.3,1.8,2.3,1.3,1.2,1.4,2.7,2.2,1.1,1.3,2.2,2.8,2.3,1.6,2.1,3,0.5,2.7,1.5,1.5,2.4,1.3,1.1,1.8,1.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[106.5,110.1,108.4,110,115.8,106.8,111.7,112.4,108.8,108.2,107.5,110,104.5,110.1,107.1],"script":[20,21.4,21.8,21.8,20.8,21.3,22.3,21,21.5,21,20.3,20.7,20.1,21.8,21.1],"paint":[84,86.4,84.4,86.9,92.6,84.2,87.3,89.8,85.3,84.5,83.9,86.1,82.3,86.6,83.4]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.4,24.5,24.6,25.9,24.4,24.2,24.9,24.5,24.2,24.4,24.8,24.4,24.4,23.9,24.5],"script":[12.6,12.4,12.5,13.1,12.3,12.2,12.8,12.3,12.3,12.5,12.8,13,12.3,11.8,12.7],"paint":[10.6,10.9,11.2,11.5,11,11.2,11.2,10.9,10.8,10.9,10.9,10.2,11,10.9,10.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[453.9,452.4,457.3,458.3,454.6,455.3,449.8,459.7,454.2,451.7,452.5,451.5,456.2,454,451.6],"script":[225.3,221.3,224.5,227.6,225.6,228.9,222.2,231.3,225.6,224.8,224.5,223.9,227.4,221.8,222.6],"paint":[220.8,223.9,225.3,223.1,221.8,219.1,220.1,221.3,220.9,219.5,220.8,220.5,221.6,224.9,221.5]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.6,38.8,39.1,37.7,39.1,37.7,37.8,38.2,38.5,37.4,38.3,38.6,38.1,38.9,37.8],"script":[12.1,11.7,12,11.2,12,11,11.1,11.4,12,11,11.2,11.9,11.2,11.9,10.9],"paint":[25.6,26.1,26.1,25.5,26.1,25.8,25.7,25.9,25.6,25.5,26.1,25.7,26.1,26,26]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.4,20.3,22.9,20.7,22.4,20.9,21.3,20.2,21.3,20.9,21.1,20.1,20.5,20.1,20.3],"script":[18,17.9,20.3,18.6,20,18.6,18.5,18.3,19.3,19.5,19.2,17.7,18.9,18.5,18.4],"paint":[1.1,1.2,1.5,1.2,1.4,1.2,1.9,0.3,0.6,0.3,0.3,1.2,0.3,0.6,0.3]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3310251235961914]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.615174293518066]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.305543899536133]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.1841821670532227]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[70.20617008209229]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[200.2]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[54.7]}},{"framework":"react-redux-rematch-v19.0.0 + 9.2.0 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"01_run1k","values":{"total":[29.1,28.4,27.5,27.3,29.8,27,27.3,27.4,27.2,27.1,29.3,27.3,27.1,28.8,27],"script":[7.1,6.8,6.6,6.6,7.3,6.7,6.3,6.5,6.4,6.7,7.3,6.7,6.4,6.8,6.3],"paint":[21.5,21,20.4,20.1,22,19.8,20.4,20.3,20.2,19.9,21.4,20.1,20.1,21.4,20.2]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33.9,33.3,33.4,33.9,33.9,33.2,34.2,33.4,33.3,33.4,33.6,33.4,33.5,33.4],"script":[10.5,10.9,10.4,10.4,10.7,10.8,10.4,11.1,10.6,10.4,10.7,10.8,10.3,10.3,10.5],"paint":[22.4,22.5,22.3,22.4,22.5,22.5,22.2,22.6,22.2,22.3,22.2,22.3,22.6,22.5,22.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.8,17.6,15,15.9,15.7,16.4,16.9,17.2,15.6,16.1,17.4,16.8,16.8,16.2],"script":[5.4,5.8,5.2,4.5,5.1,4.7,5.5,5,5.7,4.9,5.2,5.5,5.3,5.4,4.9],"paint":[10,10.3,11,9.6,9.3,8.9,8.8,9.8,9.5,8.3,9,10.1,9.8,9.1,10.6]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"04_select1k","values":{"total":[5,4.8,4.7,4.1,4.7,4.5,4.6,4.5,4.5,4.8,4.5,5,4.4,5.1,5,4.5,4.9,5.2,4.6,5.8,4.5,4.8,4.5,4.9,4.2],"script":[2.5,2.3,2.3,2,2,2,2.4,2.4,1.9,2.3,1.6,2.4,1.8,2.7,2.4,2.2,2.6,2.4,2.7,2.5,2.1,2.7,2.6,2.3,2.2],"paint":[2.3,1.7,1.6,1.6,2.5,2.2,1.5,1.4,1.6,1.6,1.8,1.3,1.7,1.7,1.7,2.1,2.1,1.9,1.3,1.8,1.5,1.1,1.1,2.5,1.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"05_swap1k","values":{"total":[104.8,101.5,106.2,104.9,105,107.5,104.1,103.6,107.2,104.9,108.9,107.3,104.1,105.3,106.4],"script":[17.7,17.4,20.2,17.1,18.2,18.8,17.2,18.2,18.4,18.4,18,20,17.9,18.4,17.2],"paint":[85,81.7,84.6,85.5,83.9,85.7,84.5,82,86.5,83.9,88.6,85,84.1,85.7,85.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.9,11.9,11.8,11.6,11.8,11.6,11.7,11.6,12.2,11.6,11.6,11.8,11.8,11.6,11.8],"script":[1.4,1.3,1.3,1.4,1.3,1.6,1.3,1.3,1.5,1.5,1.3,1.4,1.4,1.3,1.5],"paint":[9.8,9.8,9.8,9.7,9.7,9.6,9.4,9.6,10.2,9.7,9.4,9.7,9.6,9.7,9.7]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"07_create10k","values":{"total":[393.4,390.3,392.3,394.1,434.5,432.4,388.3,396.5,395.2,394.7,411.7,413.5,392.7,467.2,390.3],"script":[166.6,163.7,164.9,167.8,205.7,205.8,164.9,170.3,168.7,167.6,186,187.5,166.3,238.3,164.3],"paint":[219.2,219.1,219.9,218.5,220.5,219.1,216.3,218.8,219.1,219.8,218.3,218.4,218.9,221.3,218.4]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,33.2,33.3,33.6,33.7,34,33.2,33.8,32.7,33.3,33.5,33.3,33.1,33.6,33.3],"script":[7.4,7.4,7.2,7.4,7.4,7.5,7.4,7.2,7.1,7.4,7.4,7.3,7.2,7.3,7.3],"paint":[25.3,24.9,25.1,25.3,25.3,25.6,24.9,25.6,24.6,25,25.2,25.1,24.9,25.3,25.1]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17,17.1,17.7,17.8,17,17.4,17.7,17.7,17.4,17.2,16.4,16.7,16.8,16.1,17.7],"script":[14.7,14.5,15.6,15.6,14.7,15.6,15.5,15.4,15.4,15,14.9,14.8,14.5,14.7,15.6],"paint":[1,1.6,1,1.3,1.3,0.3,1.2,1,1.8,0.3,0.3,1.1,1.4,1.2,0.9]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2446269989013672]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.428855895996094]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.83131217956543]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9516420364379883]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.3991117477417]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[196.8]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.3]}},{"framework":"react-rxjs-v19.0.0 + 0.10.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,27.9,27.4,29.7,27.6,29.7,27,27.4,27.6,29.5,27.4,29.1,27.4,29.5,29.1],"script":[7,6.5,6.3,7.2,6.5,7.1,6.2,6.2,6.6,7.2,6.2,6.8,6.2,6.8,6.9],"paint":[21.7,20.9,20.5,22,20.6,22.1,20.3,20.7,20.4,21.8,20.7,21.7,20.7,22.1,21.7]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"02_replace1k","values":{"total":[33.5,34.3,34.2,33.9,33.3,33.5,34.2,34,33.6,34.9,34.5,33.6,33.4,33.5,34.9],"script":[11.1,11.3,11.4,11.4,11,10.9,11.1,11.1,10.9,11.6,11.6,10.9,11,10.9,11.5],"paint":[21.9,22.3,22.2,22,21.7,22,22.5,22.2,22.1,22.7,22.3,22.1,21.7,22,22.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.4,15.8,15.4,16.3,16,15.2,15.4,17.1,16,17.3,15.6,15.1,14.9,14.7,16.4],"script":[4,4.6,4.5,5.1,4.9,4.6,4.7,5.5,4.8,5.3,5.3,4.6,4.5,4.6,5.4],"paint":[9.4,9.3,10,10,10,9.3,9.5,9,10.5,9.7,9.3,9.2,9.4,8.7,9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"04_select1k","values":{"total":[5.6,4.1,3.7,5,4.3,4.3,3.7,4.3,4,4.3,5.6,5,4.7,4.6,3.5,4.8,4.3,3.9,4.9,4.1,4.4,3.5,4.9,4,3.6],"script":[2.4,2.2,2.2,1.8,1.9,1.9,1.3,2.3,1.3,1.9,2.9,2.2,2,1.9,1.4,1.8,2.2,2.1,2.4,1.5,1.8,2,2.3,1.9,1.2],"paint":[3,1.4,1.3,3,1.5,1.6,2.3,1,2.5,1.6,1.8,1.1,1.7,1.8,1,2,1.5,1.5,1.7,1.5,2.1,1.3,1.5,1,2.2]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"05_swap1k","values":{"total":[100.6,101.5,104.9,101.3,101.8,103.2,103.5,105.2,103.1,104.6,103.1,103.5,105.2,106.7,105.7],"script":[16.4,15.7,17.6,16.8,16.5,15.6,16.3,17.9,17.4,18.6,16.3,16,18,17.3,18.8],"paint":[80.9,83.1,84.4,81.8,82.4,85.7,84.7,85.2,83.4,84,84.5,84.2,84,86.7,85.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[12,11.6,11.9,11.6,12.4,11.8,11.8,11.9,12.4,11.1,11.6,12,12,12.6,11.9],"script":[1.2,1.3,1.4,1.2,1.6,1.4,1.5,1.2,1.6,0.9,1.6,1.3,1.3,1.5,1.6],"paint":[10.3,9.9,9.8,9.6,10.4,10.1,9.7,9.8,9.8,9.6,9.7,10.1,9.9,10.4,9.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"07_create10k","values":{"total":[393.7,394.4,395,389,393.3,395.7,390.8,393.7,398.4,389.2,393.7,393.6,394,392.7,396.6],"script":[169.7,169.4,168.8,166.1,167.6,169.8,165.7,169,169.2,165.2,167.5,169,169.5,166.5,169.2],"paint":[216.7,217.9,219.1,215.6,218.3,218.2,217.9,217.4,222,216.7,218.9,217.3,217.2,218.3,219.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.5,35.7,35.5,35.4,36.4,36,35.8,35.5,34.8,35.9,35.8,35.9,35.6,36],"script":[7.6,7.7,8.1,8.2,8.2,8.3,8.2,8.3,8.1,7.8,8.2,8,8.2,8.2,8.2],"paint":[26.6,26.9,26.7,26.3,26.3,27.3,26.9,26.5,26.4,26,26.7,26.9,26.7,26.5,26.9]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.2,18.1,18.2,17.4,17.9,17.3,17.8,18.4,17.1,19.2,18,17.9,19.5,17.2,19.9],"script":[15.1,15.9,16.6,15.3,15.8,15.4,15.9,16.1,15.2,17.1,15.7,15.9,17.1,14.8,18.2],"paint":[1.3,1.8,0.6,0.9,1.5,1,0.3,1.7,1.1,0.7,1.4,0.7,0.9,1.1,0.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.156524658203125]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.06430721282959]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.515730857849121]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8764820098876953]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.077948570251465]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[181.6]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.5]}},{"framework":"react-tagged-state-v19.0.0 + 2.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[203.1]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"01_run1k","values":{"total":[31.6,29.6,30.2,31.7,30,33.2,29.8,30.1,29.8,31.8,31.4,30.3,30.7,30,29.9],"script":[9.2,8.5,8.6,9.2,8.4,8.9,8.5,8.6,8.3,9.1,9.1,8.7,8.7,8.7,8.5],"paint":[21.8,20.6,21.1,22,21,23.8,20.8,20.9,21,22.1,21.7,21.1,21.3,20.8,20.9]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"02_replace1k","values":{"total":[35.9,36,36.6,35.2,36.1,36.1,35.8,36.3,36.1,36.8,35.9,36.6,36.1,35.7,35.5],"script":[12.5,12.5,12.4,11.9,12.3,12.6,12.3,12.6,12.5,12.8,12.3,12.8,12.6,12.5,12.2],"paint":[22.8,22.9,23.5,22.7,23.1,22.9,23,23,23,23.4,23,23.2,22.9,22.6,22.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.4,21.9,21.2,20.7,21,21,21.5,20.5,23.4,21,21.8,20.5,21.5,21.1,20.6],"script":[10.1,9.6,9.4,9.1,9.4,9,10,8.7,9.5,9.5,10.2,9.2,9.8,9,8.9],"paint":[8.2,10.3,10.2,10,9.9,10.1,9.8,10.4,12.6,9.2,10.1,9.2,10.8,10,9.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"04_select1k","values":{"total":[7.6,8.8,7.5,8.2,8.1,7.3,8.4,8.7,7.4,8.5,8.6,7.1,8,6.9,7.5,7.3,7.4,7.4,7.5,8.6,7.3,7,7.2,7.5,7.6],"script":[4.8,5.3,4.6,5.7,5.3,4.5,5.2,5.5,4.8,5.2,5.5,4.8,5.4,4.7,4.8,4.9,4.9,4.8,4.9,5.1,4.6,4.8,4.5,4.5,4.9],"paint":[1.7,1.6,2.4,0.8,1.1,1.6,1.8,2.1,1.6,1.7,2.2,1.2,0.8,2,1.5,0.8,1.3,1.7,1.7,1.4,1.6,1.1,1.6,2.6,1.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"05_swap1k","values":{"total":[107.8,107.9,107.7,108,105.7,110.3,105.9,109,106.7,107.9,108,108,110.2,107.9,109.2],"script":[20.9,21.6,22.2,22.3,20.8,21.5,21.7,23.7,20.8,22.3,22.4,21.3,20.7,21.3,21],"paint":[84.5,82.4,83.6,82.9,83.4,85.9,82.2,82.6,84.2,82.9,84.4,83.6,87.1,83.9,85.5]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.7,13.3,13.4,13.8,13.1,13.4,13.4,13.8,15.2,13.4,13.6,13.4,13.2,13.3],"script":[2.9,3,2.9,3,3.2,2.8,2.9,2.8,3.1,3.9,2.7,3,3,2.7,3],"paint":[9.5,10.1,9.4,9.7,9.9,9.4,10,9.8,10.2,10.6,9.9,10.1,9.7,9.9,9.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"07_create10k","values":{"total":[406.2,427.9,401.7,403,403.2,423.4,403.7,411.1,401.3,404.2,403.9,400.5,400.2,404.5,426],"script":[180.3,201.2,174.8,176.4,176.1,196.6,174.6,184.6,175.9,177.4,178.9,176.3,176.6,178.4,199.8],"paint":[218.7,219.2,219.7,219,219.7,219.6,221.7,219.3,218,219.7,217.7,217,216.2,218.7,218.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.7,37.3,37,37.9,37.2,37,37.3,37.3,37.7,37.2,37.7,37.8,37.6,37.4],"script":[9.8,10.2,10.1,9.9,10.1,9.7,10,10,9.9,9.8,9.8,10,9.7,10.1,9.8],"paint":[26,26.5,26.2,26.2,26.8,26.5,26.1,26.4,26.5,27,26.5,26.7,27.1,26.5,26.6]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.7,17.9,19,17.1,18.2,18.3,18.4,17.8,17.1,17.4,18,18.3,18.4,16.3,18.5],"script":[16.4,15.6,16.6,15.9,16,16.1,16,16,15.5,15.7,16.3,15.8,16.7,14.9,16.8],"paint":[0.7,2.1,2.1,1,1.7,0.9,1.2,1.2,1.1,0.5,0.6,2.1,0.7,1.2,0.3]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2796640396118164]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.949119567871094]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.470735549926758]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4825477600097656]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.3575496673584]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[185.7]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[50.8]}},{"framework":"react-tracked-v19.0.0 + 2.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[207.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"01_run1k","values":{"total":[30.8,28.8,28.8,29.1,30.7,30.6,30.6,28.6,29.6,29,31.3,29.9,29.2,28.9,30.6],"script":[7.8,7.4,7.4,7.1,7.7,7.8,8,7.3,7.6,7.1,8.2,7.6,7.2,7.1,8],"paint":[22.5,20.9,20.9,21.4,22.5,22.3,22,20.7,21.4,21.5,22.6,21.7,21.4,21.3,22]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,34.7,34.9,34.2,33.7,34.2,34,34.3,34.2,33.6,34.1,33.9,34.6,34,34.2],"script":[11.2,11.2,11.8,11.2,11.2,11.3,11.5,11.4,11.5,11,11.4,11.4,11.7,11.5,11.4],"paint":[22,22.9,22.5,22.3,21.9,22.3,22,22.2,22.1,22,22.1,21.9,22.3,22,22.1]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.6,17.3,16.2,17,17.8,17.1,17.4,17.6,17.6,17.3,16.6,16.7,18.8,17.5,16.2],"script":[5.3,5.6,5.4,5.8,5.8,5.9,5.7,5.6,5.5,5.5,5.8,5.8,5.3,6.2,5.2],"paint":[11.5,9.6,9.5,9.7,9.7,9.1,9.5,10.8,10.4,10.9,7.8,9.5,12.4,9.7,9.5]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"04_select1k","values":{"total":[4.9,5.3,5.1,5.7,5.4,4.8,5,5.2,4.9,6.1,5.1,5.2,4.9,5.5,4.7,4.4,5.3,4.5,5,5.6,5.4,5.1,5.4,5.2,6.1],"script":[2.7,3.2,2.6,2.8,3.2,2.4,2.4,2.5,3,3.5,3,2.8,2.7,3.1,2.2,2.7,2.9,2.6,2.3,3,3.3,2.4,3.3,3.1,3],"paint":[1.6,1.9,2.3,2.8,1.2,1.6,2.4,1.1,1.1,2.4,1.1,1.9,1.1,1.8,1.7,1.1,1.6,1.1,1.5,1.9,1.4,2,1.5,1.9,2.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"05_swap1k","values":{"total":[105.7,104.5,106.6,106.5,109.8,105,105.8,104.8,108.2,105.4,104.4,106.1,104.5,106.3,106.6],"script":[18.6,18.3,17.8,18.9,21,19.6,17.8,18.3,19.8,18.9,18.1,17.5,18.6,18.5,18.3],"paint":[84.2,84.1,86.5,84.3,86.3,82.8,85.9,84,85,85.3,83.8,84.9,83.6,85.6,85.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.1,12.2,12.3,13.4,13.1,12.9,12.2,12.3,13,12.9,12.5,12.7,12.4,12.4,12.5],"script":[2,1.8,1.8,2,1.8,1.8,1.8,1.5,1.6,1.8,1.7,2,1.9,1.8,1.9],"paint":[10.2,9.5,9.5,10.5,10.5,10,10.1,10.2,10.9,10.5,10.3,10,9.8,9.7,10]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"07_create10k","values":{"total":[407.8,408.8,408.9,402.1,412,404.5,402.1,403.9,407.1,404.4,404.5,405.1,403.9,406.1,405.2],"script":[182.5,178.1,178.8,177.3,181.9,179,178.7,177.9,180.3,180.2,178,180.9,179.6,178.7,181.1],"paint":[218.1,223,222.5,216.6,222.3,217.8,216.1,218.3,219.2,216.7,218.5,216.8,217.1,220,216.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.3,36.5,35.9,36.2,36,35.7,36.3,38.2,36.3,36,36.3,36.3,36,36.1,36.2],"script":[8.6,8.6,8.5,8.4,8.4,8.4,8.5,8.5,8.4,8.4,8.4,8.4,8.4,8.5,8.5],"paint":[26.8,26.9,26.5,26.8,26.6,26.4,26.8,28.8,26.8,26.7,26.9,26.9,26.7,26.7,26.7]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.1,18.2,20.1,18.3,20,19.2,19.5,19.8,19.5,19.8,19.8,19.8,19.8,18.8,19.7],"script":[17.9,16.5,17.9,16.7,17.6,17.2,17.6,17.9,17.5,17.4,17.7,17.9,17.8,16.8,17],"paint":[1.1,0.3,1.2,0.3,1.4,0.5,0.3,0.3,0.3,2,1.9,0.7,1.3,1.8,1.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1753854751586914]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.159784317016602]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.764469146728516]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9744691848754883]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.97618007659912]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[182.9]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.8]}},{"framework":"react-zustand-v19.0.0 + 5.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[204.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[48,40.4,44.5,41.1,38.7,40.7,45.1,40.4,43.9,39.4,39.5,39.7,39.6,39.7,42.1],"script":[17.6,19.5,18.4,17.9,18.2,18.5,18.2,18.7,17.5,18.1,18.3,18.6,18.1,18.2,18],"paint":[20,20.6,20.9,20.9,20.4,20.7,20.6,20.6,20.5,21.1,21,20.8,21.3,20.6,21.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[50,49.6,43.6,45.3,50.9,44.5,45.4,51.7,44.1,44.7,44.5,47.4,44.2,46,44.7],"script":[22.5,22.1,21.8,22.5,22.2,21.9,22.3,22,21.8,21.8,21.9,22.3,21.8,21.9,22.2],"paint":[22.3,22.8,21.6,22.3,22.1,22.4,22.7,22.6,22.1,22.7,22.4,22.4,22.2,22.4,22.3]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.5,39.2,38.1,40.7,23.4,40.6,39.3,38.4,38.5,38.4,23.7,38.4,39.6,37.5,39.2],"script":[12.3,13,13,12.8,12.4,13.7,12.6,12.6,11.4,12.2,11.3,11.6,12.3,12.2,12.3],"paint":[11.1,11.3,10.2,11.9,10.2,11.3,9.7,10.2,11,10.9,10.8,11.9,10.9,11.1,10.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[7.1,8.8,10.4,7.2,9.3,7.6,11.1,10.5,8.8,7.7,12.9,12.9,6.2,12.8,12.9,6.8,12.2,6,6.2,11,9.5,12.3,6.4,8.9,13.2],"script":[2.9,3.2,2.2,3.4,2.2,3.6,2.3,2.6,4.2,3.4,1.9,2.1,3.3,2,2.9,3,2.7,2.7,3.3,3.3,2.2,2,3.3,3.1,2.7],"paint":[1.8,2.7,1.6,1.4,1.1,1.8,2.4,0.6,1.8,1.9,2.6,2.2,1.1,1.8,1.6,2.2,1.4,1.9,1.3,2.1,1.4,2.2,2.2,1.8,1.9]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[125.1,123.2,111.8,108.5,109.1,109.2,114.1,120.5,122.6,107,104.1,122.3,126.6,120,126.4],"script":[25.2,25.2,23.7,24.4,25.7,22.5,23.9,24.4,24.1,23.4,24.1,24.2,25.2,23.4,24.8],"paint":[84,82.5,86.2,82,82.2,84.7,88.4,80.1,81.3,82.6,78.9,81.5,84.9,80.5,84.6]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25,24.7,19.1,19.8,20.6,19.4,23.9,19.7,21.7,23.7,20.4,21.1,22.2,22,21.6],"script":[4.8,5.5,4.9,5.6,5.2,4.6,5.4,5.4,5.4,5.3,5.2,4.9,5,5,5.4],"paint":[11.3,11.1,11.2,11.2,10.9,11.3,11,11.1,11.5,11.1,10.7,10.9,10.7,11.5,11.1]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[469.5,466.2,470.8,463.7,464.4,467.6,465.1,464,468,466.1,467.9,462.1,469.1,463.8,462.6],"script":[242.6,241.1,244.9,241.5,243.7,244.9,241.9,240.8,245.3,242.9,244.1,241.3,245.3,241.6,240.7],"paint":[221.3,221.7,222.6,219.1,217.4,219.4,219.9,220,219.3,219.9,220.3,217.6,220.5,219,218.7]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.5,43.8,45.2,48.8,44.6,48.7,49.6,49.1,44,49.3,51.7,44.7,48.3,44.6,49.4],"script":[19,18.2,19.4,18.4,18.9,18.6,19.2,18.5,18.8,18.6,19,18.9,18.6,18.8,18.8],"paint":[25.4,25.2,25.1,24.9,25.4,25.4,25.7,25.6,24.9,25.5,25.6,25.5,25.1,25.5,25.5]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.7,37.3,21.1,38.9,22.3,39.7,22.9,21.3,36.9,23.8,37.9,21.1,22.7,22.9,38.6],"script":[20.7,20.4,19.8,21.8,20.9,22.5,21.4,19.6,19.8,22.1,20.9,19.1,20.6,20.6,21.3],"paint":[1,0.9,1.2,1.1,1.2,1.2,0.6,1.3,1,1.6,1,1.8,1.2,1.6,1.2]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4527053833007812]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.31330680847168]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.039090156555176]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.954824447631836]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.01274394989014]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.4]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[291.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"01_run1k","values":{"total":[29.5,29.3,29.4,29.5,29.9,29.4,29.8,29.2,29.9,29.1,29.9,29.5,29.4,29.5,30],"script":[7.1,7.1,7.1,7.1,7.3,7.2,7.3,7.1,7.2,7,7.1,7.2,7.2,7.1,7.1],"paint":[21.8,21.7,21.8,21.9,22,21.6,21.9,21.6,22.1,21.6,22.2,21.7,21.7,21.9,22.3]}},{"framework":"redom-v4.1.5-keyed","benchmark":"02_replace1k","values":{"total":[32.1,31.8,32.7,32.3,33.2,32.6,32,32,32.1,32.5,32,32.4,32.3,32.4,32.8],"script":[9.2,9.1,9.6,9.6,9.6,9.8,9.3,9.9,10,9.5,9.2,9.6,9.3,9.5,9.5],"paint":[22.4,22.2,22.6,22.1,23,22.1,22.1,21.5,21.5,22.5,22.2,22.3,22.4,22.3,22.7]}},{"framework":"redom-v4.1.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.7,12.1,11.8,12.7,12,11.3,12.2,12.1,12.1,11.9,11.8,13.1,12.8,12.3,12.3],"script":[1.7,1.2,0.9,2.1,1.3,1.7,2.1,1.6,0.9,1.2,1.6,2,1.3,1.7,1.3],"paint":[9.9,9.9,10,10,9.7,8.3,8.6,9.3,9.4,9,8.9,9.8,10.3,9.1,10]}},{"framework":"redom-v4.1.5-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,2.9,2.8,3.6,3.2,3.4,3.4,3,3.4,2.7,2.9,2.8,3.4,3.3,3,2.8,3.1,3.4,3.2,3.4,3,3.3,2.7,3.3],"script":[1,1.1,0.6,1.3,1.4,0.9,1.2,1,0.6,1,0.9,1,0.6,0.9,0.9,1.1,0.7,0.6,1.3,1.2,1,1.1,0.8,0.9,1.4],"paint":[2,1.1,0.8,1.4,1.2,1.2,1.5,1.6,1.3,2.1,1.7,1.8,1.3,1.6,0.5,1.8,1.6,1.6,1.9,1.9,2.3,1,2.3,1.7,1]}},{"framework":"redom-v4.1.5-keyed","benchmark":"05_swap1k","values":{"total":[13.6,14.3,13.8,15,13.6,14.5,13.4,13.8,14.2,14.6,14,14.6,14.9,13.8,15.2],"script":[0.6,0.9,1.6,1.8,1,0.9,0.6,1.3,1.7,1.8,1.2,1.1,1.5,0.7,1.4],"paint":[10.9,12.7,11.2,11.4,11.7,12,11.8,10.4,10.8,11.2,11.3,12.3,12.1,11.9,11.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,11.4,10.6,11.3,10.8,10.4,11.2,11.2,10.9,10.4,11.6,10.9,11.3,10.6],"script":[0.4,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.7,0.6,0.6],"paint":[9.7,9.7,10.3,9.4,10,9.3,8.7,10,9.8,9.7,9.2,10.4,9.7,9.9,9.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"07_create10k","values":{"total":[296.9,296.9,295.3,300.5,296.6,295.9,297.9,298.1,296.6,297,298,301.7,295.3,295.7,296.8],"script":[70.2,69.4,69.4,68.8,68.9,69.2,69.8,70.1,70,69.8,69.3,71.7,70,69.9,69.6],"paint":[219.3,220.2,218.6,224.3,220.5,219.3,220.6,220.6,219.3,220,221.5,222.4,218.1,218.6,219.9]}},{"framework":"redom-v4.1.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,35.2,35.1,35.9,35.1,35.4,35.2,35.2,35.2,35.6,34.4,35.2,35.1,35.2,35.1],"script":[7.6,7.3,8,8,7.8,8,8,7.8,7.7,8.1,7.5,7.8,7.9,7.7,7.7],"paint":[25.9,27,26.2,26.9,26.4,26.5,26.2,26.5,26.6,26.6,26,26.4,26.3,26.6,26.4]}},{"framework":"redom-v4.1.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,12.1,12.4,12.1,12.7,12.2,12.9,12.2,12.5,12.9,13.1,12,12.7,12.4,12.1],"script":[11.5,9.9,10.4,9.8,10.9,10.4,11.4,10.5,10.5,11,11,9.9,10.3,10.4,10.2],"paint":[0.8,1.5,1.8,1.5,0.5,1.2,1,1.1,1.7,1.1,0.8,1,0.8,1,0.6]}},{"framework":"redom-v4.1.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.587489128112793]}},{"framework":"redom-v4.1.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5082263946533203]}},{"framework":"redom-v4.1.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5552072525024414]}},{"framework":"redom-v4.1.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4570398330688477]}},{"framework":"redom-v4.1.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.147988319396973]}},{"framework":"redom-v4.1.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"redom-v4.1.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2]}},{"framework":"redom-v4.1.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"01_run1k","values":{"total":[28.3,28.3,28.5,28.1,29,28,29,29,28.2,28.2,29.4,28.9,28.9,28.8,28.8],"script":[5.9,6.2,6.3,5.9,6.5,5.9,6.4,6.4,6,5.9,6.5,6.6,6.4,6.3,6],"paint":[21.8,21.6,21.7,21.7,21.9,21.6,22,22,21.6,21.7,22.3,21.8,21.9,21.9,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"02_replace1k","values":{"total":[40,39.3,39.4,39.6,39.5,39.2,40.5,39.7,39.5,39.3,39.1,40.5,39.6,39.5,39.8],"script":[17.4,16.9,17.3,17.1,16.9,16.8,17.7,17,17.2,16.9,17,17.7,17,16.8,17.1],"paint":[22,21.8,21.6,22,22,21.8,22.2,22.1,21.6,21.8,21.5,22.2,22,22.1,22.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.2,13.9,13.4,13.1,13.5,14.4,15.3,14.4,13.4,13.6,15.7,13.5,14.3,14.4,13.5],"script":[3.3,3.3,2.6,2.9,3.4,3.5,3.5,3.7,3.7,2.9,3.3,2.6,3.7,3.1,3],"paint":[10.9,9.3,8.6,8.4,8.7,8.7,9.9,9.1,8.1,9.7,10.9,9.8,7.5,9.8,9.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"04_select1k","values":{"total":[4.7,4.8,4,4.4,4.2,4.2,3.9,3.9,4.2,4,4.8,4.9,4.1,4.1,4.4,4.7,4,4.2,4,4.8,4.2,4.2,4.1,4.6,3.8],"script":[2.2,2.1,1.5,2.3,2,2.1,2,1.6,1.7,1.7,2.4,2.5,1.6,1.2,2.1,2.3,2.1,2.3,2.5,2.1,2,2,2,2.2,1.8],"paint":[2.4,1.5,2.4,1.6,1.3,2.1,1.1,1.1,1.7,1.4,1.5,1.5,1.5,2.6,2.1,2.3,1.8,1,0.9,2.5,0.6,1.8,0.5,1.5,1.8]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.4,16.3,16.4,15.9,16.9,17.6,16.5,15.6,16.5,15.9,17.1,16.2,16.1,16.1],"script":[3.6,2.2,3.2,3.8,2.7,3.6,3.2,3.2,2.6,3.1,2.7,3.4,2.6,3.6,2.7],"paint":[12.6,13.4,12.1,12,12.4,12.2,13.5,12,12.1,12.3,12.5,12.5,12.3,11.6,12.5]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.3,11.4,11.5,11.6,11.7,11.7,11.6,11.5,11.1,11.5,11.5,11.5,11.9,11.2],"script":[1.2,1.1,1.1,1.2,1.2,0.9,1.2,1.2,1.2,0.8,1.2,1.2,1.2,1.2,1],"paint":[9.6,9.5,9.6,9.5,9.4,9.7,9.8,9.4,9.7,9.7,9.7,9.7,9.5,9.9,9.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"07_create10k","values":{"total":[289.5,289.9,291.1,289.3,289,288.8,291.1,289,289.5,290.8,288.9,289.1,287.1,289.2,288.4],"script":[60.4,58.5,63.2,58.9,58.9,62.5,62.2,59.6,58,63.9,59.1,62.6,62.3,58.5,58.2],"paint":[221.8,224.1,220.7,223.2,222.6,219.1,220.5,222.2,224.4,219.8,222.6,219.4,217.6,223.6,223.1]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.6,45,45.6,45.2,44.7,45.3,44.9,45,45.2,45.1,45.9,45.5,44.7,44.7,45.3],"script":[19.6,18.9,19.2,18.6,18.3,19.3,18.8,18.8,18.8,19.3,19.2,19.2,18.5,18.8,18.5],"paint":[25.1,25.2,25.5,25.7,25.5,25.1,25.2,25.3,25.4,25,25.7,25.4,25.3,24.9,25.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.5,10.2,11,10.7,11.8,11.2,10.7,11.4,10.8,11.5,11.4,10.8,10.8,11.8,11.1],"script":[10.8,7.5,8.6,8.8,9.8,8.9,8.6,9.4,8.7,9.2,9.2,8.9,9.3,9.4,8.8],"paint":[1.1,1.7,1.2,1,0.7,0.3,1.2,1.4,0.8,0.7,2,0.3,0.6,1.4,1.2]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5310258865356445]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5260305404663086]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6222524642944336]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6946115493774414]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.022663116455078]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.9]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"reflex-js-v0.25.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[26.6,26.3,26.1,26,26.1,26.6,26.4,26.2,25.8,26,26.4,26.3,26.6,26.6,26.6],"script":[6,5.5,5.6,5.6,5.5,5.5,5.7,5.6,5.5,5.5,5.7,5.6,5.6,5.5,5.5],"paint":[20,20.2,20,19.9,20.1,20.6,20.2,20.1,19.8,20.1,20.2,20.1,20.5,20.6,20.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[31,31.4,31.3,31.3,31,31.1,30.4,30.9,31.5,31.3,31.4,31,31.4,30.8,31],"script":[7.7,8.2,8.2,8,8.2,8.1,7.5,8.1,8.2,8,8.1,8.2,8.2,8.2,8.1],"paint":[22.9,22.6,22.5,22.8,22.4,22.6,22.4,22.3,22.8,22.9,22.7,22.4,22.8,22.1,22.5]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.8,11.7,12.9,11.7,11.3,11.6,11.9,10.8,11.2,11.9,13.5,11.4,11.3,11],"script":[2,1.8,1,1.9,0.9,1.4,0.9,1.6,1.3,1.2,0.9,2,1.4,1.4,1],"paint":[9.2,10.3,9.8,9.5,9.5,8.6,8.6,9.2,8.3,9,9.4,10.7,8.7,8.5,9.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.6,3.3,3.3,3.1,3,3.3,3.1,2.8,3.3,2.4,2.5,3,2.9,2.8,3.1,3.4,3.1,2.8,3.6,2.6,3.4,3.2,2.6,2.6],"script":[1.2,1.1,1,1.2,1.2,1,0.9,0.9,0.7,1.3,0.6,0.6,0.7,1,1.2,0.9,1.2,0.8,0.6,1.2,0.9,0.9,1.2,0.6,1.1],"paint":[1.3,1.2,2.2,1.2,1.3,1.5,2.3,2,1.8,1.5,1,1.1,2.2,1.6,1,1.3,2,1.2,1.3,1.5,1.2,1.8,1.7,1.7,1.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[16.8,16.4,16.8,16.4,15.5,16.3,16.6,16.1,16.3,18.1,16.7,17,17,16.3,16.3],"script":[3.7,3.1,4,2.9,3.2,3.2,3.4,2.9,3,3.9,3,3.1,3.8,2.8,3.2],"paint":[11.5,12.3,11.5,12.2,11.3,11.7,11.9,12.2,12.2,13.6,12.6,12.4,10.8,12.6,12]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.2,12,12,12,12,11.9,12,11.9,11.9,12.1,12.2,11.9,12,11.9,12],"script":[1.8,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.5,1.3,1.5,1.3,1.2,1.2,1.2],"paint":[9.3,10.4,10.1,9.9,10.1,10.1,10.2,10.4,9.7,10.3,10.2,10.2,10,9.9,10.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[294.6,302.7,293.1,293.9,303.3,291.8,293.6,303.6,306,303.1,308.6,303.2,301.6,303.2,305.3],"script":[67.8,67.1,67.2,67.9,67.7,67.3,65.9,68,68.2,66.1,68.6,67.9,67.2,68.2,67.6],"paint":[219.3,227.6,218.5,218.7,228.4,217.3,220.4,228.3,230.4,229.7,232.1,228.1,227.3,227.9,230]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,32.1,32.7,30.4,31.8,31,32.5,31.4,32.1,32.3,32.5,31.4,33.4,32.8,31.1],"script":[6.3,6.5,6.8,5.8,6.1,6.1,6.7,6,6,6.5,7.1,6.1,6.9,6.8,5.9],"paint":[24.3,24.7,25,23.7,24.7,23.9,24.9,24.5,25.1,24.9,24.5,24.4,25.5,25,24.3]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,12.1,10,10.5,10.2,10.4,9.8,9.8,10.9,9.7,10.7,9.8,10.3,9.2,9.2],"script":[7.6,9.6,8.1,8.6,8.2,8.4,7.8,8.5,8.8,7.6,8.7,7.8,8.5,7.1,8.2],"paint":[1.3,1.6,1,1,0.5,1.7,1.3,0.2,0.4,0.4,1.7,1,1.6,1.5,0.9]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5773401260375977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.828812599182129]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.789670944213867]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8640279769897461]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.86213970184326]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"01_run1k","values":{"total":[30.5,30,30.4,31.5,30,30.4,30.3,30.5,30.9,30.2,30.3,30,30.4,30.2,30.6],"script":[8.1,8,8.3,8.6,8,8.2,8,8.3,8.5,8.1,8.3,8.4,8.4,8.2,8.2],"paint":[21.9,21.4,21.5,22.3,21.5,21.6,21.7,21.7,21.9,21.6,21.5,21.1,21.4,21.5,21.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"02_replace1k","values":{"total":[35.9,35.5,35.9,34.8,35.2,35.7,35.2,35.6,35.3,35.4,35.6,35.6,36,35.2,35.1],"script":[12.8,12.2,12.5,12.2,12.3,12.8,12,12.6,12.4,12.2,12.3,12.6,12.2,12.2,12.2],"paint":[22.5,22.7,22.8,22.1,22.3,22.4,22.6,22.5,22.4,22.7,22.7,22.4,23.2,22.4,22.3]}},{"framework":"riot-v9.4.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.5,17.4,16.5,16.5,16.8,17.6,17.3,16.8,16.1,19.7,16.9,17.7,16.4,16.5,17.4],"script":[5.5,5.7,5.3,4.6,5.2,5.7,5.5,5.5,4.9,6.7,5,6.1,5.5,5.4,6],"paint":[9.5,9.3,9.7,10,10.6,10.3,9.9,9.6,9.1,10.2,8.9,10.6,8.8,9.5,9.7]}},{"framework":"riot-v9.4.4-keyed","benchmark":"04_select1k","values":{"total":[6.8,6.7,7.1,7.3,7.2,6.8,6.8,7.5,7,7.4,8.8,6.7,7.4,7.6,7.4,6.9,7.5,7.2,7.2,7.1,7.8,7.3,6.9,8.5,6.2],"script":[4.6,4.5,4.7,4.5,4.8,4.7,4.6,4.7,4.6,5,5.4,4.6,5.1,4.9,4.9,4.5,4.8,4.7,4.9,4.2,5.1,4.9,4.4,5.5,4],"paint":[1.8,1.4,2.1,1.7,1.5,1.1,1.4,1.7,1.6,2.3,2.1,1.4,1.6,2.1,2.3,2.2,1.8,2.4,1.8,1.9,1.8,1.6,1.6,1.5,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"05_swap1k","values":{"total":[18.8,19.5,18.8,20.1,18.6,18.1,18.5,17.3,18,20.4,19.2,20,18,17.7,19.1],"script":[5,5.4,4.5,5.4,4.3,4.6,4.9,4.8,4.6,5.1,5.2,5.4,4.4,5,5.3],"paint":[12.2,12.7,13.1,11.8,12.7,12.8,12.1,11.3,12.7,12.9,12.1,12,12.5,12.1,12.6]}},{"framework":"riot-v9.4.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,12.8,13.7,13.5,13.7,12.6,13.4,13.1,13.5,13.3,13.5,13.3,12.8,12.8,13.3],"script":[2.9,2.4,2.9,2.6,2.8,2.4,2.5,2.4,2.8,2.4,2.5,2.4,2.6,2.4,2.8],"paint":[9.5,9.2,10.5,10.2,10.5,9.6,10.2,10.1,10.3,10.6,10.4,10,9.6,9.4,9.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"07_create10k","values":{"total":[316.2,315.9,317.4,319,317.9,317.4,316.2,317.7,317.6,318.2,317.4,316.8,317.6,316.8,317.3],"script":[85.3,87.3,87.1,86.3,86.2,85.7,85.6,85.9,86.5,86.3,85.5,86.2,86.1,86,86.2],"paint":[222.9,220.5,222.2,224.2,223.4,223.8,222.8,223.5,222.9,223.8,223.7,222.7,223.6,222.9,223.2]}},{"framework":"riot-v9.4.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.7,37.1,36.8,35.7,36.1,37,36.4,36.7,37.4,36.1,36.7,36.9,36.1,37.6,36.8],"script":[9.9,10,9.7,9.6,9.5,9.7,10,9.9,9.8,9.8,9.9,10,9.6,9.9,9.9],"paint":[25.8,26.1,26.1,25.1,25.6,26.3,25.4,25.9,26.6,25.3,25.8,25.8,25.6,26.6,25.9]}},{"framework":"riot-v9.4.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.3,16.5,18.4,16.9,18.2,16,15.9,16.9,16.5,16.8,17.1,20.1,18.1,17.7,16.7],"script":[15.2,14.7,16.5,15.1,16.2,14,14.3,14.9,13.8,15,15.2,17.9,15.3,16.1,14.9],"paint":[0.9,1.2,1,1.4,1.5,1.3,0.7,0.9,2.2,1.1,1,0.9,1,0.6,1.1]}},{"framework":"riot-v9.4.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6207828521728516]}},{"framework":"riot-v9.4.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7415332794189453]}},{"framework":"riot-v9.4.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.771918296813965]}},{"framework":"riot-v9.4.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9189233779907227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.806177139282227]}},{"framework":"riot-v9.4.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5]}},{"framework":"riot-v9.4.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.2,24.2,24.4,24.3,24.3,24,24,24.2,24.2,23.8,24.2,24.2,24.1,24.6],"script":[2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4,2.4,2.3,2.4,2.4,2.4,2.4],"paint":[21.4,21.4,21.5,21.7,21.6,21.6,21.3,21.3,21.4,21.5,21.1,21.4,21.5,21.3,21.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"02_replace1k","values":{"total":[26.9,27,26.5,27.2,26.9,27.5,26.6,26.9,26.8,27.1,27,27.2,27.3,26.8,26.8],"script":[4.5,4.3,4.3,4.3,4.4,4.4,4.4,4.4,4.4,4.3,4.3,4.6,4.4,4.3,4.4],"paint":[22,22.3,21.8,22.5,22.1,22.6,21.9,22.1,21.9,22.3,22.2,22.2,22.5,22,22]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.5,9.9,10.7,10.5,10.7,10.4,11.4,11.3,10.7,10.7,10.7,10.7,11,10.5,9.9],"script":[0.1,0.1,0.7,1.1,0.4,0.8,1.1,0.2,0.7,0.5,0.5,0.1,0.9,0.2,0.1],"paint":[9.1,8.9,7.8,8.3,9.2,8.7,9.2,10.1,9.1,8.8,9,9.5,9.2,9.2,8.9]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"04_select1k","values":{"total":[3.5,2.8,3.3,3.6,3.5,2.9,3.7,3.1,3.1,2.8,3,2.9,3.5,3.1,3.8,3.7,3.7,3,3,2.8,3.6,2.2,2.7,3,2.4],"script":[1,0.2,1.5,1.7,0.9,0.2,1,0.6,0.9,0.6,0.2,0.2,1.6,1,1.4,1,1,0.9,1.1,1.1,1.2,0.2,0.3,0.3,0.3],"paint":[1.7,1.7,1.2,1.7,1.8,2.4,2.4,1.8,1.3,1.4,1.5,2.6,1.7,1.9,1.3,2.5,2.6,1.1,1.1,1.5,2.3,1.9,2.1,2.4,2]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"05_swap1k","values":{"total":[14,13.4,13.1,13.4,13.8,13.1,13.6,14.1,14.3,16.1,15.7,14.6,13.4,13.9,13.8],"script":[1,0.9,0.2,0.9,0.9,0.8,0.6,0.6,1,1.1,0.6,0.9,0.9,1.2,0.9],"paint":[11.8,11.6,12,12.2,11,11.2,11.8,12.3,11.7,13.7,13.4,12.6,10.3,11.6,11.8]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.8,11,10.2,10.4,10.8,10.8,10.4,10.4,10.5,10.8,10.3,10.4,10.4,10.5],"script":[0.5,0.5,0.5,0.1,0.5,0.5,0.5,0.3,0.5,0.3,0.3,0.2,0.2,0.2,0.3],"paint":[9.6,9.8,9.8,9.5,9,9.5,9.7,9.1,9.6,9.5,9.3,9.5,9.6,9.3,9.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"07_create10k","values":{"total":[256.1,259.7,259.2,261.6,258.8,257.9,258.7,260,264.2,256.2,257.6,257.8,264.5,256.4,257.3],"script":[24.5,25.1,25.4,25.6,24.8,25.2,25.6,25.7,25.9,25,25.1,25.7,25.3,24.6,25.1],"paint":[224.3,226.7,225.5,228.3,226.4,224.8,225.6,227,230.2,224,225,224.3,230.8,224.1,224.5]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.4,27.7,29,28.3,28.4,28.9,28.9,28.5,27.6,27.9,28.4,28.7,28.6,28.8,28.9],"script":[2.4,2.5,2.5,2.5,2.5,2.4,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.5],"paint":[24.2,24.5,25.7,25,25.1,25.7,25.6,25.3,24.4,24.8,25.1,25.4,25.3,25.6,25.6]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.3,10,10.2,9.5,9.9,12,9.7,10.3,10.1,9.4,9.7,9.7,10.9,9.1,10],"script":[7.8,7.7,8,7.8,7.7,10.2,8.1,8.4,7.9,7.4,7.1,8,8.8,7.7,7.4],"paint":[0.5,2,1.3,0.3,1.4,1.1,0.4,1.5,1.4,0.9,2.3,0.7,1,0.3,2.1]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6048908233642578]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4003725051879883]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4941368103027344]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7644691467285156]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.955724716186523]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"ripple-v0.2.61-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.1]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"01_run1k","values":{"total":[27,27.5,27.2,27.4,27.6,27.2,27.4,27.3,27.2,27.7,26.9,27.4,27.5,27.8,27.5],"script":[5.3,5.2,5.2,5.3,5.5,5.4,5.3,5.4,5.5,5.7,5.3,5.3,5.5,5.4,5.4],"paint":[21.2,21.7,21.5,21.6,21.5,21.3,21.5,21.4,21.2,21.5,21.1,21.5,21.4,21.8,21.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"02_replace1k","values":{"total":[32.1,32.4,32.3,32.5,32.1,32.2,31.8,32.7,30.8,32,32.5,31,31.3,32.1,32.2],"script":[8.4,9.4,9,9,8.4,9,8.8,9.3,8.2,9.1,9.4,8.7,8.7,9,8.6],"paint":[23.2,22.4,22.8,22.9,23.1,22.6,22.4,22.9,22.1,22.4,22.6,21.7,22,22.5,22.9]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,12,11.9,11.5,11.8,11.9,11.8,12.8,11.2,11.3,11.9,11.9,11.4,11.4,13],"script":[1.5,1.9,2,1.8,1.4,1.5,1.3,2,1.8,1.6,2.2,2.2,1.6,1.5,2.7],"paint":[8.5,9.2,8.3,7.9,9.3,9.1,9.5,9.8,8.5,8.4,8.1,8.1,8.8,9,8.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"04_select1k","values":{"total":[3.1,2.6,2.8,3.4,3.1,2.8,2.6,3.6,3,4.1,2.4,3.2,2,3.6,2.7,2.5,3,3,2.8,2.3,3.1,2.9,2.4,3.1,3],"script":[1.1,0.1,0.6,0.8,1.2,0.1,0.1,1.4,0.6,1.4,0.1,0.9,0.1,0.9,0.1,0.1,0.6,0.5,0.8,0.1,1.2,0.1,0.8,1.2,0.6],"paint":[1.3,2.4,1.3,1.6,1.6,2.5,1.6,1.3,2,1.8,2.2,2.2,1.1,2.6,1.3,1.8,1,1.4,1,2,1.1,1.4,1.1,1.2,2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"05_swap1k","values":{"total":[14.7,15.1,14.5,14.9,14.5,15,14.8,15.2,14.1,15.1,13.7,14,15.3,14.1,15.2],"script":[1.6,1.5,1.2,1.4,1.4,1.1,1.1,2,0.9,1.1,1,1,1.5,1.5,1.8],"paint":[11.9,12,12.5,12.2,12.1,13.1,12.8,12.3,13,13.1,12.1,11.9,12.7,10.8,12.4]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.9,10.9,11.2,11,11,11,11.1,11,10.5,11,11.3,10.9,11.2,11.1,11],"script":[0.6,1,0.8,0.9,0.7,0.7,0.9,0.8,0.7,0.7,0.9,0.9,0.8,0.7,0.7],"paint":[9.1,9,9.8,9.4,9.7,9.5,9.7,9.7,9.2,9.4,9.8,9.4,9.7,9.4,9.7]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"07_create10k","values":{"total":[386.1,385.8,387.5,389.2,386,384.6,380.5,390.1,394.4,391,388.2,387.1,390.6,389.5,386.6],"script":[159.7,155.8,160.3,162.6,159.4,159.8,156.7,165.1,167,166.5,161.1,161.7,164.8,162.9,161.6],"paint":[219.1,222.6,220,219.1,219.2,217.5,216.5,218,220.1,217.1,219.8,218,218.5,219.4,217.5]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.3,33,32.2,31.9,32.1,32.6,32.7,32,32.8,32.3,33.7,32,32.5,31.9,32.4],"script":[6.1,6.3,6,6.1,6.1,6.2,6.3,6,6.2,6.3,6.5,6,6.2,5.9,6.1],"paint":[25.3,25.8,25.3,24.9,25.1,25.5,25.5,25.1,25.7,25.2,26.2,25.1,25.3,25.1,25.3]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.5,11.4,11.7,11.8,11.5,11.8,11.6,11.5,11.6,11.7,11.6,11.7,11.5,11.5],"script":[9.7,9.1,9.7,9.5,9.8,9.4,9.3,9.3,9.5,9.2,10.3,9.4,9.8,9.7,9.4],"paint":[0.3,1,0.3,0.5,1.2,0.3,1.4,1.2,1,1.6,0.3,1.4,0.3,1,1.2]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5910587310791016]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.774592399597168]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8070411682128906]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7926521301269531]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.37877082824707]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.8]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6]}},{"framework":"rvjs-v0.3.31-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[29.4,27.9,26.6,27,27.5,27.5,27.3,26.5,27.1,27.5,29.4,29.3,27.1,27,27],"script":[6.5,6,6.1,6.1,6.1,6.2,6.1,5.7,6.1,6.4,6.4,6.6,6.2,6.2,6.1],"paint":[22.3,21.3,20,20.4,20.9,20.9,20.4,20.3,20.5,20.6,22.4,22.1,20.3,20.2,20.3]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[34.2,34.9,34.9,34.1,34.4,34.2,35,34,34.8,34.9,34.3,34.3,35.1,34.7,34.1],"script":[10.1,10.4,10.4,10.2,10.4,10.2,10.4,10.2,10.4,10.4,10.2,10.1,10.5,10.3,9.9],"paint":[23.5,23.9,23.9,23.2,23.5,23.4,24,23.2,23.9,23.9,23.5,23.6,23.9,23.8,23.5]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,11.9,12.3,12.2,11.7,11.4,12,11.7,11.5,11.7,12.7,12.1,11.5,12.2,11.8],"script":[1.1,1.1,0.9,0.6,0.3,1.1,1.5,1,1.3,1.2,1.1,1,0.6,1.4,1.7],"paint":[9.2,9.5,10.4,10.5,10.7,9.3,9.2,9.3,8.8,9.2,10.8,10.5,9.9,9.9,8.9]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.1,2.2,2.3,2.2,2.5,2.7,2.2,2.4,2.6,2.2,2.2,1.9,3.3,2.2,2.5,2.8,1.8,2.6,2.2,2,2.5,2,2.4,2.5],"script":[0,0,0,0,0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.1,0,0],"paint":[1.3,1.6,1.8,1.1,1.3,1.5,1.9,1.3,2.2,1.5,1.7,1.9,1.1,2.2,2,2.3,1.7,1.1,1.5,2,1.2,2.1,1.8,1.9,1.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[13,13.9,13.1,13.5,13.5,13.9,13,12.8,13.4,14.9,13.1,13,13.6,13.6,13.6],"script":[0.3,0.6,0.4,0.4,0.1,0.1,0.1,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1],"paint":[11.1,11.8,11.3,11.8,11.9,11.6,12,10.8,11.7,12.9,11.7,11.3,12.2,11.3,12.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.5,10.7,10.4,10.3,10.3,10.8,10.8,10.2,10.8,10.4,10.5,10.7,10.6,10.2],"script":[0.2,0.1,0.1,0.1,0.1,0.3,0.3,0.4,0.3,0.1,0.1,0.1,0.1,0.2,0.3],"paint":[9.6,9.9,10,9.4,9.4,9,10,9.7,8.7,10.1,9.3,9.6,10.2,9.6,9.1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[308.4,307.6,308.1,308.4,308.9,310.4,308.3,309.2,308.2,307.5,312.1,307.2,309.2,311.3,307.6],"script":[78.6,77.7,77.5,77.1,77.9,77.8,77.4,76.9,76.6,77,76.9,77.6,77.8,78.5,76.9],"paint":[222.3,222.3,222.6,223.3,223.4,224.6,223.4,224.6,223.9,222.8,225.9,221.8,223.7,225.1,223]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.8,34.1,33.8,34.6,34.8,35.2,34.1,34.1,35.3,34.2,34.3,34.9,33.7,34.7,34],"script":[8.2,7.5,7.5,7.5,7.9,8,7.6,7.9,7.9,7.6,7.7,8,7.5,7.6,7.4],"paint":[26.6,25.8,25.4,26.1,26,26.1,25.5,25.3,26.4,25.6,25.6,25.9,25.3,26.1,25.7]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.3,13.2,14.5,14.7,14.7,13.9,14.3,16.2,13.9,14,14,13.9,13.7,14,15],"script":[12.5,11.8,12.3,12.7,12.3,11.5,12.2,14.2,12.3,12.5,12.6,12.3,11.6,12.3,12.8],"paint":[1.5,1.2,1.9,0.3,1.1,1,1.2,0.9,0.8,0.6,0.3,0.6,0.9,1.1,1]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6574440002441406]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.385408401489258]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.455307960510254]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.129979133605957]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.829203605651855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.9,28.8,28.4,28.1,28.2,28.6,28.3,28.5,27.9,28.5,28.6,28.8,29,28.5,28.5],"script":[7.5,7,7.3,7.1,7.1,7.1,7.2,7.2,7.1,7.2,7.1,7.2,7.3,7,7.3],"paint":[21.9,21.2,20.6,20.4,20.6,20.9,20.6,20.7,20.3,20.7,20.9,21.1,21.1,20.9,20.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[34.9,34.6,34.2,34.6,35.4,34.8,34.6,34.6,34.3,34.8,35.7,35,34.7,34.8,35.5],"script":[11.2,11.2,11,11.1,11.5,11.3,11.2,11,10.9,11.2,11.7,11.3,11,11.1,11.4],"paint":[23.1,22.8,22.6,22.9,23.3,22.9,22.8,23,22.8,22.9,23.4,23.1,23.1,23.1,23.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14,12.6,12.8,13.5,13.3,13.5,13.6,13.9,13.2,13,12.7,14.4,13.3,14.8,13.3],"script":[2.9,2.4,2.5,1.8,2.3,2.4,2.5,2.4,2.5,2,1.7,2.9,2.5,2.6,2.3],"paint":[10,8.9,9.5,9.5,9.3,9.9,9.9,9.3,9.3,9.2,9.4,10.3,9.4,10.7,9.9]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.7,3.9,2.8,2.9,2.9,3.1,2.7,3.6,3.7,3.8,3.3,3.4,3.4,3.8,3.3,2.8,3.4,3.7,3.7,3.3,3.8,3.7,3.7,3.5,3.6],"script":[1.2,1.2,0.6,1.1,1,1.3,0.9,1.3,1.3,1.9,0.7,1.4,0.8,1.4,0.6,0.7,1.7,1.3,1.2,1.1,1.4,1.1,1.3,1.1,1.2],"paint":[1.6,1.8,1.9,1.2,1.1,1.7,1,2.1,2.1,1,2.5,1.9,1.2,2.3,2,1.9,1.6,2.3,1.6,1.7,1.6,2.4,1.7,2.3,1.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15,14.8,15,14.5,16.9,14.7,15.4,14.4,15.4,16,15.2,15.3,14.7,14.3,15.5],"script":[2.1,1.4,1.2,1.1,1.7,1.8,2.1,1,2,1.9,1.7,1,1.2,1,1.4],"paint":[11.9,12.2,12.6,12.6,12.4,11.7,12.2,12.4,12.1,12.8,12.1,12.6,12.3,11.8,13]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,10.9,11.3,10.6,10.9,10.9,10.8,11.6,10.9,10.6,11,11.9,10.8,10.9,10.7],"script":[0.3,0.5,0.3,0.3,0.5,0.5,0.5,0.3,0.2,0.2,0.4,0.5,0.4,0.5,0.3],"paint":[9.8,9.5,10.5,10,9.8,9.8,9.6,10.1,10.4,9.4,9.8,10.6,9.9,9.7,9.7]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[307.3,304.8,306.2,304.7,305.1,306.3,305.7,306.9,306.3,307.4,305.4,307,306.8,305.2,306.5],"script":[76.8,75.2,76.1,76.5,76.2,75.6,76.3,75.5,75.6,76.1,75.6,76.1,76.6,75.7,75.5],"paint":[222.5,222.1,222.7,220.9,221.7,223.5,222.1,224.1,223.3,223.9,222.4,223.6,222.8,222.2,223.6]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.3,34.4,35.6,33.8,34.4,35,34.4,34.1,34.8,34.9,34.2,34.3,34.6,34.6,34.7],"script":[7.8,7.8,7.8,7.8,7.8,8.2,7.9,7.7,7.9,8.1,7.8,7.8,7.8,7.8,8.1],"paint":[25.5,25.5,26.7,25.1,25.5,25.8,25.6,25.4,25.8,25.7,25.4,25.6,25.8,25.8,25.5]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.8,15.4,14.6,14.6,15.9,15.5,15,14.7,16.1,15.6,14.9,15.3,15.5,15.6,14.6],"script":[12.9,13,12.6,12.9,13.4,13.3,13,12.9,14.1,13.4,13,13.1,13.4,13.7,12.5],"paint":[1,0.9,1.8,1.1,2.3,0.7,0.6,1.2,1.8,0.7,1.1,1.2,1.1,0.2,1.1]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9395198822021484]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.9357757568359375]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.038897514343262]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1217546463012695]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.63993453979492]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[81.4]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20]}},{"framework":"san-composition-v3.15.1 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"01_run1k","values":{"total":[32.3,29.6,37.4,31.7,31.9,32.2,31.5,34.7,33.3,38.7,31.4,30.9,30.9,32.6,35.2],"script":[5,5.5,4.9,5.4,5.5,5.6,5.3,5.5,5.3,5.2,5.4,5.4,5.2,5.5,5.3],"paint":[21.3,21.9,20.7,22,21.4,21.8,21.6,21.7,21.4,21.1,21.6,21.7,21.5,21.8,21.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"02_replace1k","values":{"total":[33.5,33,32.6,32.2,31.5,34.7,38.9,32,32.2,32.1,32.7,37,36.5,31.1,33.1],"script":[8.3,8.3,8.2,8.5,8.3,8.3,8.3,8.2,8.5,8.2,8.4,8.4,8.3,8,8.2],"paint":[22.7,21.8,22.2,22.7,22.2,22,21.8,22.6,22.4,22.4,22.3,22,22.5,22.6,22.3]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.8,31.3,31.6,16.2,31.5,33.7,31.7,34,32.5,30.3,31,30.8,31.9,32.9,31.4],"script":[2.9,2.6,3.1,2.5,3.8,2.8,2.8,3,3.3,2.6,3.3,2.9,2.8,3.8,2.7],"paint":[11.1,12.6,13,13.1,12.4,13,11.8,11.7,14,12.8,12.5,12.2,11.6,12.6,13.8]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"04_select1k","values":{"total":[5.8,14.5,13.2,9.4,10.8,13.2,15.8,7.3,13.8,8.3,7.7,8.9,8.4,11.4,16,12.1,11.1,6.5,15.3,7.6,13.6,9.6,14.3,11.7,12.5],"script":[1.6,2.3,2.6,2,2.5,2.5,1.8,2.9,1.6,0.9,2.7,2.9,2.4,2.3,2.3,1.8,2.6,1,1.1,1.6,2.1,2.7,2.4,1.9,1.8],"paint":[1.3,2.5,3.6,4.3,2.7,3.7,3.2,3.2,2.4,2.5,2.6,3,3.3,3.2,3,3,2.8,1.9,3.3,1.7,3.6,3.6,2.3,2.9,2.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"05_swap1k","values":{"total":[35.5,33.9,32.1,15.6,32.5,33.7,34.8,32.7,36.4,32.4,32.1,33.7,35.9,33.7,33.6],"script":[0.9,0.8,1.3,1.8,1.9,1.1,1.6,2.1,1.6,1.4,1.1,1.1,2.3,1.1,2.3],"paint":[16,14.5,14.9,12.9,13.7,16.5,14.5,14.1,15.3,15.5,14.8,13.6,15.1,16.5,15]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.5,15.8,12.6,12.8,17,12.8,13.9,13.3,15.7,15.2,17.7,12.8,12.9,12.9,17],"script":[0.7,0.8,0.9,1.1,1.1,1,1.1,0.9,1,1,1,0.9,0.9,1.1,1.1],"paint":[10.7,11.5,10.4,10.6,11.3,10.3,10.6,11.6,10.6,11.4,11,10.9,10.7,10.8,11.6]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"07_create10k","values":{"total":[272.5,275,272.3,277.6,270.8,271.6,273.1,272.5,275,273.1,271.1,271.5,282.1,270.8,272.2],"script":[49.4,50.5,50.5,49.7,49.8,49.9,50.6,49.8,51.2,49.7,49.6,49.3,50,49.6,50.1],"paint":[219,220.7,218,220.4,217.2,217.9,218.6,218.9,220,219.6,217.9,218.4,221.9,217.2,217.2]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.9,40.7,37,37.7,38.3,36.9,38.8,37.1,39.1,37.9,38.4,37.4,41.4,36.4,37.2],"script":[5.2,5.2,5.2,5.3,5.4,5.2,5.2,5.3,5.1,5.2,5.3,5.3,5.2,5.2,5.2],"paint":[25.4,25.2,25.6,25.8,25.6,26.1,25.6,25.9,25.3,25.5,25.7,25.5,25.4,25.5,25.7]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[38.3,13.7,17.4,39.3,37.6,38.6,15.4,15.3,37.7,38.5,14.1,36.6,36.6,35.1,14.9],"script":[13.4,9.8,13.7,13.7,11.9,13.1,12,12.4,11.3,13.8,10.9,11.1,11,10.8,11.6],"paint":[2.2,2.3,2.5,1.6,2.9,1.9,2.1,1.4,1.4,2,2.4,3.1,3.3,2.5,1.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9853076934814453]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6016159057617188]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7511987686157227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1792144775390625]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.860132217407227]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[92.5]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[23]}},{"framework":"san-store-v3.15.1 + 2.2.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[103.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"01_run1k","values":{"total":[54.4,54.2,54.8,54,54.2,55,54.4,55.1,54.5,54.2,54.9,54.4,54.9,55.1,54.8],"script":[30.1,29.7,30,29.4,30,30.2,29.9,30.6,30.1,30.1,30.5,29.9,30.3,30.3,30.3],"paint":[23.8,24,24.3,24.2,23.7,24.3,24,24.1,23.9,23.6,24,24,24.1,24.3,24.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"02_replace1k","values":{"total":[68.6,68.2,68.4,68.4,68.1,68.3,68.7,69.2,68.5,68.2,68.6,67.9,67.9,67.6,67.8],"script":[44.9,44.7,44.9,44.7,44.4,44.6,45,45.5,45,44.6,44.9,44.7,44.5,44.3,44.3],"paint":[23.2,23,23,23.2,23.2,23.1,23.2,23.3,23,23,23.2,22.7,23,22.8,23.1]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[41.3,40.2,40.7,41.2,41.4,41.2,40.4,41.8,42.3,42.2,41.4,39.7,40.5,41.2,42.3],"script":[27.6,27.4,27.7,28.1,28.3,27.9,27.3,28.7,29.5,29.4,28.9,27.7,27.4,27.8,29.1],"paint":[11.7,11.8,11.7,11.1,11.7,11.4,12.2,11.8,11.8,11.3,11.2,11,11.6,12.7,12]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"04_select1k","values":{"total":[28.8,28.7,28.5,28.5,29.4,28.6,29,28.7,29.2,29.7,28.7,28.3,28.2,28.9,29.1,29.9,28.6,28.3,30,30.3,28.8,29.6,29.2,30.8,28.4],"script":[26.4,26.3,25,25.2,26.3,25.8,26.2,26.3,25.6,27.1,26.2,26,26,26.3,26.6,26.7,26.1,26.1,27.2,26.8,25.9,27,27.2,27.5,25.9],"paint":[1.5,2,2.6,3.1,2.1,1.9,2,1.4,3.1,1.5,1.4,1.8,1.2,2.5,1.4,1.3,1.7,1.3,2,2.6,1.6,1.6,0.8,1.7,1.7]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"05_swap1k","values":{"total":[66.1,68.6,66.2,68.3,68.1,71.3,68,68.6,67.8,69,67.4,68.5,67.7,70.7,68.6],"script":[49.8,52.7,51.3,52.6,52.8,53.4,51.6,51.9,51.5,53.1,51.4,51.4,51.7,53.8,52.5],"paint":[15,14.7,13.1,14.6,13.4,16.6,15.5,16.1,14.6,14.8,14.9,15.6,14.2,15.3,14.9]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.7,23.8,23.1,23.4,22.8,23.2,23.7,23.9,23.3,23.7,24.5,23.8,23.6,23.9,24],"script":[12.5,12.5,12.2,12.5,12.2,12.4,12.5,12.6,11.9,12.8,12.9,12.5,12.7,12.7,12.5],"paint":[10.6,10.8,10,10.3,10.2,10.2,10.3,10.6,10.8,10,10.8,10.7,10.1,10.3,10.8]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"07_create10k","values":{"total":[1113.2,1213.1,1210.3,893.2,1479.9,1118,1015.1,911,1001.4,930.6,1157.4,870.9,1030.1,862.7,1194.5],"script":[857.3,954,954.4,636.4,1224,860.6,756.2,652.8,741.2,673.3,899.2,609.8,770.2,606,933],"paint":[247.7,250.5,247.7,248.8,247.9,249.1,250.4,250,251.7,249.2,249.7,252.2,251.6,248.6,252.5]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.8,69,69.2,69.4,68.6,69.5,69.9,69.9,68.6,68.4,69.6,69.3,68.6,68.9,69],"script":[38.3,38.2,38.3,38.8,38.3,38.7,39,38.9,38.1,37.9,38.9,38.4,38.1,38.5,38.5],"paint":[29.5,29.8,29.8,29.6,29.3,29.8,29.9,29.9,29.6,29.5,29.7,29.9,29.5,29.4,29.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.7,25,26.4,24.9,25,25.4,25.2,26.6,24.8,25.2,25.3,24.7,25.5,25,25],"script":[24.3,23.5,24.9,23.8,23.5,24.5,23.9,24.7,23.3,23.5,24,23.8,24.2,24,24],"paint":[1.4,1.4,1.4,1,0.6,0.4,0.6,1.8,1.3,1.6,0.3,0.3,1,0.9,0.3]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7814769744873047]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.416145324707031]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.174476623535156]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[23.362300872802734]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.52154159545898]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[277.6]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[81]}},{"framework":"sauron-v0.61.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[387.8]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"01_run1k","values":{"total":[26.8,26.6,27.5,26.8,26.7,26.8,26.7,27.4,26.5,26.6,27.2,27.4,26.9,26.7,27.7],"script":[4.7,4.6,5.3,4.6,4.6,4.7,4.6,4.9,4.6,4.6,4.7,4.6,4.7,4.6,4.8],"paint":[21.7,21.6,21.6,21.9,21.8,21.8,21.7,22.2,21.5,21.6,22.1,22.4,21.8,21.7,22.5]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[30.3,31.2,30.3,30.7,30.3,30.6,30.3,30.8,30.8,30.7,30.7,31.4,30.3,30.2,30.7],"script":[7.2,7.1,7.2,7,7.1,7.4,7.1,7.1,7.2,7,7.2,7.9,7.1,7.1,7.2],"paint":[22.5,23.6,22.6,23.1,22.6,22.6,22.6,23.1,23.1,23.1,22.9,22.9,22.7,22.5,22.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,12.6,12.2,12.1,11.9,13,11.8,12.1,12.1,12.6,12.5,11.7,12.5,12.4,12.1],"script":[2,2.3,1.9,1.8,1.5,2.4,1.8,2.2,1.4,1.9,1.8,1.6,2.1,2,1.8],"paint":[8.6,9.4,9.3,9.4,9.4,9.4,8.9,8.4,9.3,8.2,9.4,9.2,9.2,9.1,8.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"04_select1k","values":{"total":[4,4.2,3.4,4,4.7,4,3.6,3.8,3.3,3.6,3.3,3.6,4.1,4,4.1,3.7,3.2,4.7,3.6,4.2,3.8,4,3.4,3.7,3.6],"script":[1.5,2.3,1.5,1.3,2.2,2,2.1,1.3,1.2,1.6,0.9,1.8,1.8,2.1,1.7,1.5,1.6,2.2,1.1,2,1.4,2.1,1.2,1.4,1.7],"paint":[1.5,1.8,1,2.5,1.5,1.8,1,2.3,1.2,1.9,1.2,1.7,2.2,1.3,2.3,1.3,1.5,2.4,1.7,2.1,2.2,1.5,1.3,2,1]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,13.9,14.2,14,14,15.9,14.3,14.1,14.9,14.8,13.6,14.7,14.7,15.2,14.2],"script":[2,1.5,1.4,1.5,1.9,1.8,1.9,2.2,2.2,2.2,1.3,2.1,1.4,1.5,1.7],"paint":[12.2,11.3,11.6,11.5,10,12.9,11.2,10.9,11.7,11.6,10.8,12,12.4,12.1,10.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.4,11.3,11.1,11.4,11.3,11.1,11.1,11.5,11.3,11.3,11.4,11.5,11.3,11.1,11],"script":[1.2,1.2,1,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.1],"paint":[9.6,9.8,9.6,9.4,9.4,9.6,9.6,9.8,9.3,9.6,9.7,9.8,9.5,9.4,9.6]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"07_create10k","values":{"total":[279.1,281.2,280.8,281.5,279.6,279,281.8,281.6,279.4,280.7,281.3,279.8,278.9,278.3,278.8],"script":[45.5,44.8,45.4,44.7,44.7,44.7,45.1,45,45.2,45.3,45.3,44.2,44.2,44.9,45],"paint":[226.2,228.8,228,229,227.7,227,229.5,229.3,227,228.1,228.7,228.4,227.5,226.2,226.7]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.4,31.6,31.9,31.9,31.8,32.3,31.7,32.3,33.2,31.9,31.8,32.1,31.6,31.7,32.9],"script":[5,4.6,4.9,4.8,4.7,5,4.6,5.1,4.7,5,4.9,5.1,4.7,5.1,5],"paint":[26.4,26.2,26.2,26.3,26.4,26.6,26.3,26.3,27.7,26.1,26.1,26.1,26.1,25.7,27]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,11.5,11.6,12.2,11.6,12.4,12.5,11.8,12,11.5,15.7,12.1,11.7,11.7,11.2],"script":[9.8,9.2,9.5,9.6,10,10.1,9.8,9.7,9.8,10,13.6,10.3,10.1,9.9,9.9],"paint":[1.8,1.1,1,1.9,0.2,1.4,1.4,0.8,1.1,0.9,1.5,0.6,1,1.1,0.4]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7412614822387695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7790632247924805]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.760500907897949]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5021257400512695]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.268141746520996]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[173.9]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3]}},{"framework":"silkenweb-v0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[27,26.6,26.7,26.3,26,26.2,26.3,26.8,27.1,26.8,26.2,26.6,26.8,26.8,26.5],"script":[4.5,4.3,4.4,4,4,4,4,4.3,4.5,4.5,4.3,4.1,4.4,4.5,4.1],"paint":[22.2,21.8,21.9,21.9,21.6,21.8,21.9,22.1,22.3,21.9,21.5,22.1,22,21.9,21.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[29.4,29.8,29.6,29.8,29.9,29.8,29.5,29.8,29.4,29.7,29.7,30,29.5,29.4,30],"script":[6,6.2,6.3,6.6,6.2,6.2,6.2,6.2,6.1,6.3,6.2,6.3,6.1,5.9,6.3],"paint":[22.7,23,22.8,22.6,23.2,22.9,22.8,22.9,22.7,22.8,22.9,23.2,22.8,22.9,23.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.4,10.8,10.7,10.5,11.5,10.9,10.9,11.5,10.7,11.1,11.2,10.7,10.2,11,10.9],"script":[1.3,0.2,0.9,0.8,1.2,0.9,0.8,0.9,1.2,0.9,1.2,0.5,0.2,0.7,0.8],"paint":[9.3,9.5,8.6,8.1,8.9,9,8.9,9.4,7.8,9,8.9,9,8.6,9,9.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[4.8,1.9,2.5,2.2,2.1,2.4,2.4,1.9,2.7,2.3,1.7,2.2,2.3,2.4,2.1,2.1,2.1,2.4,2.4,1.9,2.1,2.1,2.2,2.3,2.6],"script":[0,0,0,0,0.4,0.9,0.1,0,0,0.4,0,0,0.4,0,0.5,0,0,0.7,0.4,0,0,0,0,0,0],"paint":[2,1.1,2.3,1.7,1.6,1.4,1.6,1.8,2.1,1.1,1.3,2,1.7,1.7,1.5,1.6,1,1.5,1.9,1.3,2,1.5,0.9,1.5,2.1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[14.9,15.3,14.9,15.5,15.9,14.6,15.9,13.9,14.5,16.8,14.8,15,16,13.8,14.1],"script":[1.9,2.7,1.9,2.4,2,1.5,2.2,0.9,1.7,2.7,1.5,1.6,1.5,1.7,1.4],"paint":[11.2,11.3,11.6,11.9,13,11.6,12.3,11.4,11.2,12.6,11.8,12.1,13.2,10.6,11.5]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.7,10.3,10.4,10.8,11.5,10.4,10.5,10.4,10.4,10.5,10.4,10.9,10.2,10.4],"script":[0.3,0.3,0.4,0.1,0.5,0.1,0.3,0.3,0.3,0.2,0.3,0.5,0.5,0.3,0.1],"paint":[9.8,9.6,9.3,9.3,9.7,10.6,9.6,9.7,9.6,9.5,9.4,9.6,9.2,8.7,9.3]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[281.1,281.6,283.7,281.4,282.7,283.4,284.1,283.6,283.6,280.5,283.7,280.3,282.2,283.2,284],"script":[48.9,49.3,49.3,48.6,49.3,49.6,49.7,49,49.2,48.8,49.9,48.6,49.3,50,49.6],"paint":[224.2,224.6,226.6,224.8,225.8,226.2,226.7,226.3,226.7,224.1,226.1,224.1,225.2,225.6,226.6]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.4,31,31.6,31.3,31.8,32,31.3,31.8,31.4,31.7,32.3,31.8,31.6,31.5,31.1],"script":[4.4,4.3,4.5,4.4,4.4,4.4,4.4,4.3,4.3,4.2,4.5,4.4,4.5,4.5,4.4],"paint":[26.2,25.9,26.3,26.1,26.6,26.7,26.1,26.6,26.3,26.6,27,26.6,26.3,26.2,25.9]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.5,9.8,10.5,9.8,10.3,10,10.9,9.3,9.5,10.1,10.4,9.7,9.5,9.7,9.9],"script":[7.9,7.6,8.2,8.4,8.1,8.1,8.2,7.5,8.1,7.9,8.1,7.6,7.3,7.7,7.9],"paint":[0.8,0.5,0.9,0.3,0.7,0.9,1.5,1.6,1.2,1.4,0.6,1.3,1.9,0.6,1]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5612955093383789]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.735288619995117]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.747185707092285]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7335424423217773]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.432353019714355]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[38.1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[38.1,37.9,38.8,38.6,37.7,37.9,37.5,38.2,38.1,37.8,37.9,37.9,38.4,37.6,38.5],"script":[14.8,15,15.6,14.8,14.4,14.6,14.6,14.8,14.7,14.7,14.5,15,15.1,14.6,15.4],"paint":[22.7,22.3,22.6,23.2,22.7,22.7,22.3,22.8,22.9,22.5,22.8,22.4,22.8,22.5,22.5]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[41.8,41.9,41.5,41.3,41.9,41.3,41,41.9,42.1,41.3,41.2,42.5,42.1,42,42],"script":[18.6,19.2,18.6,18.4,18.7,18.6,18.1,18.8,18.7,18.2,18.5,18.9,18.9,18.7,18.8],"paint":[22.7,22.2,22.4,22.3,22.6,22.2,22.4,22.5,22.8,22.5,22.1,23.1,22.6,22.6,22.6]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.3,19.8,18.6,20,19.8,18.3,19.2,19.2,18.7,18.3,19.8,19.4,19,19.5,22.1],"script":[7.5,6.9,7.3,7.9,7.6,6.7,7.4,6.5,7.1,6.2,8.2,7.2,6.5,7.1,7.6],"paint":[11,10.8,9.3,10.3,10.9,9.1,9,10.9,9.5,9.9,9.1,10.1,10,10.3,11.9]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[4.4,5.3,4.5,4.9,4.8,4.8,5.7,5.3,4.5,4.3,5.2,5.2,4.5,5.2,5.5,4.7,5,5.4,4.4,4.6,5.1,4.6,5.6,4.6,4.6],"script":[2.1,2.5,2.5,2.7,2.1,2.1,2.2,2.5,2.3,2.1,2.9,2.6,2.4,2.4,2.7,2.2,2.7,3,1.8,2.2,2.3,1.7,2.9,2.3,2.4],"paint":[1.4,1.6,1.1,1.5,2,1.8,2.5,1.9,1.3,1.1,1.6,1.7,1.6,1.8,1.8,1.7,1.2,2.1,1.3,1.5,1.8,1.1,1.7,1.3,1.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[16.5,16.5,16.2,15.6,15.5,16.6,16.5,16.3,15.3,16.8,16.4,15.9,16.7,16.4,15.8],"script":[1.9,2.2,2.5,2,2.1,3.1,1.9,2.7,1.9,2.3,2.5,1.9,3.1,2.7,1.6],"paint":[12.3,12.7,12.7,12,11.1,11.9,13.6,12.2,12,12.4,12.8,12.5,11.9,11.8,12.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,12,11.5,12.2,12.6,11.6,12.2,12.4,12,12,12.1,11.6,12,12.1,12.3],"script":[1.2,1.2,1.1,1.2,1.2,1.1,1.2,1.2,1.2,1.1,1,1.1,1.2,1.2,1.2],"paint":[10,10.2,9.8,10.2,10.7,9.9,10.4,10.7,10.4,9.7,10.6,10,10.3,10.3,10]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[382,379,385,380.5,380.9,377.9,379.6,382.1,384.2,381.6,383.9,383.7,380.7,381.8,381.8],"script":[144.3,141.9,146,141.4,141.7,140.8,142.7,143.1,142.6,139.9,144.6,142,142.7,142.8,144.3],"paint":[229.6,229,230.9,231.1,230.6,228.9,228.9,230.8,233.2,233.6,231.3,233.4,229.9,230.9,229.4]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.6,44,42.3,43.1,43.1,42.7,43,43.3,43,43.1,42.6,42.3,42.9,42.6,42.8],"script":[14.6,14.9,15,15.1,15.3,14.4,14.8,14.8,14.7,15.2,14.9,14.5,14.9,14.7,14.9],"paint":[26.9,28,26.3,27,26.7,27.2,27.2,27.4,27.2,26.8,26.7,26.8,27,26.9,27]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,9.9,10.4,11.2,10.7,10.8,9.7,10.1,10.1,10.4,9.8,10.6,10.4,9.9,10],"script":[8.6,7.8,8,8.8,8.7,8.4,8.4,8.4,8.3,8.5,8.4,8.5,8.6,7.9,8],"paint":[0.7,1,2.1,1.3,0.8,1,0.2,1.1,1.1,1,0.4,1,0.3,0.8,1]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5302305221557617]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.499418258666992]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5315399169921875]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3600616455078125]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.992497444152832]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"skruv-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41]}},{"framework":"solid-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[24,24,24.1,23.8,23.9,24.1,24.1,24.2,23.9,24,24.1,24.3,23.8,24.1,24],"script":[2.5,2.5,2.5,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.6,2.5,2.5,2.4],"paint":[21.1,21.2,21.2,21,21.1,21.3,21.2,21.3,21.1,21.2,21.2,21.3,21,21.2,21.2]}},{"framework":"solid-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[27.4,27.8,27.6,27.9,28.1,28.1,28.5,27.8,27.5,27.9,28,28.1,27.5,27.8,27.4],"script":[5,5.1,5.1,5.2,5.1,5.3,5.1,5.3,5,5,5.1,5.1,5,5,5],"paint":[22,22.2,21.9,22.2,22.5,22.3,22.9,21.9,21.9,22.3,22.3,22.4,21.9,22.2,22]}},{"framework":"solid-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,10.7,11.3,10.8,10.9,11.4,11.1,11.5,10.9,11,10.8,10.3,11.1,10.5,9.8],"script":[1.2,1,0.9,0.9,0.7,0.9,1.2,1.4,1.2,1.4,1.1,0.2,0.9,0.2,0.8],"paint":[8.3,8.2,9,8.8,8.9,9.7,9.1,9,8.5,8.4,8.8,8.4,9.4,9.1,8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.1,2.7,2.5,2,2.7,2.4,2.2,2.3,3.2,3,2.7,3,2.4,2.6,2.5,2.5,2.5,2,3.6,2.8,3.1,2.6,2.6,2.5],"script":[0.1,0.1,0.1,0.1,0.1,0.8,0.3,0.1,0.1,0.7,0.6,0.5,1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.6,0.1],"paint":[2.3,1,2.5,0.8,1.1,1.1,1.6,1.5,1.3,2.3,2,0.6,1.8,1.3,1.5,1.5,1,1.5,1.1,2.1,2.6,1.4,1.8,1.5,1.9]}},{"framework":"solid-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[14.3,13.9,13.6,13.7,13.8,13.9,13.6,14.4,14.6,14.2,14.2,14,14.1,14.6,13.6],"script":[1.3,1.4,0.9,1.2,0.6,0.7,0.7,2,1,1,1.3,1.6,1.1,1.5,1],"paint":[12,10.8,12,10.6,12.3,12.1,11.9,11,12.6,11.9,11.9,11.1,12,11.9,12.3]}},{"framework":"solid-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.6,10.8,10.2,10.9,10.6,11.2,11,11.3,10.4,10.8,10.5,10.7,10.5,10.7],"script":[0.6,0.5,0.6,0.3,0.6,0.3,0.6,0.6,0.6,0.2,0.6,0.6,0.5,0.4,0.6],"paint":[9.8,9.6,9.8,9,9.7,9.6,10.3,9.9,10,9.4,9.4,9.3,9.6,9.2,9.6]}},{"framework":"solid-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[256.7,259.5,259.5,258.2,257.8,258.5,260,257.8,257.8,258.8,257.9,257.5,259.7,259.1,258.8],"script":[28.6,29,29,28.8,28,28.5,28.8,28.5,29.7,28.6,28.4,28.3,28.9,28.5,28.8],"paint":[221,223.2,223.4,222.4,222.6,222.7,224,222.3,221.1,223,222.2,221.9,222.8,223.5,222.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.2,29.6,28.9,28.8,29.1,29.5,29.1,29.9,28.7,29,29.9,29.2,30.5,28.9,29.6],"script":[3.2,2.9,2.9,3,3,3,3,3.1,3,2.9,3.1,3,3,3,3.1],"paint":[25.1,25.9,25.2,25,25.3,25.6,25.4,26.1,24.9,25.3,26,25.5,26.7,25.3,25.8]}},{"framework":"solid-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.8,10.2,11.7,11.9,11.5,10.5,11.8,11,12.6,12.6,11.3,12.7,12.7,12.5,12.7],"script":[10.7,8.2,9.9,10.6,9.3,8.5,10,9.2,10.8,9.9,9.4,10.8,10.5,10.6,11.2],"paint":[0.9,1.5,0.9,0.2,0.7,1,1,0.9,0.9,2.1,1.7,0.8,1.3,0.6,0.7]}},{"framework":"solid-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49466705322265625]}},{"framework":"solid-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.737293243408203]}},{"framework":"solid-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.773000717163086]}},{"framework":"solid-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7350578308105469]}},{"framework":"solid-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.0738468170166]}},{"framework":"solid-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5]}},{"framework":"solid-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.3]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"01_run1k","values":{"total":[26.6,25.8,26.2,27.1,25.7,26.3,25.7,25.4,26.4,25.4,26.2,25.4,26.4,25.4,25.4],"script":[4.4,4.1,4.3,4.5,3.9,4.3,3.6,3.6,4.3,3.5,4.2,3.5,4.3,3.6,3.5],"paint":[21.8,21.3,21.6,22.3,21.3,21.6,21.7,21.5,21.7,21.5,21.6,21.5,21.7,21.5,21.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"02_replace1k","values":{"total":[30.1,29.3,29.3,29.4,29.5,29.6,30,29.4,30.6,29.2,30,29.1,29.9,29.4,29.8],"script":[6.8,6.5,6.7,6.8,6.6,6.5,6.8,6.7,6.8,6.5,6.6,6.6,6.9,6.5,6.5],"paint":[22.7,22.2,22,22.1,22.3,22.6,22.7,22.1,23.2,22.2,22.8,22,22.5,22.3,22.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.4,10.5,11.2,11.7,10.6,11.4,10.7,11.7,11.1,12.4,10.4,11.3,11.5,10.7,10.9],"script":[1.1,0.9,1,1.5,1.2,1.1,1.4,1.2,1.1,1.6,0.7,1.3,1.6,1.1,1.2],"paint":[8.2,8.2,9.3,9.3,8.4,7.9,8.1,9.4,8.5,9.8,8.8,8.9,9,8.9,8.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"04_select1k","values":{"total":[4.5,2.4,1.9,2.9,2.2,2.2,2.5,2.8,3.1,2.6,2.7,2.6,2.4,2.5,2.4,2.9,3.1,2.7,3.1,2.7,2.8,2.2,2.7,1.9,2.6],"script":[0.1,0.5,0.1,0.9,0.5,0.5,0.1,0.4,0.8,0.6,0.5,0.5,0.6,0.1,0.6,0.9,0.8,0.5,0.8,0.5,0.8,0.1,0.7,0.1,0.2],"paint":[2.6,1.8,1,0.8,1.6,1.6,1.5,2.3,0.7,1.4,1.4,1.4,1.3,2,1.2,1.4,1.5,2.1,2.2,2.1,1.2,1.1,1.8,1.7,1.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"05_swap1k","values":{"total":[16,15,15.1,16.5,15.3,18.1,14.9,16,15,16.5,15.2,15,16.1,14.3,14.5],"script":[2.2,2.3,2.1,2.2,2.1,2.3,2,2.8,1.9,2.4,2.4,2.5,2.5,1.5,2.1],"paint":[12.5,11.8,11.9,13.4,12.5,14.6,10.8,12.5,11.9,13,11.6,11.1,12.6,11.7,11.2]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.8,11.8,11.9,11.6,11.9,11.6,11.5,11.8,11.5,12.7,12.7,12,11.5,11.6,11.6],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.4,1.7,1.4,1.5,1.6,1.7,1.6,1.7,1.5],"paint":[9.6,9.5,9.7,9.4,9.6,8.9,9.5,9.9,9.5,10.6,10.6,9.6,9.3,8.9,9.6]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"07_create10k","values":{"total":[272.6,271.7,273.1,273.1,273.3,271.8,271.8,271.5,273.8,272.5,271.6,271.7,270.4,272.7,271.7],"script":[42.3,43,42.7,43.2,42,43.2,42.4,42.8,42.5,42.9,42.7,41.8,43.2,42.8,42.1],"paint":[223.1,221.4,223.1,222.8,223.7,221.4,222.3,221.6,223.5,222.4,221.7,222.7,220.1,222.8,222.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.6,31.8,31.5,30.9,30.9,31.1,32,30.8,31.6,33.7,31.6,31.8,31.5,31.9,31.1],"script":[4.9,4.9,5,4.7,4.8,4.7,4.8,4.7,4.9,4.8,5,5,4.9,4.9,4.9],"paint":[25.9,26.1,25.8,25.4,25.4,25.6,26.4,25.3,25.9,28.1,25.9,26,25.8,26.2,25.4]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11,10.5,11.2,11.4,12.3,12.4,13.1,10.1,11.9,13.2,11.7,12.4,12.2,11.3,11],"script":[9.1,8.6,9.1,9.4,10.6,10.5,11.3,8.6,9.8,11.8,9.4,10.5,10.9,9.1,8.9],"paint":[1.7,1.7,1.1,0.8,0.3,0.9,0.2,0.9,1,0.2,1.4,0.3,1.1,1.1,1.9]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5108680725097656]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.971752166748047]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0069570541381836]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8275489807128906]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.643555641174316]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.7]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"solid-store-v1.9.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.2]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"01_run1k","values":{"total":[23.4,23.3,23,22.9,23,23.3,23.2,23.2,23,23.1,23.4,23.1,23.4,23.2,23.3],"script":[1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.3,1.3,1.4,1.3,1.3,1.3,1.4,1.4],"paint":[21.6,21.6,21.3,21.2,21.3,21.6,21.5,21.5,21.3,21.4,21.7,21.4,21.7,21.5,21.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"02_replace1k","values":{"total":[25.9,26.1,25.7,25.7,26.1,25.9,26,26,25.5,25.9,25.8,25.9,26.2,26,26.6],"script":[3.2,3.2,3.2,3.2,3.3,3.3,3.2,3.3,3.2,3.3,3.2,3.3,3.4,3.3,3.3],"paint":[22.3,22.4,22.1,22,22.4,22.3,22.4,22.3,22,22.2,22.2,22.3,22.4,22.3,22.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.2,10.6,9.5,9.7,9.9,9.5,9.8,10.6,11.1,10.1,10.3,9.4,9.5,9.7,10],"script":[0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.5,0.1,0.1,0.1,0.3,0.1],"paint":[8.9,8.3,8.1,8.2,9.2,8.4,9.4,9.9,10,8.4,9.3,8.3,8.9,7.8,8.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"04_select1k","values":{"total":[2.6,2.2,2.5,2.2,1.8,1.9,3.5,3.1,2.6,1.9,2.2,2.3,2.4,2.1,2.1,2.3,2.3,2.6,2.5,2.2,2,1.9,2.6,2.6,1.7],"script":[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"paint":[2,1.6,1.7,1.5,1.7,1.1,1.5,2,1.7,1.1,1.8,2.2,2.2,1.5,1.9,1.8,1.7,2.4,1.7,2.1,1.5,0.7,2.5,2.5,1.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"05_swap1k","values":{"total":[12.2,13,12.5,13.3,12.7,12.8,11.9,13.3,12.3,12.2,12.7,12.7,13.3,14.1,12.2],"script":[0.6,0.8,0.1,0.7,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.8,0.1,0.1],"paint":[10.3,11.9,11.2,11.7,11.5,10.4,10.9,10.7,11.3,10.6,11.4,11.4,11,12.8,10.9]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10.2,10.2,9.8,9.8,10.1,10.3,10,10.6,10.2,10.3,10.1,10.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2,0.1,0.1,0.1,0.2,0.4],"paint":[9.5,9.5,9.6,9.4,9.5,9.1,9.2,9.2,9.6,9.1,9.6,9.9,9.6,9.3,9.3]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"07_create10k","values":{"total":[247.3,244.8,242.6,244.6,244.4,246.1,245.2,243.9,244.9,244,245.2,244.9,242.1,246.3,244.6],"script":[13.4,13.7,13.7,13.7,14,13.9,13.7,13.8,13.8,13.8,13.9,13.7,13.9,13.6,13.9],"paint":[226.1,224,221.6,223.9,223.4,225.1,224.5,222.9,224,223.1,223.7,224,221.1,225.4,223.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.7,26.7,26.8,26.8,26.7,26.9,26.9,26.7,27,26.6,26.9,27.2,27.1,26.8,26.8],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3],"paint":[24.7,24.6,24.7,24.8,24.7,24.9,24.9,24.7,25,24.7,24.9,25.2,25,24.8,24.8]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,9.7,9.4,9.1,10.4,8.7,9.7,9.2,9.1,9.2,9.9,9.4,9.3,9.1,9.2],"script":[7.1,8,7.5,7,7.8,6.8,7.6,6.7,6.8,7.2,7.6,7,7.6,7.3,7.4],"paint":[0.8,0.4,1.6,1.8,1.6,0.9,0.6,2.2,0.6,1.3,0.8,1.3,1.4,0.2,0.5]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5597515106201172]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.815241813659668]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.827528953552246]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6350183486938477]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.614481925964355]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.4]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.6]}},{"framework":"sonnet-v0.0.33-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[33.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[28.4,28.8,28.4,28.5,29,28.8,28.2,28.2,28.6,28,28.7,28,28.2,28.1,28.4],"script":[6.2,6.3,6.2,5.9,6.4,6.1,6.1,6,6.1,5.9,6.4,6,6.2,5.9,6.2],"paint":[21.7,21.9,21.6,22,22,22.1,21.5,21.6,21.9,21.6,21.7,21.5,21.5,21.6,21.7]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[31.7,32,31.5,32.1,31.6,31.4,31.8,31.6,31.8,31.6,31.7,32.1,31.5,31.3,31.2],"script":[8.7,8.7,8.5,8.8,8.6,8.6,8.7,8.7,8.6,8.6,8.5,8.5,8.4,8.6,8.5],"paint":[22.5,22.8,22.4,22.8,22.5,22.2,22.5,22.3,22.6,22.4,22.6,23.1,22.4,22.1,22.2]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.1,13.7,13.1,13.6,13.9,13.2,13.9,13.4,13.7,13.4,14.1,13.8,12.9,12.9,12.7],"script":[3.3,3.6,3.1,3.3,2.8,3.2,2.9,3,2.9,2.6,3.1,3.1,3.4,3,2.7],"paint":[9.2,8.4,9.1,9.3,9.5,8.8,9.6,9.5,9.4,9.6,9.5,10.1,8,8.5,8.6]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.2,4.4,5,3.5,3.7,3.7,4.1,4.2,4,4.5,3.8,3.8,4.3,3.7,4,4,4.2,4.5,4.6,3.6,4.1,4,4.2,4.1,4],"script":[2.1,2.2,2.7,1.5,1.7,1.9,2.1,2.1,2,2.4,1.4,1.7,2.4,2,1.8,2,2.1,1.9,2.3,1.6,1.7,1.5,1.4,2,1.6],"paint":[1.7,1.6,2.1,1.1,1.6,1,1.9,1.6,1.2,2,2,2,1.2,1.6,1.3,1.2,1.2,2.5,2.2,1.1,1.4,2.4,2.4,1.8,1.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.1,13.4,13.8,13.7,14.4,14.4,15.9,14.3,14.2,14.3,14.5,14.1,14.1,16,13.7],"script":[2.2,2,1.8,2,1.4,1.8,2.2,2.1,1.3,1.8,1.5,1.4,1.4,1.8,1.9],"paint":[11.4,10.2,10.7,10.8,12.1,10.9,13,11.1,12,11.5,12,11.7,11,13,10.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11,11.5,10.9,11,11,11.3,10.9,11,10.9,11.3,12.1,11.4,11.3,11.2],"script":[1.1,1,1.1,1.1,0.9,1.1,1.1,1.1,1.1,0.8,1,1.1,1.1,1.1,1.1],"paint":[9.5,9.5,9.6,9.2,9.5,9,9.4,9.3,9.3,9.5,9.7,10.2,9.9,9.6,9.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.3,289.3,291.7,288,286.4,288.9,289.4,287.8,290.1,288.2,288.7,288.4,287.5,288.9,287.5],"script":[53.2,53.3,53,53.9,52.9,53.7,53.1,53.2,54,53.2,53.3,52.7,53.6,53,53.1],"paint":[227.9,228.7,231.2,227.1,225.9,228.1,229.2,227.6,228.9,227.8,228.3,228.6,226.9,228.7,227.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.6,34.3,34.2,34.7,34.3,33.8,34.1,34.5,34.6,34.4,34.5,34.1,34.7,34,34.2],"script":[7.1,6.9,6.9,6.9,7,6.9,6.8,6.9,6.9,7,6.8,6.8,6.8,6.8,6.8],"paint":[26.6,26.5,26.3,26.8,26.3,26,26.4,26.7,26.7,26.5,26.7,26.3,26.9,26.2,26.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.8,12.8,12.8,13.1,12.8,13.3,12.3,13.1,12.8,12.8,14.5,12,12.4,13.2,13.4],"script":[10.3,10.1,10.8,11.2,10.5,10.8,10.5,10.5,10.7,10.8,11.2,10.5,10.6,10.8,11],"paint":[2.2,0.6,1.6,1.2,1.3,1.5,0.9,0.9,1.9,0.9,2.4,0.2,1.2,2.1,2.1]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7544307708740234]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.079885482788086]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.129037857055664]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5828495025634766]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.97164726257324]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.8]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[27.9,28.1,28,28.1,28.2,27.9,28.1,27.8,27.9,28.6,27.8,28.2,27.8,28.2,28.8],"script":[5.5,6,5.7,5.7,5.8,5.6,5.8,5.7,5.7,5.8,5.6,5.7,5.7,5.7,6.5],"paint":[21.9,21.5,21.8,21.8,21.9,21.7,21.7,21.6,21.7,22.2,21.7,21.9,21.6,21.9,21.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[32.7,32.4,30.4,32.1,31.9,31,32.4,32.3,30.5,31.9,30.6,32.3,30.8,30.7,31.8],"script":[8.6,8.4,7.6,8.3,8.2,8.2,8.5,8.5,7.8,8.4,7.8,8.7,8.1,7.9,8.3],"paint":[23.5,23.4,22.2,23.2,23.2,22.2,23.3,23.3,22.1,23,22.2,23,22.2,22.2,23]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,13.1,13.1,13.5,12.8,12.4,14.5,13.4,13,13.5,13.3,14.8,12.9,13.6,13.4],"script":[2.8,2.5,3.4,3.3,2.9,2.4,3.1,3.5,2.9,2.9,2.7,3.5,2.3,2.6,2.5],"paint":[8.8,9.6,8.7,8.4,8.4,9.1,10.1,8.7,9,9.1,9.4,10.3,10.1,10.1,9.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5,5,4.6,4.5,4.4,4.2,4.1,4.9,4,4.3,4.7,5,4.3,5.4,4.8,4.6,4.4,4.3,4.6,5,4.5,4.4,4.2,4.8,4],"script":[3,2.7,2.6,2.1,2,2.4,1.7,2.8,1.9,2.3,2,2.4,2.7,3,2.4,1.8,2.3,2.6,2.5,2.9,2.4,2.4,1.9,2.4,2.1],"paint":[1.6,1.4,1.9,1.3,2.3,1.6,1.8,1.5,1.1,1,1.8,1.7,1,1.3,2.2,1.7,1.6,1.5,2,1.1,2,1.9,1.8,2.1,1.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[14.3,14.3,13.6,13.7,13.5,14.1,14,14.5,14.4,14.2,13.7,15,14.4,14.4,14.3],"script":[2,1.1,1.2,1.5,1.6,1,1.8,1.9,1.2,1.8,1.4,1.5,1,2.2,1.8],"paint":[11.4,11.6,11.2,10.9,10.3,12.1,11.3,11.7,11.5,11.4,11.3,12.4,11.1,10.9,11.2]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.3,11.7,11.2,10.9,10.9,11.4,11,10.9,10.8,10.9,11,11.3,11.1,11.1,10.7],"script":[1,0.9,0.9,1,1.1,1.1,0.9,1.1,0.9,1.1,0.8,1.1,1,1.1,1],"paint":[9.6,9.9,9.5,8.8,9.2,9.8,9.7,9,9.3,9.1,9.4,9.4,9.3,9.2,9.3]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[288.7,287.6,290.9,288,287.4,289.4,288.5,288.3,287.9,289.9,291,298.4,289.5,288.7,289.1],"script":[50.7,51.5,51.9,51.6,52.6,51.8,52.2,51.7,51.2,52.6,52.4,52.6,52.2,51.8,51.6],"paint":[230.7,228.9,231.7,229.3,227.7,230.5,229,229.3,229.2,230.2,230.8,238.5,230,229.8,229.9]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.6,32.8,33.2,33.2,33.3,32.7,33.5,33.1,33,32.7,33.4,33.4,33.2,33,33.8],"script":[6.3,6.2,6,6.1,6.1,6.1,6.2,6.1,6.1,6,6.1,6.2,6.2,6.1,6.4],"paint":[26.5,25.7,26.3,26.2,26.3,25.6,26.4,26,25.9,25.8,26.3,26.3,26.1,26,26.4]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.7,11.6,11.6,11.3,11.6,11.5,11.9,12.2,11.6,11.8,11.7,11,12.1,11.2,11.6],"script":[9.3,9.5,10.1,9.4,10,9.7,9.8,9.7,9.4,9.8,10,9.6,10.2,9.5,9.2],"paint":[1.4,1.2,0.6,0.2,0.6,0.2,1,0.5,2,0.7,0.9,0.3,1.7,1,1.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7385540008544922]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.517728805541992]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.579442977905273]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.090669631958008]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.50272560119629]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.7]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.8]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"01_run1k","values":{"total":[25.4,24.7,25.2,25.3,25.3,25.2,25.3,24.9,24.8,25.2,25.6,25.4,25.7,25.2,25.4],"script":[4,3.6,3.8,3.9,3.8,3.8,3.7,3.7,3.6,3.8,3.9,3.7,3.8,3.6,3.7],"paint":[21.1,20.8,21.1,21,21.1,21,21.2,20.8,20.8,21,21.3,21.3,21.5,21.2,21.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"02_replace1k","values":{"total":[29.3,29.6,29.1,28.9,29.1,29.2,28.9,30.1,29.5,29.8,29.3,29.7,29.3,28.9,29.8],"script":[7,7.1,6.9,6.8,7.1,6.9,6.7,7.4,7.2,7.1,7,7,7.1,6.8,7],"paint":[21.7,21.9,21.6,21.5,21.5,21.7,21.6,22.1,21.7,22.1,21.8,22.1,21.6,21.6,22.2]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,11,11.3,11.7,10.9,11.6,11.9,10.8,11.5,11,10.7,12,10.7,10.7,10.9],"script":[0.2,0.9,1.6,1.1,1,1.5,0.6,0.2,1,1.3,1.4,1.1,0.5,0.2,1],"paint":[9.5,8.5,8.7,8.8,8.4,8.4,9.8,8.9,8.3,8.7,8.2,9.8,8.6,9.3,8.5]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.1,1.8,2.8,2.3,2.4,2,2.7,1.9,2.3,2.2,2.2,2.5,1.7,2.1,2.8,2.8,2.5,2.5,1.7,1.8,3,2.4,2,2.4],"script":[0.1,0.5,0.5,0.5,0.1,0.1,0.1,0.1,0,0.1,0.1,0.1,0.6,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.1,0.1],"paint":[1.9,1.1,0.7,1.4,2.2,1.8,1,1.7,1.3,2,2,1.3,1.8,0.7,0.7,1.6,2.4,1.6,1.9,1.5,1.1,1.6,2.1,1.4,1.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.3,12.8,12.7,13.2,12.9,13.6,13.6,12.4,13.1,12.8,13.2,14.2,13.4,13.1],"script":[0.5,0.1,0.1,0.1,1.1,0.9,0.1,0.1,0.1,0.1,0.5,1.1,0.8,0.6,0.8],"paint":[11.1,10.5,11.7,11.2,10.6,10.7,11.2,12.6,11.4,11.9,11.6,11.3,12.3,11.9,11.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.3,10.4,10.5,10.5,11.1,10.8,10.6,11,10.4,10.7,10.7,10.8,10.3,10.7,10.6],"script":[0.5,0.3,0.2,0.4,0.5,0.5,0.2,0.3,0.3,0.3,0.5,0.5,0.2,0.5,0.3],"paint":[8.9,9.5,9.6,9.6,9.9,9.2,9.8,10,9.5,9.9,9.7,10,9.5,9.5,9.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"07_create10k","values":{"total":[265.6,266.3,265,264.7,264.2,265.2,265.5,265.4,267.8,264.9,265,268.7,265.8,265.4,266.5],"script":[34.4,34.8,34,34.3,34.7,34.4,34.4,34.2,34.6,34.4,34.7,35.1,34.3,34.7,34.6],"paint":[224.1,224.4,223.9,223.1,222.4,223.6,223.7,224,226.2,223,223.1,225.9,224.4,223.5,224.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.5,29,28.9,29.3,29.3,30.6,29.1,29.8,29.7,30.7,29.4,29.9,30,29.6,29.9],"script":[4.2,3.9,3.9,4.2,3.9,4.1,4.1,4.1,4.2,4.2,3.9,4.1,4.4,4.1,4.3],"paint":[24.5,24.4,24.3,24.4,24.7,25.7,24.2,25,24.8,25.7,24.7,25,24.9,24.8,24.9]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,9.9,9,9.9,9.4,9.3,8.8,9.1,10.1,10.2,9.7,9.2,9.2,9.4],"script":[8.2,7.4,7.6,6.8,7.9,7.6,7.4,7.5,7.4,7.9,8,7.9,7.7,7.6,7.6],"paint":[0.3,2.1,0.9,1.2,1.3,0.6,1.6,0.2,0.9,2,1.6,1,0.7,0.2,1.6]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6956787109375]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5865631103515625]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.6388072967529297]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0456886291503906]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.745062828063965]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"spheres-v0.24.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[31,30.3,31.1,30.7,31.2,31.1,31.1,30.7,30.6,31.1,31,30.5,30.5,31.1,31],"script":[8.4,8.4,8.6,8.4,8.8,8.6,8.6,8.6,8.5,8.9,8.6,8.4,8.4,8.9,8.5],"paint":[22.1,21.4,21.9,21.8,21.9,21.9,22,21.5,21.6,21.7,21.9,21.5,21.5,21.7,22]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[33.1,33.4,33.4,33.4,33.5,33.4,33.5,34.3,33,33.8,34,33.6,34.2,33.5,33.3],"script":[10.9,11.1,11,11.2,11.3,11.1,11.4,11.6,10.9,11.3,11.6,11.1,11.4,11.2,11.2],"paint":[21.6,21.7,21.9,21.6,21.6,21.7,21.6,22,21.6,22,21.8,21.9,22.2,21.7,21.5]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.8,12.9,12.2,12.8,12.3,12.2,12.4,12.3,12.6,13,12.8,12.6,12.6,13.2,13.6],"script":[2.1,1.9,1.5,2.3,1.9,2.1,2.1,2.3,1.5,2.4,2.1,1.9,2.5,2.3,1.7],"paint":[9.4,10.4,9.3,8.3,8.8,8.8,9.7,8.9,10.2,9.5,9.4,9.3,9.5,8.8,10.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[4.8,4.2,4.6,3.7,4.1,4.1,4,4.2,4.5,3.7,4.6,4.3,4.7,4.1,3.9,3.7,3.9,3.7,3.7,3.5,4.8,5,3.8,4.5,3.7],"script":[2.6,1.8,2.4,2.2,1.7,1.7,1.8,2.1,2.6,2.1,2.3,2.6,2.3,2.1,2.4,1.8,2,1.9,1.3,1.8,2.5,2.3,2,2,1.3],"paint":[1.3,1.3,1.3,1.4,0.8,2.1,1.6,1.3,1,1.5,1.6,1.6,1.4,1.1,1,1.1,1.1,1.7,2.2,1.6,2.1,1.6,1.7,0.5,2.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[14.1,14.5,14.5,14.1,14.7,14.3,13.8,14.3,14.2,14.1,14,14.6,14.2,13.7,14.5],"script":[1,1.9,1.5,1.9,1.3,1.3,1.5,1.8,1.5,1.5,1.2,1.6,1.5,1.6,2],"paint":[12.1,10.7,12,11.3,12.5,12,11.3,11.5,11.6,12.3,11.4,11.6,10.7,10.9,11.6]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,11.3,11,11.6,11,10.9,11,11,11.3,11,11.2,11.3,11.4,11.5,11],"script":[1.2,1,1.1,1,1.2,1.1,1.2,1.2,1.2,1.2,1,1.2,1.2,1.2,1.2],"paint":[9.2,9.5,9.2,9.8,8.8,9.5,9.5,9.3,9.6,9.2,9.1,9.7,9.6,9.4,9.4]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[294.2,293.2,295.3,294.6,292.6,294.4,295.8,294,293.7,295.9,292.8,296,294,293.5,294.1],"script":[57,57.7,57.4,58.1,57.3,57.5,58,58.5,58.2,58.5,58.1,58.5,57.8,57.2,57],"paint":[229.9,228.3,230.6,229.2,228.1,229.7,230.4,228.2,228.3,230.1,227.4,230,228.6,229.2,229.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.3,33.3,33.4,32.8,33.2,33.7,33,33.2,33.4,33,33.3,33.5,32.6,33.3,33.2],"script":[6.1,5.9,6,5.9,6,5.8,5.9,5.9,6,6,6,6,5.8,5.8,6.1],"paint":[26.3,26.4,26.5,26,26.3,26.9,26.2,26.3,26.5,26.1,26.3,26.5,25.9,26.5,26.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.1,12.7,13.3,13.8,13.5,13.2,13.4,12.3,13.3,13.4,13.2,13.5,13.4,12.4,13.3],"script":[11.1,11.1,10.9,11.7,11.4,11,11.5,10,11.3,11.5,11,11.4,11.1,10.4,11.6],"paint":[1,0.2,0.9,1.5,1.4,0.8,1.1,1.2,1.1,0.9,0.7,0.6,0.6,1.1,0.7]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.74127197265625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.293750762939453]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.294261932373047]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3248233795166016]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.459091186523438]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.8]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.2]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.3]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"01_run1k","values":{"total":[31.3,30.9,30.6,30.7,30.9,31.3,31.1,31.3,31.1,31.1,30.5,31.1,30.8,30.9,30.7],"script":[8.2,8.2,8.2,8.2,8.1,8.1,8.4,8.3,8.4,8.2,7.9,8.4,8,8,8],"paint":[22.6,22.1,21.9,22,22.3,22.6,22.1,22.4,22.2,22.3,22,22.2,22.3,22.4,22.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"02_replace1k","values":{"total":[38.7,38.3,38.3,38.3,38,37.6,37.8,39.1,38.3,37.8,38.3,37.6,38.6,38.3,38],"script":[14.8,14.8,14.7,15,14.8,14.6,14.5,15.3,14.6,14.7,15,14.4,15.1,14.8,14.5],"paint":[23.3,22.9,23,22.8,22.6,22.4,22.7,23.2,23,22.5,22.7,22.7,22.9,22.9,22.9]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.8,26.1,26.5,26.4,26.9,24.7,26.2,28.6,28,23.6,25.8,26.1,26.4,25,25.9],"script":[14.4,13.8,13.5,14.5,15,12.8,13.6,15.2,14.6,11.2,13.4,14.2,14.1,12,13.4],"paint":[10.6,10.8,11.2,9.1,9.4,9.6,10.6,11.2,11.7,10.3,9.6,10,10.6,10.9,10.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"04_select1k","values":{"total":[15.5,14.4,14.6,14.7,15.1,14.9,14.9,13.9,14.4,16.2,15.7,14.3,13.8,14,17.1,16.4,15.6,15.9,14.2,15.1,13.5,14.7,14.9,15.5,15.9],"script":[11.6,11.3,11.3,11.6,12,11.4,11.2,10.2,11.1,12.5,12.5,11,11,10.6,13.1,13,11.7,12.4,10.6,11.8,10.2,11.3,12.1,12.6,12.2],"paint":[2.9,1.4,2,2.3,1.2,2.3,2.9,2.5,1.6,2.8,1.9,2,1.2,1.7,2,2.5,2.3,1.2,1.1,1.3,1.9,1.8,1.3,0.8,2.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"05_swap1k","values":{"total":[25.3,28.9,26.7,26.4,26.6,26.2,25.7,26,25.5,27.3,25,27.1,26.4,26.1,24.5],"script":[10.7,11.5,12,11.4,11.1,10.8,11.4,11,11.4,12.4,10.8,11.9,11.3,10.5,10.7],"paint":[13.1,15.3,12.8,13.1,13.2,13.2,12.9,12.8,12.4,12.6,12.7,14,12.8,14.4,11.5]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.4,17.6,17.3,17.4,17.4,17,17.5,17.4,17.1,17.6,18,17,17.4,17,17],"script":[5.9,6.6,5.8,6.2,6.2,6.1,5.9,6.2,6.1,6.4,6.1,5.8,6.1,5.9,5.8],"paint":[10.3,9.9,10.4,10.2,9.8,9.9,10.4,10.4,9.9,10.3,10.9,10.1,10.2,10.6,9.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"07_create10k","values":{"total":[322.5,325.6,323.4,324.2,322.9,323.3,320.8,325.3,328,327.8,322.6,323.9,322.7,322.6,323.2],"script":[91.2,92.5,91.1,91.6,91.4,91,91.1,91.8,92.9,92.3,91.3,91,90.8,91.5,91.8],"paint":[223.1,225.2,224.4,224.3,223.8,224.5,221.8,225.7,227,227.6,223.6,225.2,224,223.4,223.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.8,38.3,38.7,38.6,38.8,38.4,38,38.6,38.9,38.1,38.6,38.3,38.8,40,39.2],"script":[11.3,11.2,11.1,11.2,11.1,11.1,11.1,11,10.9,10.9,11,11.2,11.4,11.3,11.2],"paint":[26.5,26.1,26.6,26.3,26.6,26.3,25.8,26.6,27.1,26.3,26.5,26.1,26.3,27.6,27]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12,12.7,11.9,11.8,12.1,11.9,12.3,11.4,12.5,13,12.2,12,11.7,11.3,12.1],"script":[9.7,10.2,9.7,9.6,9.7,10,10.4,9,9.9,10.6,9.6,9.2,9.6,8.8,10],"paint":[2,1.8,1.9,0.8,1,0.8,1,1.8,1,1.4,1.8,1.9,1.1,2,0.7]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6626462936401367]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5802507400512695]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.646542549133301]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8472805023193359]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.51368999481201]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.6]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2]}},{"framework":"stencil-v4.23.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.2,24.3,24.1,24.3,24.3,24,24.1,24.2,23.9,24.1,24.2,24.2,24.3,24.3,24.1],"script":[2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.6,2.5,2.6,2.5,2.5,2.5,2.5],"paint":[21.2,21.4,21.2,21.4,21.3,21.2,21.2,21.3,21,21.3,21.2,21.3,21.4,21.4,21.2]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,28.6,27.8,28.2,28.1,28.6,28.7,28.4,28.2,28.3,28.1,28.3,28.5,28.4],"script":[5.6,5.5,5.8,5.5,5.7,5.4,5.9,5.6,5.6,5.5,5.7,5.5,5.6,5.8,5.6],"paint":[22.2,22,22.2,21.8,22,22.2,22.1,22.6,22.3,22.2,22.1,22,22.1,22.1,22.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.4,11.4,10.8,10.7,11.5,10.9,10.8,10.7,11,11.3,11,11.1,11.3,10.3,11.1],"script":[1.1,0.9,0.9,0.5,0.6,0.9,0.2,0.6,0.8,1.1,0.2,0.9,1.2,0.6,1.4],"paint":[8.3,9.4,8.4,9.1,9.9,8.4,9.6,9,8.8,9.3,9.8,9.3,9,9.1,8.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.5,3.2,3.4,3.3,3.8,3.8,3,2.9,2.9,3.3,3.3,3.3,3.6,3.5,3.4,3.3,3.7,3.8,3.1,3.1,2.9,2.7,2.8,3.1,2.8],"script":[0.9,0.9,0.6,1.2,1.3,1.3,0.2,1,1.2,1.2,1.4,0.8,1.2,0.8,1,1.4,1.3,1.2,0.6,0.9,0.2,0.6,0.8,1.2,1],"paint":[2,1.4,1.8,0.8,2.4,2.1,2.7,1.1,1.6,1.5,1.4,1.5,2.3,1.6,2.1,1.8,1.7,1.6,2.4,1.3,2.1,1.2,0.9,1.1,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[13.4,14.2,14.5,14.1,13.8,14.4,13.1,13.5,13.7,14,13.4,13.1,13.6,14.5,13.4],"script":[0.7,1.2,1.4,1.3,1.5,1.3,0.9,1,1.2,1.3,1,1.1,1.1,1.1,1.1],"paint":[11.1,12.1,12.1,11,11.3,12,11.1,11.6,11.3,11.7,11.3,10.6,11.8,12.8,10.4]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.3,10.7,10.5,10.7,10.5,10.7,10.6,10.6,10.6,10.7,10.3,10.5,10.6,10.4],"script":[0.5,0.5,0.5,0.4,0.5,0.3,0.5,0.5,0.5,0.4,0.4,0.3,0.5,0.5,0.2],"paint":[9.1,9.1,9.7,9.7,9.7,9.6,9.6,9.5,9.1,9.6,9.6,9.5,9.3,9.5,9.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[257,257.1,256.3,256.6,255.9,257.3,257.5,256.6,257.6,257,256.4,256.6,260.8,257.4,257.6],"script":[27.6,28.1,27.7,28,28.1,28.8,27.7,28,27.9,28,28.1,28.1,28.3,28.4,28.2],"paint":[222.1,221.7,221.3,221.3,220.8,221.2,222.4,221.3,222.4,221.4,221,221.4,225,221.6,222]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.8,27.7,28.3,28.5,28.1,28.9,27.5,27.6,29.1,28.2,28.8,28.1,28,28.1,29],"script":[2.7,2.5,2.7,2.7,2.6,2.7,2.6,2.6,2.8,2.7,2.7,2.6,2.6,2.6,2.6],"paint":[25.3,24.4,24.8,25,24.7,25.4,24.2,24.3,25.6,24.7,25.3,24.7,24.6,24.8,25.6]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.1,11,9.8,10.3,10.3,10.5,10.6,10.1,9.9,11,10.3,10.3,10.3,10,10.2],"script":[7.8,9,7.8,8.3,8.2,8.7,8.6,8.5,8,8.7,8.6,8.1,8.2,7.5,8.3],"paint":[1.1,1.8,1.2,0.4,0.7,0.9,1,1,0.3,2,0.7,1.6,0.8,1.4,1]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5991659164428711]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.780032157897949]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7977161407470703]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8762216567993164]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.332514762878418]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.5]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.3]}},{"framework":"svelte-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.5]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"01_run1k","values":{"total":[24.7,25,24.7,24.9,24.9,24.8,25.1,24.7,24.8,24.8,25.2,24.9,24.9,24.7,24.9],"script":[3.2,3.2,3.2,3.2,3.1,3.2,3.2,3.2,3.3,3.2,3.2,3.3,3.3,3.2,3.3],"paint":[21.1,21.3,21.1,21.3,21.5,21.2,21.5,21.2,21.2,21.2,21.6,21.2,21.2,21.2,21.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"02_replace1k","values":{"total":[29.2,29,29.1,29.1,29,29.3,29.4,29.1,29.2,29.1,28.8,28.9,28.9,28.9,29.1],"script":[6.4,6.6,6.6,6.2,6.5,6.6,6.5,6.6,6.6,6.2,6.3,6.4,6.3,6.2,6.6],"paint":[22.2,21.8,21.9,22.3,22,22.1,22.3,22,22.1,22.2,22,22,22.1,22.1,22]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.5,12.5,11.4,12.1,11.7,11.6,13.9,12.5,12.2,11.3,11.6,11.7,12.3,11.4,13.5],"script":[1.5,2.4,1.3,2.3,1.6,2.1,1.8,1.8,1.8,1.5,2.2,1.6,1.9,1.1,2.4],"paint":[10.4,9.5,8.6,8.9,9.4,8.5,10.5,9.5,9.2,8.5,8.7,9.4,9,8.6,9.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"04_select1k","values":{"total":[3.3,3.1,3.2,3.9,3.5,2.6,3.1,3.4,3.1,3.4,3,3.5,3,2.7,3,3.3,3.7,3.2,3.3,3.4,2.9,3.5,3.4,3.2,3.7],"script":[1.2,1.1,1,2,1,0.2,0.9,0.7,0.8,1,0.5,1.5,0.5,1.1,0.9,0.9,1.3,0.6,0.9,1.3,0.2,1.2,1,0.6,1.3],"paint":[1.4,1.1,1.3,1.8,1.7,2.2,2,2.6,1.2,2.3,1.5,0.4,1.4,0.7,2,1.9,2.3,2.5,2.2,1.8,2.5,1.2,1.6,2.4,1.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"05_swap1k","values":{"total":[14.9,14.9,14.4,14.9,15.7,14.9,14.9,14.9,15,14.7,14.4,15,14.9,15,14.6],"script":[2.2,1.5,1.4,2.6,1.5,1.2,1.3,1.6,2.2,2.3,1.3,2.2,1.8,1.7,2.2],"paint":[11.2,12.4,11.5,11.6,13.1,12.5,12.1,12,12.1,11.5,12.1,12,11.8,12.3,10.4]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11,11.4,11,10.9,11.2,11.3,11,10.9,11.1,11.4,11.5,11.2,11.5,11,10.9],"script":[0.7,1.1,0.7,0.7,1,0.9,1.2,0.7,0.9,1.2,1.1,0.9,1.2,0.7,0.7],"paint":[9.5,9.6,9.6,9.7,9.6,9.5,9.3,9.6,9,9.6,9.7,9.4,9.8,9.6,9.6]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"07_create10k","values":{"total":[268.2,269.4,267.2,269,267.5,266.4,269.8,269.4,268.1,267.9,269.2,270.2,269.9,267.3,269.7],"script":[37.6,37.4,37,37.5,37.1,36.9,37.5,37.6,37.6,37.5,38,37.5,37.1,37.5,37.5],"paint":[223.5,224.9,223.1,223.9,223.2,222.3,224.7,224.3,223.3,223,224.1,225.5,225.6,222.6,225.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[29.6,30.2,29.3,29.5,29.4,29.5,29.1,30.3,29.5,29.6,29.9,29.6,29.8,29.5,29.1],"script":[3.8,4.1,3.8,3.8,3.8,3.9,3.9,4.1,3.8,3.9,3.8,3.9,4,3.9,3.8],"paint":[25,25.4,24.8,24.9,24.8,24.9,24.5,25.4,24.9,25,25.4,24.9,25,24.9,24.7]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.4,10.1,10.2,9.7,10.3,11.5,10.3,10.1,10.9,10,10.7,10.6,9.5,10.2,10.4],"script":[8,8.6,7.8,8.1,8.3,9.7,7.6,7.9,8.7,8.2,8.1,8,7.4,8.1,8.3],"paint":[2.1,0.5,1.8,0.6,0.8,0.6,1.8,1.3,1.8,1,2.4,2.3,1.2,1.3,0.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6184406280517578]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9235544204711914]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.964777946472168]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4381637573242188]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.580604553222656]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.9]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2]}},{"framework":"svelte-classic-v5.13.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.3,28.8,28.6,28.7,28.7,29,28.9,28.8,29,28.2,28.8,28.7,29.1,28.8],"script":[6.5,6.2,6.3,6.5,6.3,6.2,6.3,6.2,6.2,6.2,6.1,6.2,6.3,6.3,6.4],"paint":[22.2,22.5,21.9,21.5,21.9,22,22.2,22.2,22.1,22.3,21.5,22.1,21.8,22.2,21.8]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[33.9,34,33.6,34,34,33.8,34.6,33.8,33.6,33.5,33.2,33.9,34,33.8,33.8],"script":[11,11.1,10.7,10.7,11,10.7,11,10.8,10.6,10.7,10.6,10.7,10.7,10.8,10.8],"paint":[22.3,22.3,22.4,22.8,22.5,22.5,23,22.4,22.4,22.2,22,22.6,22.7,22.4,22.4]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.1,14.5,14.5,14.6,14.2,16,14.4,14,14,14.8,14.3,15,15.9,15.7,13.8],"script":[4.2,3.8,4,3.9,3.8,4,3.6,4,3.3,3.3,3.4,3.7,4.5,4.4,3.2],"paint":[10.4,9.6,9.6,9.1,9.3,10.5,9.5,9.1,9.6,9.9,9.3,10.2,10.3,10.2,8.9]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[5.6,6.3,5.6,6,6.5,6,5.9,5.8,6.2,5.5,5.3,6,6.4,5.1,6.1,6.1,5.5,5.8,6.1,6.5,5.9,6,6,5.4,6.3],"script":[3.5,4.1,3.5,3.9,3.7,3.5,3.6,3,3.7,3.6,3.4,4.1,4,3.4,3.4,3.6,3,3.3,3.2,3.6,3.9,3.4,3.9,3.5,4.2],"paint":[2,2.1,1.2,1.4,2.6,1.5,2.1,2.4,1.6,1.7,1.1,1.7,1.8,0.7,1.6,2.3,1.2,2.3,2.4,2.7,1.8,2.2,1.9,1.8,1.6]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.9,15.9,16.2,16.1,15.3,15.6,15.8,15.9,15.8,14.8,16.9,15.5,18.7,18],"script":[2.4,2.4,2.8,3,3.1,2.3,2.4,2.8,3,2.7,2.5,2.7,2.9,4.4,3.1],"paint":[11.8,12.6,12.1,12.1,12,12.1,11.7,11.8,12.2,12.1,10.7,12.7,12.1,13.1,13.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.1,11.8,11.8,12.1,11.6,12,12,11.7,11.9,12,11.7,11.9,12.8,12.3,11.6],"script":[1.8,1.7,1.6,1.7,1.7,1.6,1.6,1.6,1.8,1.7,1.6,1.6,2.4,1.4,1.7],"paint":[9.5,9.4,9.3,10,8.9,9.8,9.7,9.4,9.5,9.6,9.3,9.9,9.8,9.8,9.3]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[295.2,291.3,292.4,294.1,293.7,294.5,292,293.2,292.2,294.2,293.8,293.2,295.8,293.4,294.6],"script":[59.9,60.2,60.3,61,60.7,60.9,60.5,59.2,60.2,60.1,60.2,59.8,61.2,60.7,60.7],"paint":[227.9,224,224.9,226,225.8,226.5,224.5,226.6,224.8,227,226,226.3,227.4,225.6,226.7]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.4,34.6,34.1,34.2,34.6,34.5,34.8,34.7,35,34.5,34.6,35.1,35.1,34,35.1],"script":[7.1,7.3,7,7,7.1,7,7.1,7.3,7.2,7,7.3,7.4,7.4,6.9,7.1],"paint":[26.4,26.4,26.2,26.2,26.6,26.6,26.8,26.6,26.9,26.6,26.4,26.8,26.8,26.1,27.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.5,13.7,13.2,13.3,14.1,13.6,14.1,14.8,14,14.8,13.9,13.2,12.5,13.7,13.7],"script":[11.6,11.6,11.5,11.3,12.2,11.5,12.1,12.6,12.3,11.8,12,11.3,10.6,11.7,12.3],"paint":[1,1.2,1,0.8,0.8,1.5,0.4,1.3,1.1,1.7,1.7,0.9,1.7,1.2,0.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7508716583251953]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.803526878356934]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.851883888244629]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5171022415161133]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.595845222473145]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[208.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"01_run1k","values":{"total":[24,23.8,24.2,24.3,24.4,23.8,24.1,24.4,24.1,23.8,23.9,24.4,24.7,23.9,24.3],"script":[2.5,2.5,2.5,2.5,2.6,2.5,2.5,2.4,2.5,2.5,2.5,2.5,2.4,2.5,2.6],"paint":[21.1,20.9,21.3,21.4,21.4,21,21.1,21.7,21.1,20.9,21,21.5,21.9,21.1,21.3]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"02_replace1k","values":{"total":[27.9,27.2,26.5,27,27.2,27,27.1,26.9,26.9,27.3,27,27.3,27.1,27.6,27],"script":[4.5,4.5,4.4,4.4,4.5,4.3,4.5,4.6,4.5,4.6,4.4,4.6,4.4,4.4,4.6],"paint":[23,22.3,21.7,22.1,22.3,22.2,22.2,21.9,22,22.2,22.2,22.2,22.2,22.8,22]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,12.7,12.4,12.1,12.7,12,11.8,12.1,12.3,11.4,11.4,12.5,11.8,11.1,12.4],"script":[1.2,2.2,1.3,1.2,1.6,0.7,0.9,1.8,1.1,0.9,1.3,1.2,1.6,0.9,1.3],"paint":[8.8,9.4,9.3,8.8,10.3,10,10,9.6,10.3,9.2,9.5,10.4,8.7,9.2,9.9]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"04_select1k","values":{"total":[3.6,3.8,3.3,2.9,3.3,3.4,3.7,4.3,7.2,4.8,3.7,3.7,6.2,4.8,6.1,3.1,4.4,5.6,3.1,4.5,5.2,4.4,4.7,5.8,3.2],"script":[1.3,1.2,0.6,1.1,0.9,1.2,1.5,0.9,0.2,1.3,1.4,1.2,1.5,0.5,1.1,1.1,1.6,1,0.9,1.3,1.2,0.6,1,1.1,0.6],"paint":[0.8,1.7,1.8,1.6,1.6,2.1,1.7,1.9,2.7,1.8,1.6,1.1,1.7,1.3,1.9,1.9,2.1,2.5,1.3,1.7,2,1.9,1.6,1.7,1.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"05_swap1k","values":{"total":[14.5,14.3,14.1,14,14.2,14.2,14.9,14.7,14.8,14.9,15.3,14.7,14.5,14.8,13.7],"script":[1.3,1.3,1.7,1.6,1.4,1.1,2.2,1.9,1.4,1.2,2.2,1.7,1.1,2.1,1.8],"paint":[12,11.7,10.9,11.4,9.9,12.4,11,11.7,12.2,12.4,12.2,12.1,10.2,11.2,11.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.1,10.5,10.9,10.9,11.2,10.9,10.9,10.8,10.8,11,11.1,10.8,10.7,11,10.7],"script":[0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.6,0.4],"paint":[9.9,9.5,9.5,9.7,10,10,9.7,9.9,8.8,9.9,9.5,9.6,9.5,9.7,9.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"07_create10k","values":{"total":[259.7,261,258.6,262.2,259.7,259.9,260.9,263.4,260.3,259.5,260.5,260.1,259.4,259.4,259.2],"script":[25.9,26.2,25.6,26,26.3,25.6,26.5,27.8,25.5,26.5,26,26.1,25.8,26,26.1],"paint":[226.3,227.4,225.7,228.4,225.9,226.8,226.9,228,227.3,225.5,227,226.4,225.7,225.7,225.6]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.6,29.5,28.6,28.7,28.9,28.6,28.3,28.3,28.3,29,28.3,29.4,28.7,28.8,29.4],"script":[2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.8,2.5,2.6,2.5,2.5,2.6],"paint":[25.3,26.2,25.3,25.4,25.6,25.3,25,25,25,25.4,24.9,26,25.4,25.5,26]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,10.5,10.1,10,10.4,10.7,11.1,10.6,9.9,10.7,11,10.3,11.5,10.4,10],"script":[9,8.8,8.6,8.5,8.4,8.7,9.2,8.4,8.6,8.9,8.6,9.1,8.6,9,7.9],"paint":[2.3,0.5,0.3,0.6,1,1.2,1,1,0.2,0.9,1.4,0.5,2.2,0.2,1.1]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.3402538299560547]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1064014434814453]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.214679718017578]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.791879653930664]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.534530639648438]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[191.7]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.4]}},{"framework":"targetjs-v1.0.142-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[181.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"01_run1k","values":{"total":[23.7,23.8,23.6,23.7,23.8,23.6,23.7,23.6,23.8,23.6,24.1,23.9,23.8,23.8,23.9],"script":[2,2,1.9,1.9,1.9,1.9,2,2,2,2,2,2,2,2,2],"paint":[21.4,21.4,21.3,21.4,21.5,21.3,21.3,21.2,21.4,21.3,21.7,21.6,21.4,21.4,21.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"02_replace1k","values":{"total":[26.5,26.8,26.8,27,26.7,26.8,27,26.8,26.5,26.8,26.8,27,27.3,27.3,27.1],"script":[4,3.9,4,4,4,4.1,4,4.1,4,4,4,4.1,4,4.1,4.1],"paint":[22.1,22.4,22.4,22.5,22.4,22.3,22.6,22.3,22.1,22.4,22.3,22.4,22.8,22.8,22.6]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"03_update10th1k_x16","values":{"total":[10.9,10.1,10.3,10,10.5,9.7,10.1,11.2,10.3,10.5,11.3,11,11.5,11,10.6],"script":[0.8,0.1,0.8,0.1,1.1,0.5,0.1,0.6,0.1,0.5,0.8,0.7,0.3,0.8,0.5],"paint":[9.4,8.8,8.6,8.8,8.3,8.5,9,9.5,9.2,9.4,9.3,8.8,10.2,8.6,8.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"04_select1k","values":{"total":[3.8,2.6,2,2.5,2.4,2.8,2.2,2.5,2.6,2.1,2.8,2.8,3,2.5,2.8,2.4,2.3,2.2,2.6,3.2,2.7,2.6,2.3,2.7,2.2],"script":[0.8,0.1,0.1,0.1,0.8,0.5,0.1,0.3,0.1,0.5,0.8,0.9,0.1,0.1,0.1,0.1,0.5,0.1,1,1.1,1,0.1,0.3,0.4,0.1],"paint":[1.6,2.4,1.2,2.3,1.6,1.6,1.9,1.8,1.5,1.6,1.1,1.3,2.4,1.3,2.5,1.4,1.7,2,1.6,2,1.6,1.5,1.9,1.9,1.9]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"05_swap1k","values":{"total":[14.2,13.4,14,13.9,14.3,13.5,13.9,13.4,14.1,13.8,13.7,14.4,15.1,14,13.1],"script":[1,1.2,0.9,1,1,0.9,0.9,0.9,0.6,1,0.6,1.2,1,0.8,1.2],"paint":[12.2,10.8,11.8,11.9,12.1,11.5,12.1,11,11.9,11.7,11.5,12,12.4,12.3,10.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.4,10.1,10.4,10.5,10.5,10.5,10.5,10.7,10.4,10.4,10.4,10.5,10.2,10.6],"script":[0.3,0.4,0.4,0.3,0.5,0.3,0.4,0.3,0.3,0.5,0.3,0.5,0.4,0.4,0.3],"paint":[9.4,9.3,9.1,9.6,9.3,9.6,9.5,9.4,9.9,9.2,9.3,9.3,9.6,9.1,9.1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"07_create10k","values":{"total":[257.2,256.9,257.5,256.6,257,257.5,256.9,255.9,257,258.1,258.7,256.5,256.6,256.6,256],"script":[26.4,26,26.3,26.8,26.3,26.4,26.1,26.3,26.3,27,27,26.4,26.6,26.1,26.3],"paint":[223.6,223.5,224,222.4,223.4,224,223.5,222.2,223.4,223.7,224.5,223,222.6,223.3,222.5]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,28,27.9,28.1,27.9,27.9,28.9,27.8,27.7,28,27.9,27.9,27.8,28.5,27.5],"script":[2,2,2,2,2,2,2,2,2,2.1,2,2,2,2,2],"paint":[25.2,25.3,25.2,25.4,25.1,25.2,26.2,25,25,25.2,25.2,25.1,25,25.6,24.8]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.2,10.2,9.7,9.7,10,9.3,9.5,9.7,9.5,10.4,10.5,11.1,9.7,9.7,9.3],"script":[7.3,8.2,7.8,7.8,7.9,7,7.6,7.3,7.7,8.7,7.1,9.2,8.2,8.1,7.4],"paint":[1.6,1.1,1.1,0.3,1.9,1.6,0.3,1.4,0.9,1.2,3.1,0.6,0.7,1,1]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5495309829711914]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.168757438659668]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1770105361938477]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6462335586547852]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.86556339263916]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.7]}},{"framework":"thyn-v0.0.218-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[27.9,27.7,27.5,27.6,27.5,27.6,27.3,27.4,27.4,27.3,27.7,27.5,27.3,27.7,27.8],"script":[5.8,5.5,5.8,5.9,5.5,5.6,5.6,5.6,5.7,5.6,5.6,5.9,5.5,5.8,5.5],"paint":[21.6,21.6,21.1,21.2,21.4,21.4,21.1,21.2,21.2,21.1,21.5,21.1,21.3,21.3,21.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.8,32.6,32.6,32.8,32.9,32.1,32.9,32.5,32.7,32.2,32.5,32.2,32.8],"script":[8.5,8.6,9.1,9,9.1,9.1,9.1,8.8,9.2,9,9,9,8.9,8.8,9],"paint":[22.8,22.8,23.1,23,22.9,23.2,23.1,22.7,23.1,23,23.1,22.6,23,22.7,23.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.8,10.7,11.5,10.7,10.9,10.4,10.7,10.5,11.5,10.9,11,10.7,10.9,11.2,10.8],"script":[0.9,0.7,0.8,0.6,0.5,0.2,0.8,0.2,0.9,0.6,0.2,0.9,0.9,1.2,0.2],"paint":[9.6,8.9,9.4,7.7,9.3,9.3,7.8,9.1,9.3,7.8,9.6,8.4,9,8.8,9.5]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.7,2.4,2,2.6,2.5,2.1,1.8,2.8,2.2,2.3,2.4,2.5,2,1.9,1.8,1.5,2.2,1.6,2.5,2.1,2.5,2.3,2,2.4,2.4],"script":[0.6,0,0,0,0,0.3,0,0,0,0.2,0,0,0.2,0.2,0.3,0.2,0,0,0,0,0,0,0,0.8,0.8],"paint":[1.7,2.2,1.2,0.8,1.3,1.4,1.2,2.6,2.1,1.5,2.2,2.3,1.3,1.2,1.2,1.2,1.2,1,2.4,1.4,1.5,2.1,1.1,1.1,1.1]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.5,21,20.9,21.1,20.2,21.3,20.7,20.7,22,21.1,22.6,21,21.9,20.8,21.8],"script":[8.1,7.2,6.7,6.6,6.5,6.9,6.1,6.5,7.9,7.4,7.8,6.9,7.2,7.4,7.7],"paint":[12.5,11.5,13.5,11.8,10.9,13.1,11.7,12.2,12.2,11.7,12.9,12,12.1,10.5,12.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.1,14.9,14.6,14.7,15.1,14.9,15.2,14.6,14.6,14.7,15.2,14.7,14.5,14.9,16],"script":[4.3,4.2,4.2,4.3,4.2,4.3,4.3,4.3,3.8,4.3,4.3,4.3,4.1,4.2,4.2],"paint":[10.2,10.1,9.8,9.8,9.7,9.8,10.2,9.1,10.1,9.9,9.7,10,9.5,10.2,10.8]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[287.1,289.6,289.4,287.7,286.7,289.6,287.7,289.1,289,290.1,288.6,287.9,287.9,288.5,285.8],"script":[56.6,57.1,56.6,56.6,55.9,57.6,55.9,61.2,56.9,56.4,57.1,56.3,57.1,57,55.7],"paint":[222.8,224.5,224.7,223.2,223,224.3,223.9,219.7,224.2,225.8,223.6,224.1,223.3,223.8,222.2]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.2,35.2,36,35.3,34.9,34.5,35.1,34.8,35.5,34.7,35.5,35.2,34.8,35.3,35.3],"script":[8,7.7,7.9,7.8,7.9,7.8,7.9,7.9,7.9,8,8,7.9,8,7.9,8],"paint":[26.3,26.4,27.1,26.5,25.9,25.7,26.2,25.9,26.5,25.7,26.5,26.3,25.9,26.4,26.3]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10,9.9,10.5,10.8,10.1,10.3,9.8,10.2,10.5,10.3,10.3,10,10.7,10.8,10.9],"script":[8.3,8,8.2,8.8,7.9,8,7.9,8.2,8.8,8.2,8.4,8.1,8.3,8.8,8.7],"paint":[0.6,0.6,1.7,0.9,0.7,1.3,1,1.8,0.8,1.5,0.7,0.6,1.9,0.9,1.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6065082550048828]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7757692337036133]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8027944564819336]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7470893859863281]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.592768669128418]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[28.8,29.1,29.1,29,29.4,29.3,29.7,29.4,28.9,29.5,29.7,29.5,29.2,29.2,29.7],"script":[6.6,6.4,6.5,6.4,6.7,6.5,6.8,6.3,6.4,6.8,6.6,6.7,6.7,6.7,6.7],"paint":[21.6,22.2,22,22,22.1,22.3,22.3,22.6,21.9,22.2,22.6,22.2,22,21.9,22.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[33.3,33.4,33.3,33.6,33.5,33,33.6,33,32.5,33.6,32.7,32.9,33,32.4,33],"script":[9.1,9.4,9.5,9.3,9.2,9.3,9.3,9.3,9.3,9.2,9.3,9.2,9.3,9.2,9.2],"paint":[23.6,23.4,23.3,23.7,23.7,23.2,23.7,23.2,22.6,23.8,22.8,23.1,23.1,22.7,23.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11,11.5,12.8,11,10.7,10.5,10.8,11.4,10.6,11.7,11.4,11.1,10.4,10.9,10.7],"script":[0.2,0.6,0.6,1.3,0.8,0.2,0.6,0.9,0.2,0.9,0.7,0.7,0.7,0.5,0.9],"paint":[8.7,10.2,11.3,8.2,8.8,8.7,8.9,9.3,8.8,9.7,9.7,8.4,8.5,9.4,8.3]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.2,2.7,2.4,3.2,2.7,1.8,2.6,2.3,2.1,2.5,2.3,1.8,2.3,2.3,2.3,1.6,2.4,2.3,2.5,2.3,2.1,2.1,2.3,2.4],"script":[0,0,0.5,0.5,0.9,0,0.2,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0.4,0,0,0,0],"paint":[1.5,1.1,1.6,0.4,1.6,2.5,1,0.6,1.6,1.9,1.9,1.8,1.2,2.1,1.4,1.9,0.9,1.6,1.5,1.5,1.8,1.4,1.3,1.3,1.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[22.6,23.4,23.3,23.7,24.3,23.5,23.1,23.8,22.9,23.7,23.1,23.6,24.5,22.3,22.6],"script":[7.9,9,8.8,9.4,9.7,9.1,8.7,8.8,9,9.1,9.2,9.6,8.9,8.8,8.7],"paint":[12.4,13.1,12.9,13,12.4,11.1,12.2,13.6,11.5,12.3,11.7,11.8,13,11.8,11.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.9,15.9,16.2,15.3,15.6,16.2,16.5,16.2,16.3,17.1,17,15.2,15.6,16.1,16.1],"script":[4.9,5.2,5.1,4.8,4.8,5.2,5.2,5.3,5.3,5.4,5.4,4.8,4.9,5.2,5.2],"paint":[10,9.5,9.9,9.8,10.2,10.5,10.3,9.5,10.2,10.3,10.8,9.3,9.7,9.9,10]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[293.6,292.3,293.3,292,293.3,290.6,290.1,294.6,291.9,293.4,289.8,289.8,289.7,289.9,290.6],"script":[60.8,60.3,60.2,60.7,61.1,66.3,65.2,60.8,66.7,60.2,65.6,64.5,65.1,64.8,66.1],"paint":[225.1,224.5,225.4,223.8,224.6,216.6,217.2,226.1,217.6,225.5,216.5,217.4,216.9,217.5,216.7]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.8,36.7,37,36.3,36.9,36.6,36.6,37.3,38,36.8,36.9,36.7,37.1,37.6,36.7],"script":[8.8,8.8,8.8,8.9,9,8.7,8.7,8.8,9,9,9,8.8,9.1,8.8,8.9],"paint":[27,26.9,27.1,26.4,26.9,26.9,26.9,27.5,28,26.9,27,26.9,27,27.8,26.9]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.2,10.4,11,10.9,11,10.6,10.8,10.5,10.4,11.3,12,10.6,10.4,10.3,10.3],"script":[8.6,8.4,8.6,8.7,8.9,8.9,8.7,8.7,8.1,9,9.6,9,8.7,7.9,8.1],"paint":[0.8,1.2,0.4,0.3,0.6,0.3,0.9,0.7,1.1,1.1,1.2,1.1,1.1,1.4,1.1]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6718521118164062]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846820831298828]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8653697967529297]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8487014770507812]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.640870094299316]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"01_run1k","values":{"total":[28.2,28.6,28.1,28.3,28.6,28.1,28.5,28.2,27.9,28.2,29.7,28.3,28.5,28.7,28.2],"script":[5.5,5.8,5.5,5.5,5.8,5.4,5.8,5.5,5.8,5.8,5.7,5.7,5.4,5.8,5.5],"paint":[22.2,22.3,22,22.2,22.3,22.2,22.2,22.1,21.6,21.9,23.4,22,22.6,22.3,22.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"02_replace1k","values":{"total":[32.6,32.7,32.9,33.4,32,32.5,32.2,32.4,32.7,32.8,32.7,32.1,32.7,31.7,33.1],"script":[8.4,8.4,8.6,8.5,8,8.4,8.5,8.3,8.4,8.5,8.3,8.2,8.4,8.5,8.4],"paint":[23.6,23.7,23.8,24.4,23.4,23.5,23.1,23.5,23.8,23.7,23.8,23.2,23.7,22.7,24]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13,13.6,13.2,13.8,14.6,12.5,14.1,14.1,12.1,14.6,14.1,12.2,13.3,13.8,13],"script":[1.5,1.8,1.5,1.8,1.6,1.3,1.6,1.8,1.1,1.5,2,1.5,2,1.7,1.5],"paint":[10.3,10.1,10.3,10.3,11.4,9.7,11.5,11.3,10,11.8,10.7,9.1,9.8,10.3,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.1,2.8,2.4,1.9,2.3,2.7,1.8,2.5,2.4,1.8,2.4,1.9,2.7,2.5,2.4,1.9,2.3,1.7,2.3,2.3,2.9,1.9],"script":[0,0,0,0,0,0,0,0,0.3,0.2,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0],"paint":[1,1.3,1.5,1,1.6,2.3,1.1,1.4,1.2,1.1,1.5,2.1,1,2.2,1.7,2,2.3,1.4,1.7,2,1.6,1.1,2.1,2.7,1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"05_swap1k","values":{"total":[14,14.3,14.9,13.9,15.2,14.5,14.8,14.8,14,15.5,15.6,15,16.9,14.3,13.9],"script":[0.6,1.1,0.9,0.2,1.2,0.2,0.6,0.9,0.6,1.1,0.8,1,1.4,0.2,0.9],"paint":[12.2,11.9,12.7,12.6,12.6,12.6,13,12.3,12.2,13.2,13.4,12.8,14.2,12.8,12]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.6,10.3,10.6,10.4,11,10.6,10.4,10.7,10.8,10.9,10.4,11,10.5,11,10.3],"script":[0.3,0.1,0.2,0.1,0.1,0.1,0.1,0,0.1,0.2,0,0.1,0.1,0.1,0.1],"paint":[9.8,9.7,9.7,9.8,10.3,9.8,9.5,9.8,10.1,10.1,9.6,10.5,9.8,10,9.8]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"07_create10k","values":{"total":[293.4,292.8,293.6,293.9,292.5,292.2,293.7,296.8,294.5,291.8,295.1,293.2,293,292.1,293],"script":[62.1,58.9,62,60.5,58.4,60,61,62.7,60.8,57.1,60.9,59.1,60.6,58.1,61],"paint":[223,225.7,223.4,224.9,226,224,224.6,225.5,225.4,226.4,226.1,225.8,223.7,225.1,223.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[34.1,33,33.1,33.8,33.3,34.4,32.8,34.2,33.9,33.6,33.4,33.7,33.3,34.1,33.1],"script":[6.4,6,6,6,6,6.4,5.8,6.2,6.3,6.1,6.1,6,6,6.4,6.1],"paint":[26.6,26,26.1,26.8,26.3,27,26,27,26.6,26.5,26.3,26.7,26.4,26.7,26.1]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.3,11.5,11.1,12.4,11.1,10.8,11.3,10.9,11.3,11.2,11.1,12.4,11.8,10.7,10.9],"script":[8.7,9.4,9.2,10.7,9.5,8.4,9.2,9.1,9.4,8.5,9,10.2,9.4,9.1,9.2],"paint":[1.3,1.4,0.8,0.2,0.6,1.3,1.4,0.9,1.7,1.8,0.9,1.1,0.7,1.1,0.2]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6601476669311523]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.756502151489258]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7263011932373047]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8666229248046875]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.165102005004883]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.5]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.7]}},{"framework":"uhtml-v5.0.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.7]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"01_run1k","values":{"total":[27.5,32.4,33.2,33.4,32.5,33.9,27.2,34.4,33.3,28,34.1,32.6,32.7,27.9,34.7],"script":[4.9,5.1,5,4.8,4.7,4.8,4.8,5,5,4.9,5,4.9,4.9,4.8,5.1],"paint":[21.6,22,22.1,21.6,22.2,22.1,22.1,22,21.9,22.4,21.7,22,22,22.3,22.3]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"02_replace1k","values":{"total":[36.7,30.1,28.7,32.3,33.4,37.1,32.7,32,33.1,30.5,32.6,35.2,31.9,33.9,32],"script":[7.2,7,6.9,7,6.8,6.8,6.7,6.8,7,7.1,6.9,7.1,6.8,6.9,6.8],"paint":[23.4,21.9,21.5,21.5,21.8,21.5,21.5,21.7,21.6,21.5,21.6,21.8,21.7,21.6,21.5]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.4,12.4,30.1,12.8,11.7,12.7,28.7,12.3,12.9,12.1,13.7,11.9,30,12.6,12.2],"script":[3.5,2.7,3.4,2.6,2.2,2.7,2.3,2.4,2.2,2.4,2.6,2.3,2.7,2.2,2.3],"paint":[8,9.2,9.9,9.1,9.4,9.9,10.4,9.8,9.8,9.5,9.7,9.4,9.9,9.7,8.9]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"04_select1k","values":{"total":[5.9,5,4.6,4.4,4.5,4.4,5.2,4.9,5.3,4.6,4.9,4.8,4.4,4.3,4.8,4.9,4.7,4.3,5.3,5.1,4.7,4.8,4.5,4.9,4.8],"script":[1.9,2.3,1.7,2.6,2.5,2.2,2.4,1.8,2.7,2.2,1.4,1.8,1.3,1.5,2.4,2.1,1.8,1.9,2.6,1.9,1.9,2.4,1.8,2.1,2.4],"paint":[1.9,2.5,2.2,1.6,1.2,1.9,2,2.9,2,1.6,2.6,1.8,2.3,2.4,2.3,2.4,2.8,2.3,1.8,2.2,2.7,2.2,2,2.7,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"05_swap1k","values":{"total":[16.5,32.7,31.5,32.7,32.4,30.6,32.4,31.9,33.3,15.1,31,32.7,30.9,31.3,32.2],"script":[2.5,2,1.1,2,2.1,1.7,1.9,1.7,3.2,1.7,2.3,1.9,2.6,1.4,2.4],"paint":[13.1,15.1,14.3,14.8,14.3,12.8,14.4,13.6,12.7,13.3,11.9,14.7,11.6,13.4,13.8]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,12.9,11.5,12.2,10.8,11.3,10.7,12.9,11.3,10.8,10.9,15.5,10.8,10.7,12],"script":[1.3,1.2,1.3,1.5,1.2,1.1,1.3,1,1.5,1.4,1.3,1.3,1.3,1.3,1.2],"paint":[8.9,9.2,8.9,8.9,9.4,9,9.1,9.5,9.6,9.2,9.5,9.2,9.5,9.1,9.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"07_create10k","values":{"total":[275.9,281.6,282,281.8,282.4,278,282.4,275.7,282,277.7,282.7,282.7,280.6,282.5,281.4],"script":[46.2,46,46.3,46.5,46.4,47,47.2,46.4,46,46.6,46.7,47.1,46.1,46.3,45.8],"paint":[225.8,226.4,225.2,226.3,224.6,227.1,225.9,225.3,226,227,225.6,224.5,225.7,225.8,227]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.1,41.3,39.5,41.4,39.9,40.4,38.9,40,42,41.1,40,39.4,41.5,41.2,41.6],"script":[4.9,4.9,4.6,5,4.8,4.9,4.7,4.7,4.8,4.9,4.8,4.5,5,4.9,4.9],"paint":[24.4,25.7,24.9,25.4,25.1,25,24.2,24.7,25.7,25.4,25.2,24.7,25.4,25.7,25.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,11.6,11.2,13.7,28.4,11.9,12,11.6,11.6,27,11.5,27,27.9,27.6,11.3],"script":[9.7,9.8,9,10.1,10.1,9.4,9.5,9.7,9.7,8.9,9.4,9.2,10,9.7,9.7],"paint":[1.7,1.6,1.7,1.3,2.1,2.3,1.7,1.7,1.4,1.6,0.3,1,1,1.2,1.4]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9010229110717773]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.196115493774414]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2064075469970703]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1509170532226562]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.751911163330078]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6]}},{"framework":"ui5-webcomponents-v2.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"01_run1k","values":{"total":[32.5,32,32.3,32.6,32.7,32.3,34.1,33.6,32.7,33.2,32.8,32.6,33.3,32.4,32.5],"script":[11.4,10.7,11.4,11.5,11.5,11.6,12.3,12.5,11.6,11.6,11.6,11.7,12.2,11.6,11.7],"paint":[20.5,20.7,20.4,20.5,20.6,20.1,21.3,20.6,20.6,21,20.6,20.3,20.5,20.3,20.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"02_replace1k","values":{"total":[35.5,36.2,36.6,36.3,36.8,36.6,36.4,38.2,36.8,36.2,37,36.8,37.2,36.8,37.2],"script":[14,14.4,15,14.9,14.9,14.9,14.8,15.1,15,14.9,15,15,15.1,15,15.1],"paint":[20.9,21.2,21,20.9,21.3,21.2,21,22.5,21.3,20.7,21.4,21.3,21.6,21.2,21.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.4,25.7,24.9,25.3,24.5,25,24.9,25.1,24.8,25.3,25.2,26.2,26.3,24.4,25.6],"script":[12.8,13.1,13.1,12.8,12.4,12.2,13.3,12.5,12.9,13.1,12.8,13.4,14.5,12.9,13.4],"paint":[10.1,9.7,9.6,10.1,10.6,11,10.1,11.3,10.5,10.6,10.6,10.4,10.6,9.1,10.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"04_select1k","values":{"total":[7.1,7,6.6,6.8,7.6,7.4,7.3,8.5,7,7.2,7.4,7.4,7.9,7.2,8.1,7.2,7.9,7.9,7.4,7.5,7.3,7.4,7.4,7.8,7.4],"script":[4.7,4.8,4.2,4.2,4.7,4.6,4.9,5.9,4.4,4.7,5.4,4.6,5.2,4.2,5.1,4.5,5.2,5.1,5.4,4.4,5.1,5.4,5.2,5.5,4.9],"paint":[1.7,2.1,1.9,2.5,2.8,2.3,1.8,1.9,2.5,1.4,1.2,2.7,1.9,2.9,2.3,2,1,2.1,1.9,2.9,2.1,1.9,2.1,2.2,1.4]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"05_swap1k","values":{"total":[109.5,108.5,111.8,110,108.2,109.1,107.9,107.4,108.1,110.8,109.5,108.8,110.3,107.5,109],"script":[23.5,23.3,24.3,24.3,22,23.2,22.3,22.5,23.2,25.7,22.9,22.9,23.8,22.7,22.9],"paint":[84.1,83.4,85.1,83.7,83.7,84.3,83.6,83,81.2,81.5,84,84,83.9,83.6,83.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.7,17.4,17,16.7,17.1,16.8,17.4,16.4,16.9,16.6,17.3,17.2,17.3,16.9,16.6],"script":[5.8,6.2,6,5.7,6.1,5.7,6.1,5.7,5.8,5.6,5.7,5.7,6,5.6,5.8],"paint":[9.9,10.1,10.1,10.1,10,10.1,10.5,9.6,9.9,9.6,10.2,10.6,10.5,10.6,9.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"07_create10k","values":{"total":[433.6,439.4,436.3,434.6,438.7,436.1,433.1,437.8,442.1,440.3,439.7,442.8,434.5,445.7,438.7],"script":[201.5,210.7,207.6,205.4,205.5,207.4,203.2,202.9,204.9,210.2,209.6,210.3,205.5,212.1,207.4],"paint":[224.7,221.2,221.4,221.9,225.8,221,222.5,227.8,229.6,222.9,222.9,224.5,221.7,225.9,223.9]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.7,40.1,41,41.2,41.2,40.9,41.1,40.8,41.2,41.8,40.8,40.9,40.7,40.7,40.7],"script":[13.8,13.8,14.8,14.8,14.9,14.7,14.7,14.5,14.7,14.7,14.8,14.8,14.7,14.8,14.7],"paint":[25,25.3,25.3,25.5,25.4,25.3,25.5,25.3,25.6,26.2,25.1,25.2,25.2,25,25.1]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.2,14.5,14.9,13.3,15.6,14.3,14.9,14.5,14.4,14.4,15.8,14.9,13.8,14.2,14.1],"script":[13.5,12.5,13.1,11.4,13.5,12.7,13.2,12.8,11.9,12.2,13.3,13,11.7,12.2,12],"paint":[0.3,0.9,1.1,1,1.1,1,1.1,0.3,1.2,1.1,1.1,1.1,1.2,0.5,0.6]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1480741500854492]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.062597274780273]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.648952484130859]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.860006332397461]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.791500091552734]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.2]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.3]}},{"framework":"valtio-v18.2.0 + 2.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[159.1]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[23.1,23.6,23.4,23.9,23.6,23.6,23.7,23.5,23.4,23.2,23.6,23.8,23.7,23.4,23.7],"script":[1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.5,1.5,1.4,1.5],"paint":[21.3,21.8,21.6,22.1,21.8,21.8,21.8,21.6,21.6,21.4,21.7,22,21.9,21.5,21.9]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[25.8,26.1,26.2,26,26.1,26.3,28.9,26.2,27,26.3,29.1,26.8,26.4,26.2,27.2],"script":[3.3,3.6,3.3,3.3,3.4,3.4,3.5,3.5,3.6,3.3,3.6,3.8,3.5,3.5,3.6],"paint":[22.1,22.2,22.4,22.3,22.4,22.5,24.9,22.3,23,22.5,24.8,22.6,22.5,22.3,23.2]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.4,11.8,11.1,11.1,10.7,10.2,10.2,10.5,9.8,11.4,9.8,10.8,10.8,10.5],"script":[0.5,0.8,0.6,0.1,0.1,0.3,0.1,0.4,0.1,0.7,0.1,0.1,0.5,0.9,0.1],"paint":[9.6,8.6,9.9,10.8,9.8,9.3,8.6,8.6,9.3,7.8,10.3,8.6,9.2,8.8,8.9]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.9,1.7,3,2.4,2.2,2.3,2.1,2.1,2.7,2.7,2.1,1.9,2.5,2.4,2.4,2.6,3.3,2.5,2.9,3.6,2,2.9,3.1,2.8,2.8],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.1,0.1,0.6,0.1,0.3,0.1,0.5,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[2.3,1.5,2.8,1.5,1.3,1.8,1.6,1.3,2.5,1.4,1.1,1.1,1.7,2.2,1.2,2.2,2.1,2.3,2,2.3,1,2.4,2.9,1,2.1]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[13.4,12.6,12.3,12.9,13.1,13.2,12.6,12.3,13.2,13.1,12.7,13.2,14,12.5,13.1],"script":[0.1,0.1,0.1,0,0.1,0.6,0.1,0.4,0.9,0,0,0.2,0.1,0.1,0.1],"paint":[12.4,11.5,11.3,11.3,11.6,11.6,10.2,10.7,11.2,11.8,12,12,12.7,11.5,12.1]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.3,10.3,10.4,10.4,10.4,10.4,10.3,10.4,10.2,10.3,10.2,10.3,10.6,11.2],"script":[0.5,0.4,0.2,0.3,0.5,0.3,0.3,0.4,0.4,0.1,0.3,0.4,0.3,0.3,0.2],"paint":[9.7,9,9.5,9.6,8.7,9.4,9.4,8.9,9.4,9.5,9,9,9.6,9.4,10]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[243.9,244.7,239.9,241.8,241.7,248.1,244.2,239.4,242.4,244.7,241.2,242.5,239.9,240.4,246.2],"script":[15.3,15.5,15.3,15.3,15.4,15.2,15.1,15.2,15.5,15.2,15.3,15.3,15.2,15.4,15.2],"paint":[221.1,221.7,217.1,219.2,218.7,225.6,221.7,216.6,219.4,222.1,218.6,219.7,217.3,217.6,223.1]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.5,27,27.8,27.1,27.1,27.1,27,27.8,26.9,27.3,26.8,27,27.5,27,26.8],"script":[1.3,1.3,1.4,1.3,1.4,1.4,1.3,1.4,1.4,1.4,1.4,1.3,1.4,1.4,1.4],"paint":[24.4,24.9,25.7,25,25,25,24.9,25.7,24.8,25.1,24.6,24.9,25.4,24.9,24.7]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.9,8.9,9.4,9.2,9,9.7,9.5,8.7,8.4,9.3,9.8,9.5,10.3,8.8,9],"script":[7.3,7,7.5,7.4,7.5,7.9,7.5,6.6,7.1,6.8,7.7,7.3,7.9,7.3,7],"paint":[0.5,1.6,1,1,0.2,1.5,0.7,1.6,0.3,1.6,1.2,2,1.4,0.7,1.6]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5553064346313477]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9264802932739258]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9393119812011719]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6158943176269531]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.013230323791504]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.3]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.2]}},{"framework":"vanillajs-3-keyed","benchmark":"01_run1k","values":{"total":[23.2,23.5,23,23.3,23.1,23,23.1,23.1,23.1,23.2,23.1,23.3,22.9,22.7,23.5],"script":[1.3,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.2,1.3,1.3,1.3,1.3,1.2,1.3],"paint":[21.5,21.9,21.4,21.7,21.5,21.4,21.5,21.4,21.5,21.6,21.5,21.7,21.3,21.1,21.9]}},{"framework":"vanillajs-3-keyed","benchmark":"02_replace1k","values":{"total":[26,25.9,25.7,25.6,25.5,25.8,25.9,25.6,25.8,25.8,25.8,25.9,25.7,25.7,25.8],"script":[3.2,3.3,3.1,3.1,3.2,3.1,3.2,3.1,3.2,3.1,3.3,3.3,3.1,3.1,3.1],"paint":[22.4,22.2,22.2,22,21.9,22.3,22.3,22.1,22.3,22.4,22.2,22.2,22.2,22.2,22.3]}},{"framework":"vanillajs-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,10.1,9.1,10,9.4,9.5,10.9,10.2,9.4,10.2,10.2,9.6,9.9,9.7,10],"script":[0.1,0.1,0.1,0.1,0.3,0.1,1,0.4,0.1,0.1,0.1,0.1,0.1,0.4,0.1],"paint":[9.1,8.3,8,8.6,7.9,8.8,9,8.7,8.2,8.9,8.5,8.5,8.8,7.8,8.7]}},{"framework":"vanillajs-3-keyed","benchmark":"04_select1k","values":{"total":[3,2.4,2.5,1.6,2.1,2.1,2.2,2.9,2.1,1.8,2.1,1.9,1.9,1.9,1.7,2,1.9,2.2,2.1,2.4,2.6,2.4,2.2,2.4,2.9],"script":[0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0],"paint":[1.9,1.4,1.7,1.4,1.9,1.1,2,1.7,0.5,1,1.2,1.1,1.1,1.7,1.5,1.2,1.1,2,1.4,1,1.3,1.9,2,0.4,1.8]}},{"framework":"vanillajs-3-keyed","benchmark":"05_swap1k","values":{"total":[12.9,11.8,12.9,12.5,12.2,12.4,12.5,12.9,12.9,13.5,12.6,12.3,12.3,12.6,12.7],"script":[0,0,0,0,0,0,0,0,0.1,0.8,0,0.1,0,0.1,0.1],"paint":[10.6,11,12.3,11,11,10.8,11.3,11.4,11.9,11.2,11.3,10.6,11.2,11,10.8]}},{"framework":"vanillajs-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.2,10.3,10.2,10,10.2,10.1,11.1,10.1,10.3,10.1,10.1,10.3,10.1,11.3,10.1],"script":[0.1,0.3,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.2],"paint":[9.5,8.9,9.6,8.8,9.6,9.1,10.3,9.4,9.6,9.4,9.5,9.6,9.2,10.3,9.3]}},{"framework":"vanillajs-3-keyed","benchmark":"07_create10k","values":{"total":[244.1,244,243.2,243.5,243.8,243.3,244,244.7,243.8,242.2,242.8,243.5,242.8,242.4,243.4],"script":[13.4,13.4,13.4,13,13.3,13.4,13.3,13.4,13.2,13.5,13.4,13.5,13.3,13.1,13],"paint":[223.4,223.6,222.6,223.4,223.5,222.8,223.5,224.1,223.5,221.6,222.4,223,222.3,222.2,223.3]}},{"framework":"vanillajs-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.2,27,27,27,27.3,26.9,26.9,26.8,27.5,27,27.1,26.9,26.9,26.8,27.3],"script":[1.3,1.3,1.3,1.3,1.3,1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[25.2,25,25,25,25.3,24.9,24.9,24.8,25.5,25,25.1,24.9,24.8,24.8,25.3]}},{"framework":"vanillajs-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.1,9,9.6,9.9,9.7,9.8,9.2,9.5,9.4,8.5,9.4,8.8,8.6,9.1,9.4],"script":[7.2,7,7.2,7.8,7.9,7.8,7.3,7.7,7.4,7.1,7.6,7,7.3,7,7],"paint":[1.1,0.3,1.3,1,1.5,1.1,1,1.5,0.8,0.7,0.5,0.2,0.2,1.2,2.2]}},{"framework":"vanillajs-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45289039611816406]}},{"framework":"vanillajs-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.785104751586914]}},{"framework":"vanillajs-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.802682876586914]}},{"framework":"vanillajs-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5789070129394531]}},{"framework":"vanillajs-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.472906112670898]}},{"framework":"vanillajs-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.3]}},{"framework":"vanillajs-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[36.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"01_run1k","values":{"total":[23.2,22.8,23.1,23.2,23.2,23.8,23.5,23.9,23.3,23.1,23.2,22.9,23,23.2,23],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5],"paint":[21.3,20.9,21.3,21.4,21.3,21.9,21.7,22,21.4,21.3,21.3,21.1,21.2,21.3,21.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"02_replace1k","values":{"total":[26.2,25.4,26,25.9,26.3,25.9,26,25.8,26,26.3,26,26,25.9,25.7,25.9],"script":[3.6,3.3,3.6,3.6,3.7,3.4,3.6,3.5,3.5,3.6,3.4,3.5,3.4,3.4,3.5],"paint":[22.2,21.7,22,21.9,22.2,22.1,22,22,22.1,22.3,22.2,22.1,22.2,21.9,22]}},{"framework":"vanillajs-lite-keyed","benchmark":"03_update10th1k_x16","values":{"total":[9.8,10.4,10.1,10,9.3,10.9,10.2,10.6,9.8,10.6,9.9,10,10.3,9.9,9.8],"script":[0.1,0.1,0.9,0.7,0.6,0.5,0.9,0.1,0.1,0.9,0.1,0.4,0.9,0.1,0.1],"paint":[9.1,9.2,8.3,8,7.4,9.6,8.3,9.6,8.9,7.9,8.9,8.7,8.8,8.7,8.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"04_select1k","values":{"total":[2,1.9,2.1,2,2,2.4,2.5,2.3,2.1,2.6,1.6,2.3,2.4,1.2,1.7,2.3,1.8,2.3,2.7,2.5,2,2.6,1.7,2,2.1],"script":[0,0,0,0,0,0,0.7,0,0.5,0.5,0,0,0,0,0,0,0,0.7,0.9,0.7,0,0,0.1,0.2,0],"paint":[1.2,1,2,1.1,1.9,1.7,1.7,2.2,1.1,1.6,0.7,1.6,0.8,1.1,0.8,1.8,0.6,1.5,1.3,1.6,1.8,2.5,1.5,1.2,1.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"05_swap1k","values":{"total":[13,12.7,13.2,12.6,12.2,12.5,12.2,13.5,13.5,12.9,12.2,12.5,13.6,13.3,12.4],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.3,0.1,0.9,1,0.5],"paint":[11.9,11.3,11.8,11.3,10.8,11.5,10.9,11.8,11.4,11.6,10.2,11.3,12,11.1,11]}},{"framework":"vanillajs-lite-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,9.9,9.8,10.2,10.1,10,9.8,10.1,10.2,10.4,10.1,10.1,9.8,10.4,10],"script":[0.2,0,0,0.2,0,0,0,0,0,0,0,0.3,0,0.1,0.2],"paint":[9.4,9.1,9.3,9.3,9.5,9.5,9.3,9.7,9.6,9.7,9.5,9,9.1,9.9,9.3]}},{"framework":"vanillajs-lite-keyed","benchmark":"07_create10k","values":{"total":[238,238.4,238,237,238,239.2,239,237.3,237.9,237.8,237.3,237.4,237.2,238.2,238.7],"script":[14.1,14.4,14.3,14.2,13.8,14.6,14.2,14.3,14.1,14.2,14.2,14.3,14.3,14.3,14.2],"paint":[216.5,216.7,216.3,215.4,217,217.4,217.6,215.5,216.6,216.3,215.4,215.8,215.6,216.5,217.2]}},{"framework":"vanillajs-lite-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[26.8,27.2,27,27,27.2,27,27.3,27.3,26.9,27.1,26.9,26.9,27.3,27.2,27.1],"script":[1.5,1.5,1.5,1.5,1.5,1.5,1.4,1.4,1.5,1.4,1.4,1.4,1.5,1.5,1.4],"paint":[24.6,25,24.8,24.8,25,24.8,25.1,25.1,24.6,24.9,24.7,24.8,25.1,25,24.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,8.9,8.8,8.3,9,8.4,9.1,9.3,8.9,9,9.7,9.6,9,8.8,9.4],"script":[7.5,7.5,6.3,7.2,7.6,7,6.9,7,7.2,7,7.7,7.6,6.7,7.7,7.3],"paint":[2,0.4,1.6,0.9,0.2,0.7,0.7,1.3,0.7,1.1,0.7,1,0.8,0.2,1.1]}},{"framework":"vanillajs-lite-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5253086090087891]}},{"framework":"vanillajs-lite-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7548255920410156]}},{"framework":"vanillajs-lite-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.747751235961914]}},{"framework":"vanillajs-lite-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6203269958496094]}},{"framework":"vanillajs-lite-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.094637870788574]}},{"framework":"vanillajs-lite-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.9]}},{"framework":"vanillajs-lite-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.4]}},{"framework":"vanillajs-lite-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"01_run1k","values":{"total":[25.7,26.1,26.4,26.3,26.3,25.8,26.1,26,26.3,26.7,25.8,25.9,26.3,26.3,25.9],"script":[4,4,4.2,4.1,4.1,4,4,4.1,4.1,4.2,4,4,4,4.1,4],"paint":[21.3,21.8,21.7,21.8,21.8,21.4,21.7,21.5,21.8,22.1,21.4,21.4,22,21.8,21.5]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"02_replace1k","values":{"total":[29.1,29.8,29.6,29.2,29.4,30.1,28.8,29.2,29.6,29.1,29.6,29.3,29.2,29.7,29.2],"script":[6.4,6.7,6.5,6.6,6.7,6.7,6.4,6.5,6.5,6.7,6.6,6.5,6.5,6.6,6.2],"paint":[22.1,22.6,22.5,22,22.1,22.8,21.8,22.1,22.4,21.8,22.4,22.3,22.1,22.5,22.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.1,11.6,11.2,11,10.7,11.1,10.9,11.7,10.6,12,11.7,11.6,11.3,10.6,10.7],"script":[1,1.4,1.1,0.9,1,1.4,0.8,0.6,0.6,1.9,0.9,0.9,1.4,0.6,0.7],"paint":[8.3,9.2,9.3,8.9,8.8,8.7,8.8,9.4,9.1,9,9.3,9.7,8.6,9.3,8.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"04_select1k","values":{"total":[5.1,2.6,2.5,2.6,2.4,2.5,2.7,2.3,3,2.9,1.7,2.8,1.9,1.9,1.7,2.2,2.1,2.5,2.4,2.7,2.6,2.6,4.1,1.7,2.4],"script":[0.1,0.5,0.1,0.3,0.1,0.1,1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.8,0.8,0.6,0.1,0.6,0.1,0.1],"paint":[1.5,1.5,1.3,2.2,2.2,1.9,1.6,1.3,1.6,2.7,0.7,1.5,1.7,1.7,0.7,2,1.1,1.5,1,0.5,1.5,1.7,2.1,0.7,2.2]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"05_swap1k","values":{"total":[12.8,13.6,12.1,13.6,12.8,12.7,13.3,13.5,13,13.2,12.9,12.2,12.9,12.3,12.5],"script":[0.1,0.9,0.3,0.1,0.1,1,0.1,0,0.1,0.8,0.1,0.1,0.1,0.1,0.2],"paint":[12.1,11.5,10.6,12.8,11.1,9.5,11.3,11.9,12.3,10.9,11.7,11.3,11.6,10.8,10.9]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.5,10.2,10.5,10.2,11.5,10.1,10.6,10.1,10.2,10.2,10.2,10.4,10.2,11.1,10.1],"script":[0.3,0.1,0.2,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1],"paint":[9.2,9.8,9.8,9.5,10.7,9,9.6,9.5,9.5,9.5,9,9.5,9.2,10,9.4]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"07_create10k","values":{"total":[259.2,258.5,262.1,258.9,258.6,260.5,258.2,259.3,257.4,262.1,259.3,258.3,258.6,258.9,257.5],"script":[42.2,41.5,45.3,42.1,41.6,43.3,41.7,41.8,41.4,41.6,41.8,41,41.2,41.9,41.7],"paint":[209.8,209.8,209.7,209.7,209.8,210,209.3,210.3,208.8,212.8,210.1,210.2,210.1,210,208.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.2,29.6,30.2,29.9,30.6,30,30,30,30.1,30.1,30.2,30.4,29.7,30.2,30.1],"script":[3.6,3.7,3.7,3.5,3.8,3.6,3.8,3.7,3.8,3.7,3.6,3.6,3.4,3.7,3.5],"paint":[25.7,25.2,25.7,25.6,26,25.7,25.5,25.6,25.5,25.5,25.8,26,25.5,25.8,25.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.6,9.1,9.8,9.7,9.4,10.6,9.4,10.1,9.3,9.2,10,9.5,9,9.3,10.5],"script":[7.9,7.4,8.1,7.9,6.9,8.7,7,7.6,7.9,7.6,7.6,7.5,7.6,7.7,7.9],"paint":[1,1,0.3,0.7,1.4,1.7,1,1.3,0.2,0.2,1.3,1.1,0.6,1,1.7]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5794839859008789]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8852968215942383]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8938894271850586]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.96817398071289]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37497615814209]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.1]}},{"framework":"vanillajs-signals-v0.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[24.6,25.2,24.9,25,24.9,25.1,24.5,24.9,24.3,24.8,24.9,25.1,25.1,24.6,24.9],"script":[2.7,2.7,2.7,2.7,2.7,2.8,2.7,2.7,2.6,2.7,2.7,2.8,2.8,2.7,2.7],"paint":[21.6,22.1,21.8,21.9,21.8,21.9,21.5,21.8,21.3,21.7,21.8,21.9,21.9,21.5,21.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[28.4,28,27.9,27.9,28,28.1,27.8,27.7,27.8,27.9,27.8,28.5,28.3,28.3,27.9],"script":[4.6,4.6,4.8,4.6,4.6,4.7,4.5,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.9],"paint":[23.4,23.1,22.7,22.9,22.9,22.9,22.8,22.6,22.7,23,22.8,23.3,23,23.3,22.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.2,10.7,10.5,11.1,10.9,10.3,11.7,11.7,11.2,10.6,11,11.1,10.7,10.3,10.4],"script":[0.5,0.1,0.1,0.9,0.9,0.5,0.7,0.8,0.7,0.5,0.8,1,0.6,0.5,0.1],"paint":[10.1,9.5,9,8.8,8.2,8.9,9.4,9.6,9.3,9.1,9.1,8.7,9.1,8.8,8.7]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[3.7,2.4,2,2.3,2.2,2.8,2,2.6,2.1,1.9,2.4,2.4,1.9,2.7,2.9,2.3,2.6,3.1,2.6,2.5,2.7,2.5,1.7,2.7,2],"script":[0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.6,0,0,0.7,0.9,0,0,0.7,0,0,0,0],"paint":[1.4,2.2,1.1,2,1.7,2.6,1.3,1.4,1.2,1.8,1.3,1.8,1.7,1.6,2.7,1.4,1.8,2.1,2.2,2,1.9,2.2,1.5,0.9,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[13.1,12.9,11.8,12.7,12.3,13.4,12.3,12.5,12.9,14,13,12.3,13.8,13.6,12.8],"script":[0.1,0.1,0,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.1,0.7,0.1],"paint":[11.2,11.9,10.8,11.1,11,12.1,11.1,11.4,11.5,13,10.9,10.8,12.2,11.7,12.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.4,10.2,10.3,11,10.4,10.3,9.9,10.1,10.3,10.3,10.4,10.2,10.3,10.9,11],"script":[0.2,0.1,0.1,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.3],"paint":[9.6,9.6,9.6,9.8,9.2,9.5,9.2,9.4,9.5,9.4,9.8,9.2,9.9,10.2,9.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[269,269.9,273.6,271.1,271.5,270.6,270.4,271.1,271.4,270.7,270.2,269.5,272.2,268.9,269.2],"script":[33.1,33.9,33.8,34.5,33.6,33.8,33.2,33.2,33.5,34.1,33.9,33.2,33.9,33.6,33.4],"paint":[228,228.4,231.8,229,230.3,229.3,229.6,230.5,230.4,229,228.8,228.8,230.9,227.6,228.2]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.9,28.7,28.4,28.7,28.7,28.5,28.1,29,28.5,28.8,28.9,28.5,28.6,29,28.6],"script":[2.6,2.6,2.6,2.6,2.6,2.7,2.5,2.6,2.7,2.6,2.6,2.6,2.7,2.6,2.6],"paint":[25.5,25.4,25,25.3,25.4,25,24.9,25.6,25,25.4,25.5,25.2,25.2,25.7,25.3]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[8.4,9.5,10.4,8.5,9.1,8.9,9.6,9.4,9.4,9.7,9.5,9.5,9.7,8.7,9.1],"script":[7.2,7.1,8,7.2,7.1,7.2,7.5,7.8,7.6,8.3,7.5,7.6,7.6,7.2,7.3],"paint":[0.4,1.2,1.1,0.3,0.7,0.3,0.9,0.8,1,0.2,1.1,1.1,1,0.6,0.9]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5628242492675781]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.051118850708008]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9887714385986328]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6641139984130859]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.017549514770508]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.8]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[31.6,31.2,31.3,31.3,31.9,30.7,31.3,31.4,31.8,31.5,30.6,31,31.3,30.7,30.6],"script":[8.1,8,7.9,7.9,8.2,7.6,8,7.9,7.9,8,7.6,7.8,8,7.7,7.8],"paint":[23,22.7,22.8,22.8,23.2,22.6,22.7,23,23.3,23,22.5,22.7,22.7,22.4,22.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[33.7,33.6,34.6,34.2,34,34.1,34.4,34.3,34.7,33.2,33.7,33.6,33.4,34,34.1],"script":[10.5,10,10.7,10.5,10.4,10.6,10.7,10.5,10.9,10.1,10.1,10.3,10.5,10.5,10.5],"paint":[22.6,23,23.3,23.1,23,22.9,23.2,23.2,23.2,22.4,23,22.8,22.4,22.9,23.1]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.7,30.3,31.6,30.6,30.5,32.4,30.8,30.4,14.6,29.9,31.5,30.9,29.8,30.6,30.6],"script":[1.6,0.9,1.3,1.8,0.6,1.5,1.2,1.4,1.5,0.8,1.2,0.3,1.3,2.5,1.1],"paint":[13.5,13,11.1,13.1,13,13.6,13.3,12.8,11,13.1,13.8,13.5,12.6,12.6,12.7]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[11.1,7.9,6.9,8,8.3,10.3,4.3,8.7,12.8,8.5,7,9.1,8.7,4.1,7.6,7.2,8.5,10.2,9.6,6,7.6,7.1,12.1,6.5,8.7],"script":[0.1,0.1,0.6,0.1,1,0.5,0.1,1.7,0.1,1,0.1,0.5,0.8,0.6,0.1,0.6,0.1,0.8,1.1,1.7,0.8,0.9,0.6,0.9,0.8],"paint":[2.3,3.2,2.8,3.2,2.8,2.4,1.7,3.3,2.5,4.1,2.5,1.8,3,2.2,2.8,2.2,2.8,2.1,2.2,4,3.2,2.7,2.5,3.4,2.6]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[13.5,12.7,12.6,12.9,12.8,12.8,14.4,12.8,13.9,14.4,13.2,13.5,13.6,13.2,12.3],"script":[0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.7,0.1,0.1,0.1,0.1],"paint":[11.7,11.4,11,11.7,11.8,11.1,13.3,10.7,12.1,13.2,11.4,11.8,12.3,12,11.3]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.7,14.2,15.6,12.5,12.3,15.2,14.2,15.2,14,15.6,13.3,13.3,12.5,16.4,14.3],"script":[0.4,0.1,0.1,0.2,0.1,0.1,0.4,0.4,0.2,0.1,0.1,0.1,0.1,0.2,0.1],"paint":[11.2,11,10.7,11.2,11.3,11.2,11.5,11.3,10.9,11.2,11,11.5,11.5,11.1,11.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[308.4,305.6,305.7,307.4,308.7,309.6,308.8,307.5,306.5,307.3,309.4,308.6,308.3,310.6,308.1],"script":[82.1,82.6,82.7,82.5,83.2,84,83.5,82.7,82.6,82.3,83.3,83.5,82.2,82.5,82.2],"paint":[218.5,215.5,215.7,217.4,218,218.2,217.3,217.4,216.4,217.3,218.1,217.7,218.6,220.6,218.5]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.4,35.3,35.6,35.2,34.7,35.1,36.3,35.6,35.6,36.2,34.5,36.5,36.2,35.5,36.1],"script":[8.2,8.2,8.2,8,7.8,8.3,8.1,8.2,8.2,8.3,7.4,8.3,8.3,8.1,8.3],"paint":[26.3,26.2,26.5,26.4,26,25.9,27.3,26.4,26.5,26.8,26.1,27.2,27,26.4,26.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.1,10,9.9,10.4,10.6,10.5,10.1,10.1,10.3,10.7,10.5,9.7,9.3,9.9],"script":[8.5,8.3,7.9,7.7,8.6,8.5,8.6,8.2,8.3,7.9,8.7,8.1,7.7,7.4,8.1],"paint":[1.1,1,1.8,1.1,0.9,0.3,0.6,0.3,0.7,1.8,1.1,1.6,1.7,0.2,0.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5455751419067383]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3677263259887695]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.4113292694091797]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6566858291625977]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.451854705810547]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.8]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2]}},{"framework":"vanjs-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[28.1,28.2,28.6,28.4,27.9,28,28.5,28.1,28.3,28.2,28.7,28.1,28.9,29.3,28.7],"script":[6.2,6.4,6.4,6.3,6.2,6,6.5,6.1,6.2,6.4,6.5,6.1,6.8,6.8,6.4],"paint":[21.4,21.3,21.6,21.6,21.2,21.4,21.6,21.5,21.6,21.2,21.7,21.4,21.6,22,21.8]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[35.4,35.1,35.2,35,35.3,35.1,35.2,35,35.3,34.9,35,35.3,36,35.2,35.4],"script":[12,11.6,12.1,11.7,12,11.9,11.9,12.1,12,11.6,11.7,12.1,12.1,11.8,11.9],"paint":[22.9,23,22.5,22.7,22.7,22.6,22.8,22.3,22.8,22.6,22.7,22.6,23.3,22.9,23]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.9,13.1,14,14.3,15.3,13.6,14.7,14.7,13.7,14.6,13.6,13.2,13.9,13.7,13.7],"script":[2.8,2.7,3,2.2,2.7,2.8,3.2,3.2,2.5,3.3,2.4,2.5,3.1,2.5,3.3],"paint":[10.1,9.4,9.6,11.2,11.1,8.9,10.8,10.3,10,9.9,10.2,9.8,9.4,10.2,8.5]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.9,2.9,3.4,3.5,5,6.8,3.4,3.3,2.9,3.2,3.1,2.5,2.8,6.8,3,3,3.3,3.3,2.5,3.9,3.5,3.7,4,2.8],"script":[1.1,0.9,0.9,0.9,1.6,1.2,1.1,1.4,1.2,1,1.1,1,0.6,0.7,0.9,1.4,1.2,1,1.4,0.6,1,1.5,0.9,1.8,0.9],"paint":[1.6,1.9,1.8,1.5,1.5,1.6,1.6,1.1,1.6,1.1,1.9,1.5,1.1,1.6,1.9,1.5,1.2,2.1,1.8,1.1,2.7,1.9,2.6,2,1.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[15.1,14.1,14.5,14.5,13.7,15.3,14.2,14.1,14.4,15,14.7,14.8,14.8,14.3,14.4],"script":[1.7,1.8,1.5,1.3,1.5,1.8,1.7,1.7,1.9,2.2,1.7,2.1,1.4,1.3,1.6],"paint":[12.4,11.4,12,12.3,11.2,12.3,11.5,11,10.7,11.4,11.7,11.4,12.1,12.3,11.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.5,11.1,11.3,10.9,11.2,11,10.9,11.4,11,10.9,11,11.1,11.5,11.1,11.3],"script":[1.1,0.9,0.9,0.9,0.7,0.9,0.7,0.7,0.7,0.9,1.1,0.8,1,0.9,0.9],"paint":[9.4,9.7,10,9.4,9.8,9.6,9.6,10.3,9.5,9.5,9.4,9.7,9.5,9.5,9.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[290.8,293,294.2,294.8,294.2,293.7,296.7,294.5,293.5,292.6,295,295.9,294.3,292.3,293.7],"script":[68.6,71.4,71.7,71.9,72.7,72,72.9,70.1,72.1,69.6,71.2,71.2,72.9,70.5,72.1],"paint":[215,214.5,215,215.7,214.3,214.6,216.3,217.1,214.1,215.7,216.3,217.2,214.3,214.5,214.4]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.2,33.5,34.4,33.3,33.6,34.8,34.4,34.6,33.3,34.5,33.7,34.9,34.7,34.7,34.9],"script":[7.5,7.6,7.7,7.6,7.6,8.3,8,8.1,7.6,7.7,7.6,8.2,7.8,8.1,8.1],"paint":[24.8,25,25.7,24.8,25.1,25.7,25.5,25.6,24.8,25.8,25.2,25.8,25.9,25.7,25.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.7,10,9.9,10.2,9.9,10.6,11.1,9.8,10.4,10,10.6,9.9,10.4,9.6,10.1],"script":[7.8,8.1,8.1,8.5,7.9,8.8,8.5,7.5,8,8.1,8.3,7.8,8.4,8.1,8.3],"paint":[0.6,1.6,1,1,1.1,1,1.6,2.1,1.8,1.2,0.9,1.8,0.9,0.6,1.3]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6544361114501953]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.32164192199707]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.416909217834473]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9748268127441406]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.38222885131836]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[39.9]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.1]}},{"framework":"viewfly-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[27.3,28,27.9,27.9,28,27.6,27.6,28.1,27.4,28.4,27.8,27.5,28,27.3,27.3],"script":[5.9,6.3,6.2,6,6.2,6.2,6.2,6.5,5.9,6.3,5.9,6.1,6.3,5.9,5.9],"paint":[20.9,21.1,21.2,21.4,21.2,20.8,20.9,21.1,20.9,21.6,21.3,20.9,21.2,20.9,20.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.1,30.4,30.9,30.4,31.3,31.3,31.1,31.1,31.7,31.4,31.5,31.2,30.5,30.8,30.4],"script":[8.1,7.9,8,7.9,8.2,8.1,8,7.9,8.2,8.2,8.2,8,8.1,7.7,7.8],"paint":[22.4,21.9,22.4,22,22.5,22.6,22.5,22.6,22.9,22.7,22.7,22.6,21.8,22.5,22]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[13.3,13.3,12.7,13.3,13.7,12.6,13.4,14,13.6,12.9,12.5,12.3,13.3,13.2,12.5],"script":[2.9,2.2,1.8,2.6,2.7,2.1,2.5,2.4,2.9,2.1,1.8,2.2,2.3,2.2,2.1],"paint":[9.2,9.9,9.6,8.8,10.2,9.3,9.1,10.6,10,9.8,9.9,8.8,10.1,10,9.2]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.2,3.3,2.8,3,3.2,3.7,3.3,3.6,3.7,4,2.9,3.6,3.2,3.4,3.3,3.7,3.1,3.1,2.8,3.7,3.7,2.9,3.2,3.4,3.8],"script":[1,0.2,1,0.8,1,0.9,0.6,1.2,1.2,1.6,0.9,0.9,0.9,1.2,1.1,1.7,0.7,0.9,0.7,1.9,1.2,1.1,0.8,1.2,1.2],"paint":[1.3,2.9,1.2,1.3,1.3,0.6,1.7,1.5,1.4,2.2,1.1,1,1.4,2.1,2.1,1.8,1.1,0.9,2,1.7,1.6,1.2,1.3,1.1,1.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[17.1,14.7,14.7,13.8,14.3,14.9,15.4,14.4,14.6,15,15.1,14.6,14.8,14.6,13.8],"script":[1.8,1,1.7,1.2,1.6,1.5,1.6,0.7,1.5,1.9,1.7,1.6,1.6,1.5,1.2],"paint":[14.4,12.5,12,11.5,11.8,11.3,12.8,10.9,11.9,11.9,12,12.3,12.2,11.7,11.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[12.9,12.7,13.3,12.8,13.1,12.6,12.3,12.8,12.7,12.7,13,12.8,12.9,13,12.7],"script":[2.4,2.3,2.3,2.4,2.4,2.4,2,2.4,2.3,2.4,2.4,2.4,2.2,2.4,2.4],"paint":[8.9,9.4,10.1,9.7,10.2,9.6,9.7,9.5,9.6,9.7,10,9.7,9.9,9.6,9.5]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[287.2,287.5,287.2,287,286.9,287.1,287.9,290.3,286.9,287.4,289.1,289.5,291.6,287.7,288.2],"script":[60.9,61.3,62.7,61.4,61.8,61,61.9,62.5,61.4,60.6,63.1,62.4,62.1,61.3,62.3],"paint":[219.1,218.7,217.2,217.8,217.5,218.9,218.6,220.5,218.1,219.7,218.8,219.8,222,218.9,218.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[32.2,32.7,32,31.7,32.4,32.1,32.3,32.9,32.3,32.4,33.1,32.4,32.2,31.9,31.7],"script":[6.1,5.9,5.9,6.1,6,6.2,6,6.2,6.1,6.1,6.1,6,6.2,5.9,5.9],"paint":[25.1,25.8,25.2,24.7,25.5,25,25.4,25.8,25.3,25.4,26,25.5,25.1,25.1,24.9]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.9,12.1,12.6,11.5,12.3,12.1,12.1,11.9,12.7,14.3,13.4,11.6,12.4,11.6,12.6],"script":[9.8,9.6,10,10,10.2,10.1,10.1,9.8,10.8,11.8,10.1,9.4,10.2,9.4,9.9],"paint":[1.4,1.5,1.6,0.7,1.4,0.6,1.8,0.9,1,1.1,2.1,0.6,2,0.5,1.6]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.862767219543457]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8244333267211914]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.879359245300293]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.175455093383789]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.670458793640137]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.7]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.8]}},{"framework":"vue-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.6]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[29.8,28.8,28.8,29.6,28.6,29.4,28.8,28.6,28.8,28.7,28.7,29.2,28.7,29.8,29],"script":[6.4,6.4,6.3,6.7,6.4,6.5,6.5,6.2,6.4,6.3,6.4,6.7,6.5,6.5,6.5],"paint":[22.8,21.9,21.9,22.3,21.7,22.3,21.8,21.9,21.9,21.9,21.8,22,21.7,22.7,21.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[31.9,32,32.3,32,32.4,32.6,31.7,32.3,33.3,32.1,31.5,32.8,33.1,32,32.3],"script":[9,9.2,9.4,9.1,9.3,9.6,9.1,9.3,9.6,9.3,9,10,9.6,9.1,9.3],"paint":[22.3,22.2,22.4,22.3,22.5,22.5,22.1,22.4,23.1,22.2,22,22.3,23,22.3,22.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.5,20.4,21.2,21.2,19.8,21.2,19.8,19.2,21.3,19.6,21.4,20,19.5,20.7,19.8],"script":[8.3,8.8,8.6,8.9,8.3,9.9,8,7.7,8.7,8,8.9,8.9,8,8.6,8.4],"paint":[9.7,10.2,10.8,9.9,9.4,9.4,10,9.9,10.2,10,10.8,9.7,10.1,10.1,8.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[12.2,12.2,12.5,11.9,11.4,12.4,12.9,12.4,12.2,11.7,11.9,11.6,12.4,11.7,11.6,12.2,11.7,12.4,12,12.2,12.1,12.6,11.5,12.4,12.7],"script":[7.8,8.9,9.3,8.4,8.4,9.1,9.6,9.4,8.7,8.3,8.9,8.9,9.4,8.6,8.2,8.5,8.8,8.8,8.6,9.4,8.9,9.4,8.6,8.8,9.6],"paint":[2.6,1.9,2.1,1.5,1.3,2.2,1.5,1.2,1.3,2.2,1.2,1.3,1.2,2.3,1.4,2.9,1.3,2.7,2.4,1.2,1.5,2.2,1.5,2,1.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[24.1,23,24,23.7,22.5,23.9,22.1,25.1,24.2,24.5,22.5,22.8,23.9,22.7,22.2],"script":[9.2,8.4,9,9.2,8.7,9.4,7.4,9.1,8.7,8.3,8.1,8.2,8.6,7.9,7.7],"paint":[12.8,12.8,13.6,12,11.8,12,11.8,13.2,13.7,14,12.5,12.9,13.9,13.5,13.3]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.5,15.7,15.7,15.6,15.9,15.4,15,16.3,15.5,16.1,15.6,15.8,15.2,15.6,16.2],"script":[4.5,4.9,4.9,4.8,4.9,4.8,4.5,5.1,4.8,5.2,4.8,4.9,4.7,4.9,5.2],"paint":[9.7,10.3,10,10.1,10.4,9.5,9.6,10.1,10.2,9.9,10.2,10.2,9.8,9.9,9.9]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[292,291.3,291.7,289.7,291,289.3,289.3,290.1,291.3,293,291.2,290.3,290.8,292.9,291],"script":[67.4,67.1,66.3,67,67.8,66.7,66.7,66.9,66.5,66.9,68.5,67,67,68.4,65.9],"paint":[217.3,217.1,218.2,215.5,216.2,215.5,215.4,216,217.6,218.4,215.3,216.2,216.7,217.2,217.7]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[36.5,36.1,37,37.6,36.2,36.4,36.5,36.5,36.1,37.6,37.3,36.6,36.5,36.7,37.2],"script":[9.4,9.1,9.3,9.5,9.1,9.1,9.3,9.3,9.1,9.5,9.6,9.2,9.1,9.1,9.1],"paint":[26.2,26,26.7,27.1,26.2,26.4,26.2,26.2,26.1,27.1,26.7,26.5,26.5,26.6,27.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.3,13.5,13.7,14.1,14.1,13.9,13.6,14.6,14,14.4,13.4,13.8,13,14.4,13.1],"script":[12.7,11.2,11.7,12.1,12.2,11.4,11.3,12.1,12.2,12.8,11.6,12,10.8,12.4,11],"paint":[2.1,1.3,0.6,0.9,0.8,1.5,2,0.9,1.2,0.5,0.5,0.3,1.2,1,1.2]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8601751327514648]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.239572525024414]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.276878356933594]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2240142822265625]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.451170921325684]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[62.5]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1]}},{"framework":"vue-jsx-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.1]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.3,24.7,24.5,24.4,24.6,24.7,24.5,24.3,24.7,24.7,24.4,24.6,24.6,24.6,24.2],"script":[3,2.9,3.1,3,3,3,3,3,2.9,3.1,3,3,3,3,2.9],"paint":[20.9,21.4,21.1,21.1,21.3,21.3,21.1,20.9,21.4,21.3,21.1,21.2,21.2,21.2,20.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[28.6,28.1,27.6,27.9,28,28.4,28.6,28.1,27.9,27.9,27.8,27.7,27.8,27.9,28.2],"script":[5.3,5.4,5.3,5.2,5.2,5.3,5.3,5.3,5.3,5.1,5.3,5.4,5.1,5.2,5.3],"paint":[22.8,22.2,21.8,22.2,22.2,22.6,22.8,22.2,22.1,22.2,21.9,21.8,22.1,22.2,22.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.6,10.9,10.9,11.6,13.4,11.3,10.9,11.5,11.3,11.7,11.3,11.3,10.8,11.5,11.3],"script":[1.5,0.9,1,1.1,0.9,1.2,0.9,1,1,1,1.2,1.1,1.1,1.2,1.2],"paint":[8.8,8.5,8.8,9.8,10.6,8.8,8.7,9.7,9.4,8.5,9.2,7.9,8.8,8.4,8.6]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.5,2.7,2,2.1,2.4,1.5,2.5,2.5,2.8,2.2,2.5,1.7,2.3,2.4,2.8,2.5,2.7,2,2.6,2.3,2.2,2.6,2.6,2.5,2.4],"script":[0.1,0.8,0.1,0.2,0.1,0.1,0.1,0.5,0.8,0.1,0.4,0.1,0.1,0.1,0.8,0.7,0.8,0.3,0.5,0.1,0.1,0.5,0.1,0.6,0.1],"paint":[1.8,1.8,1.1,1.1,1.4,1.3,1.6,1.5,1.9,1.3,2,0.7,1.1,2.2,1.9,1.6,1.8,1.6,1.4,1.4,1.4,1.5,2,1.7,1.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[14,12.9,13.8,13,13.4,13.4,12.6,13.4,14.2,14,14.1,13.5,13.7,13.3,13.5],"script":[1.2,0.7,1.1,0.2,0.7,1.3,0.2,0.9,1.5,0.7,1.3,0.5,0.7,0.2,1.1],"paint":[11.9,11.2,11.9,11.9,11.5,11,10.4,11.7,11.4,12.6,11.8,11.7,11.3,11.9,10.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.3,10.4,10.6,10.9,10.3,10.4,10.6,10.6,10.5,10.4,10.5,10.3,10.7,10.3],"script":[0.5,0.5,0.5,0.4,0.5,0.5,0.5,0.5,0.3,0.4,0.5,0.3,0.4,0.5,0.2],"paint":[9.7,9.2,8.9,9.5,9.7,9.5,9.2,9.3,9.7,9.7,9,9.2,8.7,9.5,9.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[263.7,263,263.4,262.9,263.9,263.3,263.6,263.6,264.4,264.5,263.5,263.1,263.2,262.9,262.6],"script":[35,34.7,34.4,34.2,34.8,34.3,35,34.8,34.5,34.3,33.9,34.6,34.3,34,33.9],"paint":[221.6,221,222,221.5,221.7,221.8,221.5,221.5,222.7,222.8,222.4,221.1,221.9,221.8,221.5]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28,29.4,29.9,29.2,29.2,30.3,28.9,29.4,28.3,29,29.1,29.7,30,29.6,29.1],"script":[3,3.4,3.2,3.4,3.1,3.7,3.4,3.4,3,3.1,3.4,3.4,3.7,3.3,3.5],"paint":[24.2,25.3,26,25.1,25.3,25.8,24.8,25.1,24.6,25.1,24.9,25.6,25.6,25.5,24.9]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9.8,9.7,10.1,9.6,9.8,9.7,9.7,9.4,9.2,9.8,11.3,10,9.4,9,9.3],"script":[8,7.4,8.3,7.7,7.8,8,7.6,7.8,7.6,7.8,8.5,8.2,7.3,6.9,7.5],"paint":[1.5,1.3,0.8,0.2,0.7,0.5,1.3,1,0.2,1.1,2.2,0.6,1.2,1.2,1.3]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6988735198974609]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.1055517196655273]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1210813522338867]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0043659210205078]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.25316619873047]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.7]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.4]}},{"framework":"vue-jsx-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"01_run1k","values":{"total":[29.3,29.1,29,28.7,30.2,29.2,29,29.1,28.7,29.3,28.9,29,29.3,28.9,28.3],"script":[7.2,7.2,6.8,6.8,7.2,6.8,7,7.3,6.9,7,6.9,6.8,7.1,7.2,6.8],"paint":[21.5,21.4,21.7,21.3,22.5,21.8,21.5,21.2,21.3,21.7,21.5,21.7,21.6,21.2,21]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"02_replace1k","values":{"total":[32.6,31.8,31.9,31.9,31.2,31.7,31.9,32.1,31.9,31.9,31.7,31.9,31.4,31.7,32.3],"script":[9.3,9,9,9.1,9,8.9,9.3,9.1,8.9,9.2,8.7,9.1,8.8,9.2,9.2],"paint":[22.7,22.2,22.3,22.2,21.6,22.2,22.1,22.4,22.4,22.1,22.4,22.2,22,21.9,22.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[14.9,15.4,15.5,17.9,15.1,15.8,15.6,15.1,15,15.3,15.1,15.8,15.4,14.6,15.6],"script":[4.4,4.8,5,5.7,4.5,4.8,4.5,4.6,4.5,4.6,4.5,4.6,4.4,4.2,4.6],"paint":[9.6,9.5,9.2,10.1,9.7,8.6,9.7,9.5,9.3,9.3,9.2,9.6,9.2,9.2,9.7]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.6,4.2,4.7,4.7,6.2,6.9,4.8,4.9,5.2,4.5,4.8,4.5,4.5,5.8,4.2,4.4,4.6,4.6,4.3,4.3,4.7,4.5,4.5,4.8,4.2],"script":[2.1,2.1,2.2,2.2,1.9,2.2,2,2.5,2.4,2.3,1.9,1.9,2.7,3,2.3,2.2,2.7,2.7,2.1,1.6,2.4,2.1,2,2.4,1.8],"paint":[1.7,1.1,2.1,2.4,1.6,1.1,1.8,1.8,1.9,2.1,2.7,2.1,1.6,1.7,1.8,1.4,1.1,1.3,1,1.5,1.5,1.8,2.2,2.1,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,16.1,16.5,15.6,15.8,15.6,16.1,15.8,16.3,17.1,15.9,15.6,16.2,16.1,15.3],"script":[2.7,2.5,2.8,2.7,3,2.5,2.7,2.8,3,2.9,3,2.7,3.2,2.8,2.2],"paint":[11.8,12.6,12.5,11,11.7,11.9,12.5,12.4,12.1,13.1,11.3,11.7,11.6,11.2,11.5]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15,14.7,14.7,15,14.5,14.1,14.5,14.3,14.8,14.6,15.3,14.6,14.6,14.3,14.6],"script":[4.1,4.3,4.2,4.3,3.8,3.8,4.3,4.2,4.3,4,4.4,4.2,4.2,3.8,4],"paint":[10.5,9.9,9.8,10.3,10.1,9.7,9.3,9.5,9.7,9.7,10.1,9.8,9.4,10,10]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"07_create10k","values":{"total":[292.2,293.6,292,294,296.4,292.1,292.2,291.5,291.6,291.6,292.8,292.5,292.5,297.2,294.6],"script":[67.7,68.2,67,68.7,68.5,68.3,68.1,67.7,68.3,68.3,68.3,67.6,67.1,67.4,68.1],"paint":[217.3,218.2,217.5,218.1,220.5,216.7,216.9,216.6,216.1,216.1,217.2,217.6,218.1,220.9,219.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[33.8,33.6,34.3,34.1,34.2,33.9,34.1,35.4,34.5,33.3,34.4,34.2,34.5,34,34.6],"script":[7.6,7.6,7.5,7.5,7.9,7.7,7.8,7.7,7.9,7.6,7.7,7.6,7.7,7.9,7.8],"paint":[25.3,25,25.8,25.7,25.4,25.3,25.4,26.7,25.6,24.7,25.7,25.7,25.9,25.2,25.9]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.9,12.5,13,12.9,14.3,12.6,13.4,13.4,12.7,14.4,13.5,12.3,13.3,13.6,12.6],"script":[10.9,10.9,11.3,10.6,12.1,11.5,10.4,12,10.9,12,11.2,10.8,11.2,12,11],"paint":[1.4,1,1.1,0.9,2,0.9,1.8,1.2,1,0.5,1.2,0.7,1.8,0.7,1.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8878059387207031]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.21751594543457]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.300172805786133]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3841524124145508]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.644983291625977]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.2]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.1]}},{"framework":"vue-pinia-v3.5.13 + 2.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[24.5,24.5,24.5,24.4,24.4,24.4,24.1,24.3,24.2,24.4,24.4,24.3,24.7,24.8,24.4],"script":[3,2.9,2.9,2.9,2.9,3,3,3,3,3,3,3,2.9,2.9,3],"paint":[21.1,21.2,21.1,21.2,21.1,21,20.8,20.9,20.8,21,21.1,20.9,21.4,21.5,21.1]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[27.8,27.4,28,27.2,27.8,29.3,28.9,28.3,28.3,28,28.6,27.8,28.3,27.5,28.8],"script":[5.1,5,5.4,5.1,5.1,5.4,5.3,5.2,5.5,5.5,5.5,5.5,5.6,5.2,5.3],"paint":[22.1,21.7,22.1,21.6,22,23.4,23,22.5,22.2,21.9,22.6,21.7,22.1,21.7,22.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.7,10.7,11.5,10.8,11.1,11.5,10.5,11.5,11.3,11,11.6,11,11.4,11.5,11],"script":[1.2,1.5,1.2,0.9,1.4,0.9,1.1,1.7,1.1,0.9,1.2,1,1.1,1.4,1.4],"paint":[9.1,7.3,8.4,8.8,8.4,9.3,8.3,8.6,8.5,8.7,9.2,9,9,9.1,8.5]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.8,2.6,2.4,2.8,2.8,2.8,2.2,2.6,2.3,2.5,2.5,2.3,2.3,2.4,2.4,2.6,2.4,2.5,2.5,2.7,2.3,2.9,2.8,2.6,2.4],"script":[1,0.1,0.7,0.8,0.1,0.6,0.4,0.7,0.1,0.1,0.6,0.1,0.1,0.5,0.7,0.1,0.1,0.9,0.1,0.1,0.5,0.1,0.1,0.1,0.5],"paint":[1.1,2.4,1.5,1.3,2.6,2,1.6,1.4,1.6,0.8,0.6,2.1,1.2,1.2,1.6,2.4,1.4,1.1,1.8,1.8,1.1,2.3,2,2.3,1.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[13.2,13.7,13.3,13.4,13.2,13.4,15.8,13.1,13.2,14.3,12.9,12.8,13.6,13.7,13.5],"script":[0.2,1,0.8,0.8,1,0.6,1.2,1.1,0.6,0.8,0.6,0.7,0.9,0.7,0.9],"paint":[11.6,11.3,11.3,11.6,11.1,11.1,13.2,10.8,11.3,12.2,11.1,11.1,11.8,12,11.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.7,10.4,10.8,10.3,10.4,11,10.9,10.4,10.3,10.5,10.7,10.6,10.7,10.6,10.9],"script":[0.5,0.5,0.5,0.4,0.5,0.6,0.6,0.4,0.5,0.3,0.5,0.5,0.5,0.5,0.5],"paint":[9.8,9.3,9.7,9.5,9.5,9.4,9.7,9.6,9.5,9.1,9.4,9.5,9.7,9.6,9.8]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[262,261.6,260.1,262,259.5,261.6,263.2,262.4,260.8,262.1,261.5,260.3,262,264.2,260.4],"script":[34,33.9,33.5,33.6,33.4,34.3,33.7,34,34.1,33.4,33.7,33.9,34.1,34.1,34],"paint":[220.9,220.6,219.4,221.3,218.8,219.9,221.7,221.2,219.5,221.2,220.6,219.4,220.7,223,219.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[28.7,28.3,28.8,29.1,30.8,29,28.3,28.6,28.8,29.1,28.7,29.5,28.4,28,29],"script":[3.2,3,3.2,3.1,3.3,3.1,3,3,3.1,3.3,2.9,3.1,3,3,3.1],"paint":[24.7,24.6,24.8,25.2,26.7,25,24.6,24.8,24.9,25,25,25.6,24.6,24.2,25.2]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[9,9.9,8.9,9.1,8.6,9.2,10,8.9,8.7,9.2,9.7,9.5,9.4,10,8.6],"script":[7.4,7.8,6.8,7.3,6.9,7.7,7.7,7.3,6.9,7.9,7.6,7.9,6.7,8.4,7.5],"paint":[0.6,0.3,1.2,1,1,0.6,2.2,1.1,0.3,0.2,0.4,0.7,1.5,0.2,0.9]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7066545486450195]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0321483612060547]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0575733184814453]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0008859634399414]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.595953941345215]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[40.6]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.3]}},{"framework":"vue-vapor-v3.6.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[65]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[25,25.6,25.1,24.9,24.8,25.2,25.1,24.6,26,25,25.2,24.9,25.2,25.1,24.8],"script":[3.2,3.9,3.6,3.6,3.5,3.7,3.6,3.1,3.7,3.6,3.6,3.5,3.6,3.6,3.2],"paint":[21.3,21.3,21.1,21,20.9,21.2,21.1,21.2,21.9,21,21.2,20.9,21.2,21.1,21.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[28.7,28.8,28.8,29.9,29.4,29.1,29.4,29.1,28.7,29.1,28.8,28.8,29.1,28.7,29.2],"script":[6.2,6.2,6,6.3,6.3,6.2,6.5,6.3,6.3,6.2,6.4,6.3,6.4,6.2,6.5],"paint":[22,22,22.3,23.1,22.5,22.3,22.3,22.2,21.8,22.3,21.9,21.9,22.1,22,22.2]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.5,14.4,11.2,11.3,11.8,11.8,11.5,12.2,11.3,11.5,11,12.3,14,11.7,11.6],"script":[1.4,1.8,1.1,1.4,2,1.8,1,1.3,1.6,1.4,1.1,1.5,1.8,1.1,1.4],"paint":[9,11.1,8.8,9.1,8.9,8.8,8.3,9.3,8.5,8.6,8.7,9.5,10.6,9.5,9]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.6,3.2,2.1,2.4,3.1,2.7,2.6,2.7,2.8,2.9,2.2,2.4,2.4,2.7,2.4,2.5,2.6,2.3,2.1,2.2,2.1,2.9,2.2,2.9,2.5],"script":[0.4,1,0.2,0.1,1,0.5,0.1,0.1,0.1,0.9,0.1,0.5,0.9,1.1,0.4,0.9,0.5,0.4,0.4,0.4,0.6,0.1,0.1,0.8,0.1],"paint":[2.1,2.1,1.1,1.3,2,0.7,1.6,1.8,2.6,1.8,2,1.8,1,0.9,1.2,1.2,0.8,1.8,1.6,1.6,1,2.7,1.3,1.6,1.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[15.8,15.6,16.1,16.7,17.2,15.7,17.4,16.2,16.5,16.4,17,16.1,16.4,15.9,16.2],"script":[3,2.7,3.3,3.3,3.1,2.7,3,2.9,3.3,2.6,3.6,3.3,3,3.1,3.3],"paint":[11.5,11.7,11.9,12.1,12.8,12.1,13.2,12.1,12.3,12.9,12.5,12,12,11.5,11.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.1,11.6,11.5,11.5,11.7,11.6,12,11.4,11.9,11.5,11.5,11.5,11.4,11.6],"script":[1.3,1.3,1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.4,1.2,1.3,1.4],"paint":[9.5,8.9,9.5,9.6,9.7,9.7,9.6,9.7,9.5,10,9.8,9.4,9.6,9.7,9.7]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[261.7,263.3,261.9,263.3,264.3,263,265.1,260.9,262.4,262.2,262.7,262.9,263,262.4,263.5],"script":[34.6,34.5,35,35.9,34.6,34.5,34.5,34.7,34.5,35.2,34.8,34.3,35.8,34,34.8],"paint":[220,221.2,219.9,220.2,222.5,221.4,222.9,219.1,220.7,219.9,220.5,221,220.1,221.3,221.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.3,30.5,30.5,30.9,31.2,29.5,30.2,30.5,30.3,30.6,30.1,29.5,30.3,29.6,29.3],"script":[4.4,4.4,4.6,4.5,4.5,4.3,4.5,4.5,4.4,4.5,4.4,4.3,4.5,4.2,4.2],"paint":[25.1,25.3,25.1,25.6,25.9,24.4,24.9,25.3,25.1,25.3,24.9,24.4,25.1,24.6,24.3]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,10.3,10.6,10,10.6,9.8,12.1,10.2,10.1,11,10.7,10.3,10.2,10.8,10],"script":[8.5,8.3,8.2,8.5,8.3,8.4,9.9,8.1,8.7,8.8,8.8,8.4,7.9,9,8.4],"paint":[1.1,0.7,1.8,0.3,1.9,0.3,1.1,1.1,0.7,1.1,1.6,0.6,0.9,0.9,1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5961074829101562]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.084320068359375]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.142228126525879]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9840278625488281]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.31601333618164]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[21.1]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.5]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.4]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[25.4,25.8,26.1,25.2,25.5,25.6,25.2,25.7,25.5,25.6,25.1,25,25.2,25.3,25.5],"script":[2.9,3,3.3,2.9,3.1,2.9,3,3.2,2.9,3.1,2.8,2.9,2.9,3,3],"paint":[22.1,22.5,22.5,21.9,22,22.4,21.8,22.1,22.2,22.1,21.9,21.8,21.9,21.9,22.1]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[28.4,27.7,29.7,27.6,28,27.9,28.3,28.1,28.1,27.9,27.7,27.5,27.9,27.8,27.8],"script":[4.9,4.8,4.8,4.8,4.9,4.9,5.2,4.9,4.9,4.9,4.8,4.8,4.9,4.9,4.9],"paint":[23,22.5,24.4,22.4,22.7,22.6,22.5,22.7,22.9,22.7,22.4,22.4,22.6,22.5,22.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.6,11.8,12.4,12.3,12.3,11.4,12.7,11.7,11.9,12.2,12.4,11.7,12.5,13.2,12.4],"script":[2.3,1.3,2.1,2.1,1.9,1,1.6,1,2.1,2.3,1.8,2,1.9,2.3,2.5],"paint":[8.1,9.3,9.7,9.3,8,9.4,10.1,9.2,8.8,8.1,10.4,8.8,9,10,8.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[3.3,2.8,3,2.9,3,3.2,2.9,3.4,3.7,3.3,3.1,3.1,2.9,4,3.3,3.4,3,2.7,3.3,3.9,3.3,3.2,3.3,3,3.3],"script":[0.9,1,1.3,0.9,0.8,0.6,0.6,0.9,0.9,1.1,1.3,1.7,1,1.2,1.3,0.9,0.9,1,1.2,1.2,1.1,0.7,0.9,0.3,1.4],"paint":[1.6,1.7,1.5,1.3,1.2,2,0.8,2,1.7,1.1,1.1,1.3,1.3,1.6,1.6,1.5,2,1.5,1.1,2.6,1.4,2.4,1.4,2.4,1.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[13.6,13.9,12.8,13.8,13.5,13.7,13.6,13.2,13.4,13.2,13.1,13.4,13.9,13.6,13.5],"script":[0.6,1.6,0.7,0.6,1,1,1.4,0.6,0.3,1,0.9,1.2,0.8,0.7,0.3],"paint":[11.5,10.5,11,12.1,11.4,12,11,11.1,12.2,11.3,10.6,10.8,12.1,12.3,11.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[10.8,10.7,10.7,10.7,10.9,10.7,10.9,10.7,10.6,11.3,10.7,10.8,10.8,11,10.8],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[9.6,9.6,9.4,9.6,9.7,9.5,9.7,9.4,9.3,10.1,9.3,9.2,9.8,9.9,9.6]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[259.2,257.7,260.6,261.9,258.8,257.8,256.7,257.2,258.9,259.9,260.6,259.7,259.9,263.4,260],"script":[27.5,27.1,27.2,27.4,26.5,26.5,26.8,26.7,27.4,26.8,27.7,27,27.2,27.3,26.9],"paint":[224.5,223.6,225.8,227.4,224.4,224.2,223.1,223.5,224.4,226,225.8,225.6,225.6,228.5,225.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[30.1,29.9,30.2,30,30.6,29.6,30.1,30,30.3,29.9,30,31.3,30.1,30.3,30.1],"script":[3,3,3,3,3.1,3,3,3,3,3,3.1,3.2,3.1,3,3],"paint":[26.3,26.1,26.4,26.2,26.6,25.8,26.3,26.2,26.5,26.2,26.2,27.3,26.2,26.5,26.3]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.2,10.4,11.6,9.8,10.7,9,10.6,9.5,9.9,11.1,10.5,10.1,9.9,11,10.1],"script":[9.2,8.4,9.5,8.3,8.3,6.8,8.4,7.7,8.5,9,8.5,8.7,8,9,8.4],"paint":[1.2,1,0.7,0.2,1.7,1,2,0.7,1.2,1.9,0.6,0.3,1,1.1,0.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7240571975708008]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9544591903686523]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9677133560180664]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.825901985168457]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.923840522766113]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[63.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.8,36.9,36.6,36.9,37.1,36.8,36.9,36.8,37,36.9,37,37.4,36.7,36.9,36.9],"script":[14.5,14.2,14.5,14.6,14.6,14.4,14.5,14.4,14.6,14.6,14.4,14.8,14.4,14.5,14.3],"paint":[21.7,22.1,21.6,21.7,21.9,21.8,21.8,21.9,21.8,21.7,22,22,21.8,21.8,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.9,41.4,41,41.7,41.6,42.2,41.9,41.3,41.3,41.7,41.7,41.3,41.9,41.6,42.2],"script":[19.7,19.3,19.1,19.3,19.3,19.8,19.9,19.6,19.5,19.8,19.9,19.6,19.5,19.7,19.7],"paint":[21.5,21.5,21.3,21.8,21.7,21.8,21.4,21.2,21.2,21.3,21.2,21.2,21.7,21.4,21.9]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.2,20.2,18.7,19.7,21,19,19.3,19.1,18.8,18.4,18.7,18.9,19.6,19.4,19.9],"script":[7.7,8.3,7.5,7.8,8.4,7.3,8.1,7.8,8,8.1,7.7,7.9,8.6,7.9,7.3],"paint":[9.8,9.3,9.4,10.6,11.5,10.6,9.6,9.7,8.7,9,9.9,9.7,8.9,10.2,10.8]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[8.9,8.6,8.8,9.2,8.3,8.2,8.6,8.5,7.8,8.8,9.3,9.8,7.8,8.6,8.5,7.9,8,8,9.9,7.6,8.7,9.2,7.6,8.7,8.5],"script":[6.1,5.6,5.8,5.8,5.7,5.6,6,5.8,6.1,6,5.7,6.5,5.7,5.6,5.9,5.6,5.7,5.9,6.4,5.8,6.1,6.2,5.9,5.1,5.8],"paint":[1.9,0.9,1.6,2.6,0.8,0.8,1.4,1.6,1.6,0.9,2.1,1.5,1.5,2,1.4,1.8,1.5,1.8,3.2,1.2,2.1,1.5,1.6,2.6,1.2]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[20.7,20,19.5,19.6,19.3,20.6,19.6,19.2,19.8,19.8,20,21.2,21,20,19.8],"script":[5.2,5.6,5.6,5.4,4.8,5.9,5.1,5.6,6,5.8,5.3,5.8,5.8,5.9,5.8],"paint":[14.4,13.6,12,12.2,13,12.5,13,12.6,11.6,12.5,12.7,13.9,13.3,12.9,13]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[13.4,13.4,14.3,13.3,13.9,13.3,13.1,13.3,13.1,13.4,13.2,13.4,13.3,13.3,14.1],"script":[3,3,3.7,3,3,3,3,3,2.8,3,3,3,3,3,3],"paint":[9.6,9.6,10,9.8,10.1,9.7,9.8,9.4,9.2,9.8,9.6,9.5,9.4,9.5,10.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[443,444.5,437.7,442.4,436.8,445.2,450.6,454.5,440.1,446,438.1,445.6,442.8,437.4,439.9],"script":[192.3,193.5,187.4,194.2,188.7,194.8,200.9,202,192,196.5,187,196.6,189.3,189.6,190.4],"paint":[242.9,243,242.6,240.2,240.2,242,241.9,244.5,240.5,241.4,243.2,241.1,245.7,240.1,241.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.2,42.5,42.3,42.3,42.6,42.7,42.3,42.2,42.3,43,42,42.8,42.1,41.8,42.2],"script":[14.5,14.9,14.6,15,14.6,14.9,14.6,14.8,14.7,15,14.4,14.8,14.7,14.7,14.8],"paint":[26.7,26.7,26.6,26.4,27,27,26.9,26.5,26.6,27,26.7,27,26.7,26.4,26.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.5,21.4,21,21.5,19.9,21,23.2,20,20.4,20.7,20.4,20.1,20.6,21.1,20.3],"script":[18.8,19.1,18.6,19.3,18.3,19.6,21.4,18.4,18.5,19.2,18.4,18.5,19.1,20,18.3],"paint":[1.1,1,1.6,0.8,0.8,0.3,1,0.3,1.7,0.7,1.2,1.6,1.4,0.3,0.7]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.795924186706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.433897972106934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.587218284606934]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.9457502365112305]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.09118938446045]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.4]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[255.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[36.9,36.4,36.7,36.9,36.9,36.6,37,37,37.2,37.2,36.9,36.9,36.6,36.5,36.7],"script":[14.4,14.2,14.4,14.3,14.5,14.2,14.6,14.7,14.6,14.8,14.3,14.6,14.4,14.3,14.6],"paint":[21.9,21.8,21.9,22,21.8,21.9,21.9,21.7,22.1,21.8,22,21.8,21.6,21.8,21.6]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[41.7,41.9,41.7,42.7,41.4,41.8,42,42.1,41.5,41.6,41.3,41.8,41.3,42.1,41.9],"script":[19.8,19.9,19.4,19.9,19.6,19.7,19.8,19.6,19.5,19.7,19.7,19.7,19.3,19.8,19.7],"paint":[21.3,21.4,21.7,22,21.3,21.5,21.7,21.9,21.4,21.5,21,21.6,21.5,21.7,21.7]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.6,23.5,24,23.9,24.4,22.5,23.3,26.8,22.5,25.7,22.8,22.4,23.6,23,23.5],"script":[12.3,12.5,11.6,11.6,12.1,11.6,12,12.7,11.9,11.9,11.9,11.4,11.7,11.8,12.2],"paint":[9.3,8.9,9.8,10.2,10.8,9.7,9.7,11.9,9,12.3,9.5,9.6,10.2,10.8,9.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.6,15.2,14.1,13.3,13.7,14,13.6,14.7,14.5,13.4,14.1,12.9,14.5,14.7,14.1,13.9,13.4,14.3,14.4,14,13.8,14.2,13.7,15.6,13.7],"script":[11.1,12.1,11,11.1,11.1,11.8,10.9,11.2,11.5,11.1,11.3,11,11.3,11.5,11.2,11.2,10.9,11.2,12,11.2,11.6,11.8,10.7,13,11.5],"paint":[2,1.5,0.8,1.3,1.6,1.4,2.5,1.9,2.4,1.3,2.4,1.7,2.9,1.7,1.3,1.8,1.6,2,1.4,0.6,1.1,2.2,2.3,1.6,1.4]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[26.4,26.9,27,25.7,26.2,26.8,26,26.3,26.1,25.6,27,26.4,27.1,25.4,26],"script":[11.5,11.8,12.1,11.9,11.8,11,11.4,11.3,11.8,11.4,11.5,11.2,11.8,11.1,10.7],"paint":[12.8,13.4,12.9,12.4,12.4,14.7,12,13.8,13.7,12.3,13.5,12.5,14.3,13.7,13.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.5,16.3,16.3,17.1,16.7,16.4,16.6,16,16,16.5,16.5,17,16.5,16.2,16.5],"script":[5.9,5.6,5.9,6,5.7,6,5.8,5.6,5.6,5.7,6,5.8,6,5.8,5.8],"paint":[9.4,9.9,9,10.4,9.9,9.3,9.9,9.7,9.6,9.7,9.4,10,9.6,9.8,9.5]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[439.7,444.7,441.3,442.8,449.1,437.8,445.9,445.6,444.8,443.6,448.1,445.6,443.6,453.1,442.2],"script":[190.5,194.8,190.8,192.9,197,187.9,195.8,193.8,193.7,194.2,198.2,196.3,191.7,198,192.4],"paint":[241.3,242.2,242.7,242.1,244.3,241.9,242.3,243.5,243.3,241.3,242.3,241.5,244.2,246.4,242]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.8,44.4,43.6,44.3,44.1,43.5,44.2,44.1,44.4,44.2,43.7,43.5,45,43.4,43.8],"script":[16.3,16.4,16.3,16.4,16.2,16.1,16.5,16.2,16.6,16.1,16.3,16,16.2,16,16.2],"paint":[26.5,27,26.4,27,26.9,26.6,26.9,26.9,26.8,27.2,26.5,26.6,27.8,26.4,26.8]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.2,21.5,23.6,21.3,20.3,20.2,20.2,21.4,21.5,21.6,21,20.7,21.6,21.1,22],"script":[19.3,19.6,21.5,18.8,19,18.8,18.8,19.7,19.7,19,19.9,19.3,19.5,19.4,20.4],"paint":[1.1,0.3,1.1,0.3,0.3,0.3,0.3,0.4,0.3,1.6,1,1.3,0.7,1.6,1.1]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7964754104614258]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.563647270202637]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.826767921447754]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.130795478820801]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.328675270080566]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[262.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[26.2,26.3,26.2,25.7,26,26.1,26.3,26.5,26.2,26.8,26.2,26.5,26.5,26.1,25.9],"script":[4,3.9,4,3.9,3.9,3.9,3.9,4.1,4,4.3,3.8,3.9,3.9,3.9,3.9],"paint":[21.8,22,21.9,21.4,21.7,21.7,22,22,21.8,22.2,22,22.2,22.2,21.8,21.6]}},{"framework":"zess-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[30.3,30.2,30.4,29.7,29.9,30.2,30.8,30.5,31,30.1,29.8,30,29.6,30.3,30.2],"script":[6.5,6.5,6.7,6.4,6.5,6.6,7,6.6,6.9,6.6,6.5,6.6,6.4,6.4,6.6],"paint":[23.2,23.2,23.1,22.8,22.9,23,23.2,23.3,23.4,22.9,22.7,22.8,22.6,23.3,23]}},{"framework":"zess-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[12.9,13.3,11.8,12.4,12.4,12.4,14.2,12.9,12.4,12.5,13.8,12.7,13.4,16,12.8],"script":[1.1,1,0.6,0.9,1.3,1.2,1.3,0.7,1.7,1.4,1.3,1,0.9,1,1.3],"paint":[10.5,11.1,10.2,9.8,10.1,9.9,10.5,11.1,9.9,10.1,11,10.7,11.2,13.6,10.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.5,2.7,2.1,2.6,2.4,2.5,2.3,2.2,3.3,2.1,2.4,2.1,2.1,3.1,2.4,2.2,2.4,2.5,2.7,1.9,2.5,2.8,2.7,2.2],"script":[0.8,0.4,0.1,0.1,0.1,0.5,0.5,0.1,0.7,0.6,0.1,0.9,0.1,0.3,1,0.9,0.6,0.9,0.9,0.8,0.1,0.6,0.1,0.1,0.1],"paint":[1.1,2,1.7,1.9,1.7,1.1,1.9,1.7,1.4,1.2,1.9,1,1.9,1.5,1.7,1,1.1,1.1,1.4,1.8,1.1,1.8,2.6,2.2,1.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.4,14.1,14,14.9,15.9,14.5,14.6,15.2,15.9,16.4,16.6,15.9,15.1,14,14.8],"script":[0.9,1.3,1,0.7,1,1.5,1,1.7,1,1.2,1.4,1.4,1.4,1.1,1.3],"paint":[13.5,11.5,11.4,13.1,13,12.3,12.1,12.5,13.5,13.9,14.4,12.9,12.3,12,11.3]}},{"framework":"zess-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[11.6,11.5,11.4,12,11.5,11.4,11.5,11.3,12,11.4,11.2,11.3,11.5,11.1,11.2],"script":[0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.4],"paint":[10.1,10.1,10.1,11,9.9,10.4,10.2,9.7,10.3,10.3,10.2,10.4,10.4,9.7,9.7]}},{"framework":"zess-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[281.2,283.5,282.1,283.1,281.4,281.2,278.7,281.2,278.6,281.4,279.5,281.6,280.9,281.2,282],"script":[48.5,49,48.9,49.5,48.6,48.2,48.9,47.8,48.5,48.8,48.8,48.4,48.6,47.9,48.1],"paint":[225,227.1,225.2,225.9,225.1,225,222.7,225.5,222.6,225.1,223.2,225.6,224.3,225.2,226.2]}},{"framework":"zess-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[31.7,31.7,32.2,30,29.9,31.6,30.9,31.7,31.9,30.6,30.6,31.1,30.9,32.2,31],"script":[4.4,4.2,4.2,4.1,3.8,4.1,4,4.3,4.2,4.3,4,4,4.4,4.3,4.2],"paint":[26.4,26.7,27.2,25.2,25.4,26.6,26.2,26.6,26.9,25.6,25.8,26.3,25.8,27.1,26]}},{"framework":"zess-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.5,12.1,12.7,12.6,13.1,11.7,12.2,13.2,11.9,12,13.2,13.1,14.2,12.3,11.3],"script":[9.9,9.2,10.3,10.4,11,9.8,10.1,11.6,10.1,9.8,11.2,11.2,11.9,10.5,9.7],"paint":[0.5,1.2,1.4,1.3,0.8,1.6,0.5,0.3,0.7,2,1.8,1.3,1.4,1.2,1.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5937604904174805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.0592880249023438]}},{"framework":"zess-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0763320922851562]}},{"framework":"zess-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325544357299805]}},{"framework":"zess-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.096689224243164]}},{"framework":"zess-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.1]}},{"framework":"zess-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.4]}},{"framework":"zess-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[39.1]}},{"framework":"zune-v1.0.8-keyed","benchmark":"01_run1k","values":{"total":[30.9,30.5,31.4,30.7,31,30.6,30.7,31,30.4,30.4,30.6,30.8,30.6,30.4,30.8],"script":[6.9,6.9,7.1,6.9,7,6.9,7,6.9,6.8,6.8,6.9,6.9,6.9,6.9,7],"paint":[23.4,23.2,23.7,23.2,23.4,23.2,23.2,23.5,23,23.1,23,23.3,23.2,22.9,23.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"02_replace1k","values":{"total":[33.8,33.9,34,33.5,33.8,33.9,33.9,33.5,35,34.1,33.6,33.9,34.1,34.1,33.8],"script":[9.2,9.4,9.1,9.2,9.4,9.1,9.4,9.2,9.5,9.3,9.3,9.2,9.3,9.4,9.3],"paint":[24.1,23.9,24.3,23.7,23.9,24.2,23.9,23.7,24.9,24.2,23.7,24.1,24.2,24.1,23.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.5,25.3,25.6,25.5,25.6,26.3,26.1,28,25.5,26.4,25.5,26.1,25.7,24.7,26],"script":[14.2,13.9,14.2,14.3,13.3,14.1,14.2,14.2,14,14.7,14,14,13.8,13.8,13.6],"paint":[9.4,10,9.3,9.2,10.8,9.6,10,12,9.4,9,9.2,10.3,10.2,9.8,11]}},{"framework":"zune-v1.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.6,3.8,4.2,4,4.2,4.2,4,4.3,3.9,4,3.6,4.3,4.3,4,4.1,4.1,3.7,3.6,3.5,3.4,3.6,4.3,3.3,4.2,4.5],"script":[2.5,1.7,2.4,1.7,1.8,2.3,1.8,2,1.8,1.8,1.7,2,2.1,1.9,1.8,2.1,1.4,1.5,2,1.3,1.5,1.7,1.6,1.9,1.8],"paint":[1.7,2,1.8,1.7,2.3,1.1,1.5,1.6,1.5,2,1.3,1.6,2.1,1.9,2.2,1.9,1.4,1.3,1,2,1.1,1.7,1.5,2.2,1.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"05_swap1k","values":{"total":[15.7,14.7,14.6,14.1,15.8,15.3,14.8,15,15,14.8,14.5,14.9,15.7,15.7,14.7],"script":[1.4,1.1,2,1.8,1.8,2,1.7,2,1.9,1.6,1.3,2.4,2,1.7,1.9],"paint":[13,12.9,11.1,11.2,12,12.4,12.2,11.8,11.9,11.8,12.2,11.3,12.6,12.6,11.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.4,14.1,14.1,15.2,13.8,14.1,15.3,14.6,14.1,13.7,14,13.8,14,13.7,13.9],"script":[3.5,3.2,3.3,3.4,3.2,3.5,3.6,3.6,3.4,3.3,3.5,3.4,3.3,3.4,3.1],"paint":[10.3,10,10.2,10.8,10.3,9.6,11,10,10.1,9.8,9.4,9.8,10.2,9.8,10.2]}},{"framework":"zune-v1.0.8-keyed","benchmark":"07_create10k","values":{"total":[316.3,314,312.7,314.9,314,311.9,313.6,315.2,315,311.9,311.8,314.2,349.4,312.1,317.7],"script":[73.8,74,72.7,74.2,73.6,72.5,73.9,74.2,73.6,72.9,72.9,73.5,79.1,72.8,73.9],"paint":[234.4,232.4,232.3,232.4,232.6,231.8,232.2,232.9,233.6,231.3,231.3,233.1,260.5,231.6,236.3]}},{"framework":"zune-v1.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[35.7,36,36.2,36.5,36,36.1,35.8,35.9,36.4,35.9,36.5,36.2,35.8,36,36.2],"script":[7.4,7.6,7.5,7.8,7.5,7.6,7.5,7.5,7.8,7.5,7.7,7.6,7.4,7.6,7.5],"paint":[27.3,27.4,27.7,27.6,27.5,27.5,27.4,27.4,27.6,27.3,27.8,27.6,27.4,27.4,27.7]}},{"framework":"zune-v1.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.6,12.2,12.3,11.2,11.9,11.8,11.3,11.6,11.9,12.3,12.5,11.5,11.9,11.4,11.8],"script":[9.7,9.8,10.3,9,9.8,9.9,9.2,10,9.9,9.5,10.9,9.6,10,9.8,9.7],"paint":[0.5,1.7,1.8,2,0.6,1.7,1.2,0.3,1.8,1.7,0.3,1.2,1.7,0.8,1.9]}},{"framework":"zune-v1.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6521015167236328]}},{"framework":"zune-v1.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6158266067504883]}},{"framework":"zune-v1.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.65389347076416]}},{"framework":"zune-v1.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9499826431274414]}},{"framework":"zune-v1.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.28773593902588]}},{"framework":"zune-v1.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47]}},{"framework":"zune-v1.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.5]}},{"framework":"zune-v1.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.8]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[44.7,45.7,45.1,45.4,45.1,46,44.8,44.5,45.3,45.1,44.5,45.6,45,45,45.2],"script":[20.5,21.1,20.6,20.9,21,21.6,20.6,20.2,20.9,20.9,20.5,21.1,20.8,21,21.1],"paint":[23.6,24.1,24,24,23.7,23.9,23.7,23.8,23.9,23.7,23.5,24,23.7,23.6,23.6]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[17.7,20.2,18.1,17.1,17.4,17.8,17.8,17.5,17.8,18.4,20.1,18.3,18.1,18.2,17.6],"script":[6.2,6.5,6,5.9,5.8,5.9,5.9,5.9,6,6.2,6.8,6.1,6.1,6.2,5.9],"paint":[11,12.9,11.3,10.7,11.1,11.4,11.3,11.1,11.3,11.6,12.6,11.5,11.4,11.4,11.1]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15,16.5,15.7,15.2,16.4,15.9,16,15.8,16.3,15.1,16.2,15.4,16.5,16.3,15.7],"script":[1.6,2.4,2.6,2.1,1.9,1.8,1.8,1.8,2.2,1.8,2.1,1.5,1.7,1.8,2.1],"paint":[11,12.1,12,12.3,13.1,12.4,13.1,12,11.8,12,12.6,11.4,13,12.7,12.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.7,9.7,9.4,9,10.2,9.7,10.8,9.8,11.1,9.2,9.5,10.5,10.6,9.7,10,9.5,9.9,12.3,10.3,9.3,9.8,10.1,9.2,10,9.6],"script":[6,6.7,6.8,6.4,7,5.9,7.7,6.4,8,6.1,7,7.3,7.6,6.8,6.7,6.9,6.7,8.2,7,6.1,6.9,7,5.9,6.9,6.4],"paint":[1.1,2.5,1.6,1.7,2.2,1.9,2.1,2.2,1.8,1.9,1.5,2.2,2.3,2.3,2.3,1,2.6,2.7,2.4,2.2,1.8,2.3,3,1.9,1.2]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[13,13.1,13,13.5,12.5,17.8,13.4,14.1,12.2,13.1,13.2,13.1,13.3,12.8,13.2],"script":[2.3,1.9,2.2,2.1,2.4,3,1.7,3,2.1,2.2,2.2,2.3,2.3,2,1.6],"paint":[9.4,10.1,8.5,9.2,9,11.7,9.2,8.9,8.7,9.3,9.4,8.5,8.8,9.2,9.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[26.1,25.8,26.1,26,26.4,25.2,25.8,25.9,26.1,25.5,26.2,26.1,25.5,26.3,25.3],"script":[8,8,8,7.9,8.2,7.5,7.9,7.9,8.1,7.8,8.3,7.9,7.9,8.1,7.7],"paint":[16.8,16.6,17.1,16.9,17.2,16.4,16.7,17.1,16.9,16.7,16.7,17.3,16.9,17.3,16.7]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[443.6,442,445.4,441.4,440.4,441,441.9,443.8,445.8,440.1,443.9,442.8,441.7,443.3,445.3],"script":[188.8,187.1,190.1,187.9,186.7,187.9,188.8,188.4,190.6,186.8,188.9,187.7,187.5,188.1,189.4],"paint":[245,245.1,245.5,243.8,244,243.4,243.6,245.6,245.5,243.8,245.4,245.5,244.3,245.4,246]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.9,51.4,50.9,51.6,51.2,51,50.9,52,50.8,50.9,50.9,50.7,51.7,50.8,50.7],"script":[21,21.1,20.9,21,21.2,21,20.8,21,21.1,21,20.9,20.7,20.9,20.7,20.8],"paint":[29.6,29.1,28.8,29.4,28.9,28.9,29,29.9,28.6,28.9,28.9,28.8,29.5,29,28.8]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.1,22.1,22.7,22,21.6,24.5,22.3,22.6,22.5,24,22.9,22.7,22.9,22,22.2],"script":[20.1,20.9,20.8,21,20.6,22.3,20.5,20.7,20.4,21.7,21.5,20.5,21.6,20.5,20.5],"paint":[1.1,0.3,1.8,0.9,0.3,1.7,1,1.2,2,1.7,0.9,2.1,0.3,1.4,0.9]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6199922561645508]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.437088012695312]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.457786560058594]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.256784439086914]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[76.74854373931885]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.4]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5]}},{"framework":"sprae-v12.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.9]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[23.3,23.1,23.5,23.5,22.9,23,23.7,24,23.6,23.4,23.1,23.3,25.5,23.3,23.5],"script":[1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.3,1.3],"paint":[21.6,21.5,21.8,21.8,21.3,21.4,22,22.3,21.9,21.7,21.5,21.6,23.7,21.6,21.8]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[10.9,10.7,10.7,11,11,11,10.6,10.9,10.8,10.8,10.8,11.1,10.9,10.7,11],"script":[1.4,1.3,1.3,1.3,1.4,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4],"paint":[9.1,9.1,9.1,9.3,9.3,9.2,9,9.3,9.1,9.2,9.1,9.4,9.3,9,9.3]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[11.3,11.5,10.7,11.6,12.1,10.8,12.4,12,11.1,11.6,10.5,10.5,11.1,10.8,11.1],"script":[0.1,0.5,0.1,0.1,1.1,0.1,0.1,0.9,0.5,0.9,0.1,0.4,0.1,0.2,0.7],"paint":[10.3,9.8,9.6,10.2,9,9.5,10.9,10.1,8.5,9.4,9.4,9.1,9.8,9.7,9.8]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[2.4,2.3,2.7,2.2,3.2,2.5,2.5,2.8,2.2,1.9,2.4,2.6,1.9,2.6,2,4,2.8,2.9,2.7,3.3,2.2,2.1,2.8,2.5,2.8],"script":[0,0,0,0,1,0,0,0,0,0,0,0.6,0,0,0,0,0.8,0,0,0,0,0,0,0,0],"paint":[2.2,1.5,2.5,2,2.1,2.4,2.1,2.6,1.3,1.7,1.9,1.4,1.1,2.4,1.8,1.9,1.5,2.6,2.4,1.6,1.3,1.7,1.3,2.4,1.5]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[24.4,8.5,7.9,12,8.3,7.9,8.9,8.1,8.2,10.4,8.6,9.1,7.9,8.2,8.5],"script":[0.1,0.1,0.1,0.6,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.9],"paint":[6.1,7.4,6.1,9.2,6.8,7,6.4,6.9,6.5,8.9,7.5,8.1,6.8,7.2,6.6]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.8,18.3,19.5,18.5,18.9,18.7,18.6,18.5,18.8,18.1,18.2,18.2,17.8,18.5,18.3],"script":[2.5,2.1,2.8,2.8,2.5,2.5,2.7,2.4,2.5,2.4,2.4,2.5,2.4,2.4,2.4],"paint":[15.6,15.6,16,15.1,15.8,15.6,15,15.4,15.6,15.1,15.2,15.1,14.7,15.4,15.2]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[252.5,250.3,250.3,251.7,249.7,253.1,249.4,250.3,248.6,252.8,253,250.8,248.8,251.1,251.9],"script":[14.8,14.7,14.9,14.8,14.8,14.7,14.6,14.6,14.7,14.8,14.8,14.6,14.5,14.4,15],"paint":[229.7,228.4,228,229.6,227.8,231.1,227.6,228.6,226.6,230.5,230.7,228.9,227.1,229.6,229.8]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[27.3,27.3,27.3,27.3,27.4,27.2,27.1,27.2,27.5,26.9,27.3,27.2,27.4,27.2,26.9],"script":[1.3,1.4,1.3,1.4,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.4,1.4],"paint":[25.3,25.2,25.3,25.2,25.4,25.1,25.1,25.2,25.4,24.8,25.2,25.2,25.4,25.1,24.8]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.3,9.5,9.5,9.1,9.2,9,9.9,8.8,9.4,8.9,9.5,8.9,8.8,9.5,9.9],"script":[7.4,7.3,7,7,7.5,6.8,7.8,7.2,7.1,7.3,8.1,7.1,6.8,7.4,7.9],"paint":[1.3,1.1,1.7,0.9,0.2,1.3,1.4,0.3,0.8,0.4,0.2,1,0.9,1.4,0.7]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4959230422973633]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.885274887084961]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9034509658813477]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.602320671081543]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.000962257385254]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[40.5]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[30.1,31.8,36.1,35.5,35.8,37.5,29.7,34.9,37,36.2,31.6,37.1,34.3,35.5,36.5],"script":[7.4,7.8,6.6,6.7,6.5,7.5,6.9,6.7,6.6,7.4,6.6,6.6,7.4,6.9,7.4],"paint":[22.4,23.6,22.7,22.7,22.3,22.5,22.5,22.6,22.5,22.2,22.8,22.6,22.7,22.3,22.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[18.9,18.9,19,14.8,19.2,21.1,17.5,18.6,16.5,16.7,16.9,18.1,18.6,17.4,17.7],"script":[3.8,3.7,3.7,3.8,3.9,3.8,3.6,3.7,3.7,3.6,3.7,4,4.3,3.7,3.7],"paint":[8.9,8.7,9,9,9.2,9.1,8.9,8.9,8.8,8.7,9,9.1,10.2,8.8,9]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.3,30,13.9,30.1,30.1,30,30,31.7,29.6,30.1,31.4,28.5,14.2,32,15.7],"script":[2.8,2.8,2.7,2.7,2,2.6,2.5,2.6,2.5,2.7,2.3,2.5,1.9,2.8,2.6],"paint":[9.7,11.1,11,9.7,12,11.8,11.4,12.2,10,11.8,13,10.6,10.1,12.8,10.4]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.9,3.9,6.1,3.6,4.1,5,3.7,6.8,7.3,3.4,3.7,4.2,4,4,3.8,4.2,3.4,4,3.5,3.8,4,3.9,3.6,3.7,3.5],"script":[0.6,1.7,0.9,1,0.9,0.9,1.5,1.6,1.9,0.3,1.5,1.9,1.7,1.5,1.6,1.1,1.2,1,0.7,1.4,1.6,0.8,1.3,0.9,1.4],"paint":[2.7,1.4,1.6,2.4,3,1.7,1.3,2.3,1.8,1.4,1.3,1.4,1.4,1.4,1.6,1.6,1.3,1.4,2,1.9,1.4,2.2,1.4,1.7,1.3]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[24.8,24.3,9.5,24.9,24.6,9.1,25.5,25.3,9.4,25.1,25.4,25.4,24.4,25.8,25.7],"script":[0.6,0.8,0.6,1.1,0.6,1.1,1.3,1.3,0.7,1.1,1.2,0.7,1.1,1.8,1.5],"paint":[7.7,7.1,7.2,7.9,7.5,7,8,7.6,7.7,7.4,7.8,8.6,7.2,8.4,8.3]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.5,22.4,21.9,24.6,21.8,21.4,23.3,22.2,22.9,23.8,22.8,24.6,21.6,21.9,24.7],"script":[6.4,6.3,6.3,6.6,6.6,6.2,6.2,6.3,6.3,6.4,6.4,6.4,6.2,6.6,6.7],"paint":[15.3,14.7,14.7,15.5,14.6,14.9,14.7,14.7,15.3,14.5,14.5,15.2,14.8,14.8,15.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[307,311.7,311.7,310.6,307.6,310.6,306.7,314.4,308.9,310,310.6,312.2,309.6,306.6,313.3],"script":[75.5,78.6,75.9,76,75.7,76.3,77.2,75.2,75.4,75.1,76.7,76.7,76.4,76.2,77.9],"paint":[227.2,224.5,225.9,227.7,226.2,224,223.5,230.9,226.3,224.4,226.5,226.4,223.3,223.7,227.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[38.2,40.8,34.4,34.1,38.3,38,38.1,34.9,34.1,34,34.5,38.6,38.4,38,39.2],"script":[6.3,6.2,6.6,6.5,6.2,6.3,6.3,6.8,6.3,6.4,6.7,6.4,6.4,6.3,6.4],"paint":[26.7,27.1,27.2,27.1,26.9,26.8,26.7,27.2,27.2,27.1,27.2,26.9,26.9,26.8,27.1]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28,27.6,29.1,28.3,29,26.9,12.4,26.7,27.7,27.2,27.3,10.7,11.6,26.8,27.5],"script":[10.6,9.5,10.8,10.9,11.5,9.7,10.6,9.1,10.1,9.6,9.5,9.6,10,9,9.4],"paint":[1.2,1.2,2.2,0.3,0.7,0.8,0.8,1.1,0.4,0.6,1.2,0.3,1.3,0.9,0.8]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5821304321289062]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9737510681152344]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.950702667236328]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7388839721679688]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.53023338317871]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.4]}},{"framework":"vode-v1.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[37.7]}}] \ No newline at end of file From b83f5d20cd0fef78e992dcf0497e187d21d12bbe Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Sun, 19 Oct 2025 17:51:46 +0000 Subject: [PATCH 34/39] ajust zip file for lui, update copilot merging instructions --- .github/copilot-instructions.md | 4 +++- cli/zip.js | 8 ++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 0932d15ed..01c62d256 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -9,13 +9,15 @@ ssh-add /home/stefan/.ssh/id_ed25519_github_hetzner" 5. You must compute a list of folders that are affected by the PR. Can be a single folder or can be many folders. Example: If the files "package.json" and "package-lock.json" in frameworks/keyed/angular and "package.json" in "frameworks/non-keyed/react" are changed the list is "keyed/angular non-keyed/react", so you leave out the frameworks directory and only report the directory names. This list in the argument for the next step. Always print the list. Check if there are changed to files in the webdriver-ts folder (e.g. webdriver-ts/results.json). If so make sure to eliminate those changes by using `git checkout` to restore the original versions such they don't end in the main branch when merging. -6. If for each changed directory both package.json and package-lock.json are changed in the PR you must use `npm run rebuild-ci {list of framework-paths}`. Otherwise you must use `npm run rebuild {list of framework-path}` otherwise. You must concatenate all the directories with changes (which you computed above) in a format like "keyed/angular non-keyed/react" +6. If for each changed directory both package.json and package-lock.json are changed in the PR you must use `npm run rebuild-ci {list of framework-paths}`. Otherwise you must use `npm run rebuild {list of framework-path}` otherwise. You must concatenate all the directories with changes (which you computed above) in a format like "keyed/angular non-keyed/react". +You must also run the rebuild step for non javascript frameworks since it performs important tests. Just to explain: "npm run rebuild" must be used when the package-lock.json should be regenerated by npm install. "npm run rebuild-ci" can only be called when npm ci works and package.json and package-lock.json are in sync. 7. if the npm command above reported "======> Please rerun the benchmark:" then the PR can be merged. * Check first if some file must be added to git and commit it. You can ignore all untracked files. * Merge the PR using merge commits as the merge strategy 8. Delete the branch after merging +9. Print the {list of framework-paths} from above Rules: * Never push automatically to the remote diff --git a/cli/zip.js b/cli/zip.js index 8028f0f8e..5fc1eb162 100644 --- a/cli/zip.js +++ b/cli/zip.js @@ -71,6 +71,14 @@ function addFrameworksToZip(frameworkType, frameworkDir, frameworkName) { ); break; } + case "lui": + case "lui-noeval": { + addLocalFolderIfExists( + `${frameworkDir}/src`, + `${zipFrameworkPath}/src` + ); + break; + } case "stem": { addLocalFolderIfExists( `${frameworkDir}/node_modules/babel-polyfill/dist`, From 0e6383d73fdc745b7044edab6a79e26bcf8dad93 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sun, 26 Oct 2025 21:14:18 +0000 Subject: [PATCH 35/39] update ripple and svelte --- frameworks/keyed/ripple/package-lock.json | 70 ++++++++++++----- frameworks/keyed/ripple/package.json | 6 +- frameworks/keyed/ripple/rollup.config.js | 32 +++++--- frameworks/keyed/svelte-classic/package.json | 2 +- frameworks/keyed/svelte/package-lock.json | 79 +++++++++++--------- frameworks/keyed/svelte/package.json | 2 +- 6 files changed, 121 insertions(+), 70 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index c66fdd482..fa687ff98 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.61", - "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.61" + "ripple": "0.2.143", + "rollup": "^4.5.0", + "rollup-plugin-ripple": "0.2.143" } }, "node_modules/@jridgewell/gen-mapping": { @@ -445,6 +445,16 @@ "win32" ] }, + "node_modules/@sveltejs/acorn-typescript": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz", + "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8.9.0" + } + }, "node_modules/@types/estree": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", @@ -472,16 +482,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-typescript": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz", - "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": ">=8.9.0" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -489,6 +489,16 @@ "dev": true, "license": "MIT" }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -506,6 +516,20 @@ "node": ">=0.10.0" } }, + "node_modules/devalue": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.4.2.tgz", + "integrity": "sha512-MwPZTKEPK2k8Qgfmqrd48ZKVvzSQjgW0lXLxiIBA8dQjtf/6mw6pggHNLcyDKyf+fI6eXxlQwPsfaCMTU5U+Bw==", + "dev": true, + "license": "MIT" + }, + "node_modules/esm-env": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", + "dev": true, + "license": "MIT" + }, "node_modules/estree-walker": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", @@ -650,20 +674,26 @@ } }, "node_modules/ripple": { - "version": "0.2.61", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.61.tgz", - "integrity": "sha512-ZsOZnGuQUEkiGdoiQh1nmrgbkrLeGRFrNfq8MRJ3i8M2gpU+stUAWvDyV1p0xoc+nmFhcGlm6Wah4n7sjxELPg==", + "version": "0.2.143", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.143.tgz", + "integrity": "sha512-SnxrYUuwiKNCrWuhcDtwgizy/9LvXAqlqLfzOVLeSUeI3hHxwxVoGwawZ62WE2A9vXc+5c2MZCjZCTo6sp8UVA==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5", + "@sveltejs/acorn-typescript": "^1.0.6", "acorn": "^8.15.0", - "acorn-typescript": "^1.4.13", + "clsx": "^2.1.1", + "devalue": "^5.3.2", + "esm-env": "^1.2.2", "esrap": "^2.1.0", "is-reference": "^3.0.3", "magic-string": "^0.30.18", "muggle-string": "^0.4.1", "zimmerframe": "^1.1.2" + }, + "peerDependencies": { + "ripple": "0.2.143" } }, "node_modules/ripple/node_modules/esrap": { @@ -718,9 +748,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.61", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.61.tgz", - "integrity": "sha512-9foek/IY5q6qHblYNvkdv6uz/85oyMQS7H43u2Q5Xx7zvI9NDboigKhCMECSggJMbXGv5jILBV5LAWoZXCUhFg==", + "version": "0.2.143", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.143.tgz", + "integrity": "sha512-xYVSU71rrZdfIFd6zphkkLVhsJXuVDgA1ONQ8tlNvf5O8iQnUm3fkIyBXkviRSb3sluvVbo0AvnuybJEfgB7pg==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index 1287b15ac..4eb0a0913 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "^0.2.61", - "rollup": "^4.50.0", - "rollup-plugin-ripple": "^0.2.61" + "ripple": "0.2.143", + "rollup": "^4.5.0", + "rollup-plugin-ripple": "0.2.143" } } diff --git a/frameworks/keyed/ripple/rollup.config.js b/frameworks/keyed/ripple/rollup.config.js index e03d5abd3..2a2fb569d 100644 --- a/frameworks/keyed/ripple/rollup.config.js +++ b/frameworks/keyed/ripple/rollup.config.js @@ -1,6 +1,6 @@ -import ripple from 'rollup-plugin-ripple'; -import resolve from '@rollup/plugin-node-resolve'; -import terser from '@rollup/plugin-terser'; +import ripple from "rollup-plugin-ripple"; +import resolve from "@rollup/plugin-node-resolve"; +import terser from "@rollup/plugin-terser"; const plugins = [ resolve({ browser: true }), @@ -10,15 +10,29 @@ const plugins = [ ]; if (process.env.production) { - plugins.push(terser()); + plugins.push( + terser({ + toplevel: true, + mangle: true, + module: true, + compress: { + inline: 0, + reduce_vars: false, + passes: 5, + booleans: false, + comparisons: false, + keep_infinity: true, + }, + }) + ); } export default { - input: 'src/main.js', + input: "src/main.js", output: { - file: 'dist/main.js', - format: 'iife', - name: 'main' + file: "dist/main.js", + format: "iife", + name: "main", }, - plugins + plugins, }; diff --git a/frameworks/keyed/svelte-classic/package.json b/frameworks/keyed/svelte-classic/package.json index c27d2248a..107771ad4 100644 --- a/frameworks/keyed/svelte-classic/package.json +++ b/frameworks/keyed/svelte-classic/package.json @@ -26,6 +26,6 @@ "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.28.1", "rollup-plugin-svelte": "^7.2.2", - "svelte": "^5.13.0" + "svelte": "^5.42.1" } } diff --git a/frameworks/keyed/svelte/package-lock.json b/frameworks/keyed/svelte/package-lock.json index ad4846845..8aab354a6 100644 --- a/frameworks/keyed/svelte/package-lock.json +++ b/frameworks/keyed/svelte/package-lock.json @@ -13,21 +13,7 @@ "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.28.1", "rollup-plugin-svelte": "^7.2.2", - "svelte": "^5.13.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" + "svelte": "^5.42.1" } }, "node_modules/@jridgewell/gen-mapping": { @@ -45,6 +31,17 @@ "node": ">=6.0.0" } }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -431,6 +428,16 @@ "win32" ] }, + "node_modules/@sveltejs/acorn-typescript": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz", + "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8.9.0" + } + }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", @@ -458,16 +465,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-typescript": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz", - "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": ">=8.9.0" - } - }, "node_modules/aria-query": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", @@ -495,6 +492,16 @@ "dev": true, "license": "MIT" }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -520,14 +527,13 @@ "license": "MIT" }, "node_modules/esrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/esrap/-/esrap-1.2.3.tgz", - "integrity": "sha512-ZlQmCCK+n7SGoqo7DnfKaP1sJZa49P01/dXzmjCASSo04p72w8EksT2NMK8CEX8DhKsfJXANioIw8VyHNsBfvQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.0.tgz", + "integrity": "sha512-yzmPNpl7TBbMRC5Lj2JlJZNPml0tzqoqP5B1JXycNUwtqma9AKCO0M2wHrdgsHcy1WRW7S9rJknAMtByg3usgA==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15", - "@types/estree": "^1.0.1" + "@jridgewell/sourcemap-codec": "^1.4.15" } }, "node_modules/estree-walker": { @@ -840,21 +846,22 @@ } }, "node_modules/svelte": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.13.0.tgz", - "integrity": "sha512-ZG4VmBNze/j2KxT2GEeUm8Jr3RLYQ3P5Y9/flUDCgaAxgzx4ZRTdiyh+PCr7qRlOr5M8uidIqr+3DwUFVrdL+A==", + "version": "5.42.1", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.42.1.tgz", + "integrity": "sha512-gc0yfYY7OcuFbK2k/R/cHYYoN7A3SvYsnWHiWYayEV7OZpjSKyVHA1Ex0tW5eEbfQui6guN+sZ2whvhuz+qHpg==", "dev": true, "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.3.0", + "@jridgewell/remapping": "^2.3.4", "@jridgewell/sourcemap-codec": "^1.5.0", + "@sveltejs/acorn-typescript": "^1.0.5", "@types/estree": "^1.0.5", "acorn": "^8.12.1", - "acorn-typescript": "^1.4.13", "aria-query": "^5.3.1", "axobject-query": "^4.1.0", + "clsx": "^2.1.1", "esm-env": "^1.2.1", - "esrap": "^1.2.3", + "esrap": "^2.1.0", "is-reference": "^3.0.3", "locate-character": "^3.0.0", "magic-string": "^0.30.11", diff --git a/frameworks/keyed/svelte/package.json b/frameworks/keyed/svelte/package.json index 3a861ab08..21e0a82f5 100644 --- a/frameworks/keyed/svelte/package.json +++ b/frameworks/keyed/svelte/package.json @@ -26,6 +26,6 @@ "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.28.1", "rollup-plugin-svelte": "^7.2.2", - "svelte": "^5.13.0" + "svelte": "^5.42.1" } } From d9e26f1fa798a5b1cbe813dd61b46f5ffd612c74 Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Tue, 28 Oct 2025 02:18:19 +0000 Subject: [PATCH 36/39] bump --- frameworks/keyed/ripple/package-lock.json | 18 +++++++++--------- frameworks/keyed/ripple/package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index fa687ff98..144e6a629 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "0.2.143", + "ripple": "0.2.146", "rollup": "^4.5.0", - "rollup-plugin-ripple": "0.2.143" + "rollup-plugin-ripple": "0.2.146" } }, "node_modules/@jridgewell/gen-mapping": { @@ -674,9 +674,9 @@ } }, "node_modules/ripple": { - "version": "0.2.143", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.143.tgz", - "integrity": "sha512-SnxrYUuwiKNCrWuhcDtwgizy/9LvXAqlqLfzOVLeSUeI3hHxwxVoGwawZ62WE2A9vXc+5c2MZCjZCTo6sp8UVA==", + "version": "0.2.146", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.146.tgz", + "integrity": "sha512-0aQnwA21Tp7kiMc9mYf+B8dNnI/VbR71tOOf4YDPH5Go7E7ulmOzSbiAzycHLP4vyji0hUQ6WIM66HNADPMKZg==", "dev": true, "license": "MIT", "dependencies": { @@ -693,7 +693,7 @@ "zimmerframe": "^1.1.2" }, "peerDependencies": { - "ripple": "0.2.143" + "ripple": "0.2.146" } }, "node_modules/ripple/node_modules/esrap": { @@ -748,9 +748,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.143", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.143.tgz", - "integrity": "sha512-xYVSU71rrZdfIFd6zphkkLVhsJXuVDgA1ONQ8tlNvf5O8iQnUm3fkIyBXkviRSb3sluvVbo0AvnuybJEfgB7pg==", + "version": "0.2.146", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.146.tgz", + "integrity": "sha512-3m2+os+Vg5Q8VpBWi6vAciHWZIDpn2Z++biGQ7dlkhkh2sUid7YEoO/46a4I6nyO2zAhwC1zShLa/VYsixQJQw==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index 4eb0a0913..7df2ab6b5 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "0.2.143", + "ripple": "0.2.146", "rollup": "^4.5.0", - "rollup-plugin-ripple": "0.2.143" + "rollup-plugin-ripple": "0.2.146" } } From 93a96b5494cc17a6056829adc022235a50e543ba Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Wed, 29 Oct 2025 00:19:26 +0000 Subject: [PATCH 37/39] bump version --- frameworks/keyed/ripple/package-lock.json | 18 +++++++++--------- frameworks/keyed/ripple/package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/frameworks/keyed/ripple/package-lock.json b/frameworks/keyed/ripple/package-lock.json index 144e6a629..fbce5a50b 100644 --- a/frameworks/keyed/ripple/package-lock.json +++ b/frameworks/keyed/ripple/package-lock.json @@ -11,9 +11,9 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "0.2.146", + "ripple": "0.2.148", "rollup": "^4.5.0", - "rollup-plugin-ripple": "0.2.146" + "rollup-plugin-ripple": "0.2.148" } }, "node_modules/@jridgewell/gen-mapping": { @@ -674,9 +674,9 @@ } }, "node_modules/ripple": { - "version": "0.2.146", - "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.146.tgz", - "integrity": "sha512-0aQnwA21Tp7kiMc9mYf+B8dNnI/VbR71tOOf4YDPH5Go7E7ulmOzSbiAzycHLP4vyji0hUQ6WIM66HNADPMKZg==", + "version": "0.2.148", + "resolved": "https://registry.npmjs.org/ripple/-/ripple-0.2.148.tgz", + "integrity": "sha512-e6Mth0ikteC+7J617aESaqG5CUOSxYXm/s0Rq/I90zh6bDfkT1zSAWfpSv5Vmdg8yJQ/lxxlHSiqsUEdopiJaA==", "dev": true, "license": "MIT", "dependencies": { @@ -693,7 +693,7 @@ "zimmerframe": "^1.1.2" }, "peerDependencies": { - "ripple": "0.2.146" + "ripple": "0.2.148" } }, "node_modules/ripple/node_modules/esrap": { @@ -748,9 +748,9 @@ } }, "node_modules/rollup-plugin-ripple": { - "version": "0.2.146", - "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.146.tgz", - "integrity": "sha512-3m2+os+Vg5Q8VpBWi6vAciHWZIDpn2Z++biGQ7dlkhkh2sUid7YEoO/46a4I6nyO2zAhwC1zShLa/VYsixQJQw==", + "version": "0.2.148", + "resolved": "https://registry.npmjs.org/rollup-plugin-ripple/-/rollup-plugin-ripple-0.2.148.tgz", + "integrity": "sha512-OgDU6rsBazM5wV037MzSG+Ahd737+0MvxjdbqitP0OW29Xq2PGVO+7j+M1Me6tdhpoRqfzlIjOiuc3u5Myg0eg==", "dev": true, "license": "MIT", "dependencies": { diff --git a/frameworks/keyed/ripple/package.json b/frameworks/keyed/ripple/package.json index 7df2ab6b5..dd81e67dd 100644 --- a/frameworks/keyed/ripple/package.json +++ b/frameworks/keyed/ripple/package.json @@ -24,8 +24,8 @@ "devDependencies": { "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "ripple": "0.2.146", + "ripple": "0.2.148", "rollup": "^4.5.0", - "rollup-plugin-ripple": "0.2.146" + "rollup-plugin-ripple": "0.2.148" } } From dfa40617c4ce7c357f046b431e57d2a78b15af8f Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Fri, 31 Oct 2025 17:05:49 +0000 Subject: [PATCH 38/39] add package-lock --- .../keyed/svelte-classic/package-lock.json | 401 ++++++++++-------- 1 file changed, 221 insertions(+), 180 deletions(-) diff --git a/frameworks/keyed/svelte-classic/package-lock.json b/frameworks/keyed/svelte-classic/package-lock.json index ac29de27e..5ad3ab598 100644 --- a/frameworks/keyed/svelte-classic/package-lock.json +++ b/frameworks/keyed/svelte-classic/package-lock.json @@ -13,36 +13,29 @@ "@rollup/plugin-terser": "^0.4.4", "rollup": "^4.28.1", "rollup-plugin-svelte": "^7.2.2", - "svelte": "^5.13.0" + "svelte": "^5.42.1" } }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", - "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -55,20 +48,10 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, "license": "MIT", "dependencies": { @@ -77,16 +60,16 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "license": "MIT", "dependencies": { @@ -95,9 +78,9 @@ } }, "node_modules/@rollup/plugin-node-resolve": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.0.tgz", - "integrity": "sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==", + "version": "15.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.3.1.tgz", + "integrity": "sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==", "dev": true, "license": "MIT", "dependencies": { @@ -143,9 +126,9 @@ } }, "node_modules/@rollup/pluginutils": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.3.tgz", - "integrity": "sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", "dev": true, "license": "MIT", "dependencies": { @@ -166,9 +149,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz", - "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.5.tgz", + "integrity": "sha512-8c1vW4ocv3UOMp9K+gToY5zL2XiiVw3k7f1ksf4yO1FlDFQ1C2u72iACFnSOceJFsWskc2WZNqeRhFRPzv+wtQ==", "cpu": [ "arm" ], @@ -180,9 +163,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz", - "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.5.tgz", + "integrity": "sha512-mQGfsIEFcu21mvqkEKKu2dYmtuSZOBMmAl5CFlPGLY94Vlcm+zWApK7F/eocsNzp8tKmbeBP8yXyAbx0XHsFNA==", "cpu": [ "arm64" ], @@ -194,9 +177,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz", - "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.5.tgz", + "integrity": "sha512-takF3CR71mCAGA+v794QUZ0b6ZSrgJkArC+gUiG6LB6TQty9T0Mqh3m2ImRBOxS2IeYBo4lKWIieSvnEk2OQWA==", "cpu": [ "arm64" ], @@ -208,9 +191,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz", - "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.5.tgz", + "integrity": "sha512-W901Pla8Ya95WpxDn//VF9K9u2JbocwV/v75TE0YIHNTbhqUTv9w4VuQ9MaWlNOkkEfFwkdNhXgcLqPSmHy0fA==", "cpu": [ "x64" ], @@ -222,9 +205,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz", - "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.5.tgz", + "integrity": "sha512-QofO7i7JycsYOWxe0GFqhLmF6l1TqBswJMvICnRUjqCx8b47MTo46W8AoeQwiokAx3zVryVnxtBMcGcnX12LvA==", "cpu": [ "arm64" ], @@ -236,9 +219,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz", - "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.5.tgz", + "integrity": "sha512-jr21b/99ew8ujZubPo9skbrItHEIE50WdV86cdSoRkKtmWa+DDr6fu2c/xyRT0F/WazZpam6kk7IHBerSL7LDQ==", "cpu": [ "x64" ], @@ -250,9 +233,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz", - "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.5.tgz", + "integrity": "sha512-PsNAbcyv9CcecAUagQefwX8fQn9LQ4nZkpDboBOttmyffnInRy8R8dSg6hxxl2Re5QhHBf6FYIDhIj5v982ATQ==", "cpu": [ "arm" ], @@ -264,9 +247,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz", - "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.5.tgz", + "integrity": "sha512-Fw4tysRutyQc/wwkmcyoqFtJhh0u31K+Q6jYjeicsGJJ7bbEq8LwPWV/w0cnzOqR2m694/Af6hpFayLJZkG2VQ==", "cpu": [ "arm" ], @@ -278,9 +261,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz", - "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.5.tgz", + "integrity": "sha512-a+3wVnAYdQClOTlyapKmyI6BLPAFYs0JM8HRpgYZQO02rMR09ZcV9LbQB+NL6sljzG38869YqThrRnfPMCDtZg==", "cpu": [ "arm64" ], @@ -292,9 +275,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz", - "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.5.tgz", + "integrity": "sha512-AvttBOMwO9Pcuuf7m9PkC1PUIKsfaAJ4AYhy944qeTJgQOqJYJ9oVl2nYgY7Rk0mkbsuOpCAYSs6wLYB2Xiw0Q==", "cpu": [ "arm64" ], @@ -305,10 +288,10 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz", - "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.5.tgz", + "integrity": "sha512-DkDk8pmXQV2wVrF6oq5tONK6UHLz/XcEVow4JTTerdeV1uqPeHxwcg7aFsfnSm9L+OO8WJsWotKM2JJPMWrQtA==", "cpu": [ "loong64" ], @@ -319,10 +302,10 @@ "linux" ] }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz", - "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==", + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.5.tgz", + "integrity": "sha512-W/b9ZN/U9+hPQVvlGwjzi+Wy4xdoH2I8EjaCkMvzpI7wJUs8sWJ03Rq96jRnHkSrcHTpQe8h5Tg3ZzUPGauvAw==", "cpu": [ "ppc64" ], @@ -334,9 +317,23 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz", - "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.5.tgz", + "integrity": "sha512-sjQLr9BW7R/ZiXnQiWPkErNfLMkkWIoCz7YMn27HldKsADEKa5WYdobaa1hmN6slu9oWQbB6/jFpJ+P2IkVrmw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.5.tgz", + "integrity": "sha512-hq3jU/kGyjXWTvAh2awn8oHroCbrPm8JqM7RUpKjalIRWWXE01CQOf/tUNWNHjmbMHg/hmNCwc/Pz3k1T/j/Lg==", "cpu": [ "riscv64" ], @@ -348,9 +345,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz", - "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.5.tgz", + "integrity": "sha512-gn8kHOrku8D4NGHMK1Y7NA7INQTRdVOntt1OCYypZPRt6skGbddska44K8iocdpxHTMMNui5oH4elPH4QOLrFQ==", "cpu": [ "s390x" ], @@ -362,9 +359,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz", - "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.5.tgz", + "integrity": "sha512-hXGLYpdhiNElzN770+H2nlx+jRog8TyynpTVzdlc6bndktjKWyZyiCsuDAlpd+j+W+WNqfcyAWz9HxxIGfZm1Q==", "cpu": [ "x64" ], @@ -376,9 +373,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz", - "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.5.tgz", + "integrity": "sha512-arCGIcuNKjBoKAXD+y7XomR9gY6Mw7HnFBv5Rw7wQRvwYLR7gBAgV7Mb2QTyjXfTveBNFAtPt46/36vV9STLNg==", "cpu": [ "x64" ], @@ -389,10 +386,24 @@ "linux" ] }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.5.tgz", + "integrity": "sha512-QoFqB6+/9Rly/RiPjaomPLmR/13cgkIGfA40LHly9zcH1S0bN2HVFYk3a1eAyHQyjs3ZJYlXvIGtcCs5tko9Cw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz", - "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.5.tgz", + "integrity": "sha512-w0cDWVR6MlTstla1cIfOGyl8+qb93FlAVutcor14Gf5Md5ap5ySfQ7R9S/NjNaMLSFdUnKGEasmVnu3lCMqB7w==", "cpu": [ "arm64" ], @@ -404,9 +415,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz", - "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.5.tgz", + "integrity": "sha512-Aufdpzp7DpOTULJCuvzqcItSGDH73pF3ko/f+ckJhxQyHtp67rHw3HMNxoIdDMUITJESNE6a8uh4Lo4SLouOUg==", "cpu": [ "ia32" ], @@ -417,10 +428,24 @@ "win32" ] }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.5.tgz", + "integrity": "sha512-UGBUGPFp1vkj6p8wCRraqNhqwX/4kNQPS57BCFc8wYh0g94iVIW33wJtQAx3G7vrjjNtRaxiMUylM0ktp/TRSQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz", - "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.5.tgz", + "integrity": "sha512-TAcgQh2sSkykPRWLrdyy2AiceMckNf5loITqXxFI5VuQjS5tSuw3WlwdN8qv8vzjLAUTvYaH/mVjSFpbkFbpTg==", "cpu": [ "x64" ], @@ -431,10 +456,20 @@ "win32" ] }, - "node_modules/@types/estree": { + "node_modules/@sveltejs/acorn-typescript": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.6.tgz", + "integrity": "sha512-4awhxtMh4cx9blePWl10HRHj8Iivtqj+2QdDCSMDzxG+XKa9+VCNupQuCuvzEhYPzZSrX+0gC+0lHA/0fFKKQQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^8.9.0" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, "license": "MIT" }, @@ -446,9 +481,9 @@ "license": "MIT" }, "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", "bin": { @@ -458,16 +493,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-typescript": { - "version": "1.4.13", - "resolved": "https://registry.npmjs.org/acorn-typescript/-/acorn-typescript-1.4.13.tgz", - "integrity": "sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": ">=8.9.0" - } - }, "node_modules/aria-query": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", @@ -495,6 +520,16 @@ "dev": true, "license": "MIT" }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", @@ -513,21 +548,20 @@ } }, "node_modules/esm-env": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.1.tgz", - "integrity": "sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", "dev": true, "license": "MIT" }, "node_modules/esrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/esrap/-/esrap-1.2.3.tgz", - "integrity": "sha512-ZlQmCCK+n7SGoqo7DnfKaP1sJZa49P01/dXzmjCASSo04p72w8EksT2NMK8CEX8DhKsfJXANioIw8VyHNsBfvQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.1.2.tgz", + "integrity": "sha512-DgvlIQeowRNyvLPWW4PT7Gu13WznY288Du086E751mwwbsgr29ytBiYeLzAGIo0qk3Ujob0SDk8TiSaM5WQzNg==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15", - "@types/estree": "^1.0.1" + "@jridgewell/sourcemap-codec": "^1.4.15" } }, "node_modules/estree-walker": { @@ -576,9 +610,9 @@ } }, "node_modules/is-core-module": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz", - "integrity": "sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { @@ -616,13 +650,13 @@ "license": "MIT" }, "node_modules/magic-string": { - "version": "0.30.15", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.15.tgz", - "integrity": "sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw==", + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" + "@jridgewell/sourcemap-codec": "^1.5.5" } }, "node_modules/path-parse": { @@ -633,9 +667,9 @@ "license": "MIT" }, "node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "dev": true, "license": "MIT", "engines": { @@ -656,19 +690,22 @@ } }, "node_modules/resolve": { - "version": "1.22.9", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.9.tgz", - "integrity": "sha512-QxrmX1DzraFIi9PxdG5VkRfRwIgjwyud+z/iBwfRRrVmHc+P9Q7u2lSSpQ6bjr2gy5lrqIiU9vb6iAeGf2400A==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, "license": "MIT", "dependencies": { - "is-core-module": "^2.16.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -684,13 +721,13 @@ } }, "node_modules/rollup": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz", - "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==", + "version": "4.52.5", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.5.tgz", + "integrity": "sha512-3GuObel8h7Kqdjt0gxkEzaifHTqLVW56Y/bjN7PSQtkKr0w3V/QYSdt6QWYtd7A1xUtYQigtdUfgj1RvWVtorw==", "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "1.0.6" + "@types/estree": "1.0.8" }, "bin": { "rollup": "dist/bin/rollup" @@ -700,32 +737,35 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.28.1", - "@rollup/rollup-android-arm64": "4.28.1", - "@rollup/rollup-darwin-arm64": "4.28.1", - "@rollup/rollup-darwin-x64": "4.28.1", - "@rollup/rollup-freebsd-arm64": "4.28.1", - "@rollup/rollup-freebsd-x64": "4.28.1", - "@rollup/rollup-linux-arm-gnueabihf": "4.28.1", - "@rollup/rollup-linux-arm-musleabihf": "4.28.1", - "@rollup/rollup-linux-arm64-gnu": "4.28.1", - "@rollup/rollup-linux-arm64-musl": "4.28.1", - "@rollup/rollup-linux-loongarch64-gnu": "4.28.1", - "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1", - "@rollup/rollup-linux-riscv64-gnu": "4.28.1", - "@rollup/rollup-linux-s390x-gnu": "4.28.1", - "@rollup/rollup-linux-x64-gnu": "4.28.1", - "@rollup/rollup-linux-x64-musl": "4.28.1", - "@rollup/rollup-win32-arm64-msvc": "4.28.1", - "@rollup/rollup-win32-ia32-msvc": "4.28.1", - "@rollup/rollup-win32-x64-msvc": "4.28.1", + "@rollup/rollup-android-arm-eabi": "4.52.5", + "@rollup/rollup-android-arm64": "4.52.5", + "@rollup/rollup-darwin-arm64": "4.52.5", + "@rollup/rollup-darwin-x64": "4.52.5", + "@rollup/rollup-freebsd-arm64": "4.52.5", + "@rollup/rollup-freebsd-x64": "4.52.5", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.5", + "@rollup/rollup-linux-arm-musleabihf": "4.52.5", + "@rollup/rollup-linux-arm64-gnu": "4.52.5", + "@rollup/rollup-linux-arm64-musl": "4.52.5", + "@rollup/rollup-linux-loong64-gnu": "4.52.5", + "@rollup/rollup-linux-ppc64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-gnu": "4.52.5", + "@rollup/rollup-linux-riscv64-musl": "4.52.5", + "@rollup/rollup-linux-s390x-gnu": "4.52.5", + "@rollup/rollup-linux-x64-gnu": "4.52.5", + "@rollup/rollup-linux-x64-musl": "4.52.5", + "@rollup/rollup-openharmony-arm64": "4.52.5", + "@rollup/rollup-win32-arm64-msvc": "4.52.5", + "@rollup/rollup-win32-ia32-msvc": "4.52.5", + "@rollup/rollup-win32-x64-gnu": "4.52.5", + "@rollup/rollup-win32-x64-msvc": "4.52.5", "fsevents": "~2.3.2" } }, "node_modules/rollup-plugin-svelte": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-svelte/-/rollup-plugin-svelte-7.2.2.tgz", - "integrity": "sha512-hgnIblTRewaBEVQD6N0Q43o+y6q1TmDRhBjaEzQCi50bs8TXqjc+d1zFZyE8tsfgcfNHZQzclh4RxlFUB85H8Q==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/rollup-plugin-svelte/-/rollup-plugin-svelte-7.2.3.tgz", + "integrity": "sha512-LlniP+h00DfM+E4eav/Kk8uGjgPUjGIBfrAS/IxQvsuFdqSM0Y2sXf31AdxuIGSW9GsmocDqOfaxR5QNno/Tgw==", "dev": true, "license": "MIT", "dependencies": { @@ -840,21 +880,22 @@ } }, "node_modules/svelte": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.13.0.tgz", - "integrity": "sha512-ZG4VmBNze/j2KxT2GEeUm8Jr3RLYQ3P5Y9/flUDCgaAxgzx4ZRTdiyh+PCr7qRlOr5M8uidIqr+3DwUFVrdL+A==", + "version": "5.43.2", + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.43.2.tgz", + "integrity": "sha512-ro1umEzX8rT5JpCmlf0PPv7ncD8MdVob9e18bhwqTKNoLjS8kDvhVpaoYVPc+qMwDAOfcwJtyY7ZFSDbOaNPgA==", "dev": true, "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.3.0", + "@jridgewell/remapping": "^2.3.4", "@jridgewell/sourcemap-codec": "^1.5.0", + "@sveltejs/acorn-typescript": "^1.0.5", "@types/estree": "^1.0.5", "acorn": "^8.12.1", - "acorn-typescript": "^1.4.13", "aria-query": "^5.3.1", "axobject-query": "^4.1.0", + "clsx": "^2.1.1", "esm-env": "^1.2.1", - "esrap": "^1.2.3", + "esrap": "^2.1.0", "is-reference": "^3.0.3", "locate-character": "^3.0.0", "magic-string": "^0.30.11", @@ -865,14 +906,14 @@ } }, "node_modules/terser": { - "version": "5.37.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", - "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -884,9 +925,9 @@ } }, "node_modules/zimmerframe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.2.tgz", - "integrity": "sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz", + "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==", "dev": true, "license": "MIT" } From d5a92c83b0cbc0ffbe0d61e886d2f71d2c24131e Mon Sep 17 00:00:00 2001 From: Stefan Krause Date: Fri, 31 Oct 2025 17:49:04 +0000 Subject: [PATCH 39/39] rebuild react --- .../keyed/react-hooks/package-lock.json | 1220 ++++++++--------- 1 file changed, 605 insertions(+), 615 deletions(-) diff --git a/frameworks/keyed/react-hooks/package-lock.json b/frameworks/keyed/react-hooks/package-lock.json index d5cfe1656..c48df2d18 100644 --- a/frameworks/keyed/react-hooks/package-lock.json +++ b/frameworks/keyed/react-hooks/package-lock.json @@ -37,24 +37,24 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", + "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", - "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", "dev": true, "license": "MIT", "engines": { @@ -93,16 +93,16 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", - "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.3", - "@babel/types": "^7.26.3", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" }, "engines": { @@ -110,27 +110,27 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", - "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.25.9", - "@babel/helper-validator-option": "^7.25.9", + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" @@ -140,18 +140,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", - "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz", + "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/traverse": "^7.25.9", + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.5", "semver": "^6.3.1" }, "engines": { @@ -162,14 +162,14 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", - "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "regexpu-core": "^6.2.0", + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", "semver": "^6.3.1" }, "engines": { @@ -180,60 +180,70 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", - "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "resolve": "^1.22.10" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", - "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", - "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", - "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -243,22 +253,22 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", - "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.25.9" + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", - "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "dev": true, "license": "MIT", "engines": { @@ -266,15 +276,15 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", - "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-wrap-function": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -284,15 +294,15 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", - "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -302,23 +312,23 @@ } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", - "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", - "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, "license": "MIT", "engines": { @@ -326,9 +336,9 @@ } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, "license": "MIT", "engines": { @@ -336,9 +346,9 @@ } }, "node_modules/@babel/helper-validator-option": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", - "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, "license": "MIT", "engines": { @@ -346,42 +356,42 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", - "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz", + "integrity": "sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.3", + "@babel/types": "^7.28.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", - "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.0" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", - "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.26.3" + "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" @@ -391,14 +401,14 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", - "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -408,13 +418,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", - "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -424,13 +434,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", - "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -440,15 +450,15 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/plugin-transform-optional-chaining": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -458,14 +468,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", - "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz", + "integrity": "sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -488,13 +498,13 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", - "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -504,13 +514,13 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", - "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -520,13 +530,13 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", - "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -553,13 +563,13 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", - "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -569,15 +579,15 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", - "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-remap-async-to-generator": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" @@ -587,15 +597,15 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", - "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-remap-async-to-generator": "^7.25.9" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -605,13 +615,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", - "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -621,13 +631,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", - "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz", + "integrity": "sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -637,14 +647,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", - "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -654,14 +664,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", - "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz", + "integrity": "sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -671,18 +681,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", - "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz", + "integrity": "sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9", - "@babel/traverse": "^7.25.9", - "globals": "^11.1.0" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -692,14 +702,14 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", - "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/template": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -709,13 +719,14 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", - "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -725,14 +736,14 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", - "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -742,13 +753,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", - "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -758,14 +769,14 @@ } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -775,13 +786,13 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", - "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -791,13 +802,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", - "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz", + "integrity": "sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -807,13 +818,13 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", - "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -823,14 +834,14 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", - "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -840,15 +851,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", - "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -858,13 +869,13 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", - "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -874,13 +885,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", - "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -890,13 +901,13 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", - "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz", + "integrity": "sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -906,13 +917,13 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", - "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -922,14 +933,14 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", - "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -939,14 +950,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", - "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -956,16 +967,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", - "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz", + "integrity": "sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -975,14 +986,14 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", - "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -992,14 +1003,14 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1009,13 +1020,13 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", - "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1025,13 +1036,13 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", - "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1041,13 +1052,13 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", - "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1057,15 +1068,17 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", - "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz", + "integrity": "sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-transform-parameters": "^7.25.9" + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -1075,14 +1088,14 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", - "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1092,13 +1105,13 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", - "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1108,14 +1121,14 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz", + "integrity": "sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1125,13 +1138,13 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", - "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1141,14 +1154,14 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", - "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1158,15 +1171,15 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", - "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1176,13 +1189,13 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", - "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1192,13 +1205,13 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", - "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1208,17 +1221,17 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", - "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", + "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-syntax-jsx": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1228,13 +1241,13 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", - "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz", + "integrity": "sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.25.9" + "@babel/plugin-transform-react-jsx": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1244,14 +1257,14 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", - "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz", + "integrity": "sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1261,14 +1274,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", - "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz", + "integrity": "sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "regenerator-transform": "^0.15.2" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1278,14 +1290,14 @@ } }, "node_modules/@babel/plugin-transform-regexp-modifiers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", - "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1295,13 +1307,13 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", - "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1311,13 +1323,13 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", - "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1327,14 +1339,14 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", - "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1344,13 +1356,13 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", - "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1360,13 +1372,13 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", - "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1376,13 +1388,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", - "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1392,13 +1404,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", - "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1408,14 +1420,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", - "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1425,14 +1437,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", - "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1442,14 +1454,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", - "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1578,62 +1590,49 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/runtime": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", - "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/template": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", - "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/parser": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.26.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", - "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.3", - "@babel/parser": "^7.26.3", - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.3", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", - "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -1650,18 +1649,14 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -1674,20 +1669,10 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, "license": "MIT", "dependencies": { @@ -1696,16 +1681,16 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "license": "MIT", "dependencies": { @@ -1736,9 +1721,9 @@ } }, "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, "license": "MIT" }, @@ -1750,13 +1735,13 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.10.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", - "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "version": "24.9.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.2.tgz", + "integrity": "sha512-uWN8YqxXxqFMX2RqGOrumsKeti4LlmIMIyV0lgut4jx7KQBcBiW6vkDtIBvHnHIquwNfJhk8v2OtmO8zXWHfPA==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.20.0" + "undici-types": "~7.16.0" } }, "node_modules/@webassemblyjs/ast": { @@ -1982,9 +1967,9 @@ "license": "Apache-2.0" }, "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, "license": "MIT", "bin": { @@ -2061,14 +2046,14 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.12", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", - "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.3", + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { @@ -2090,22 +2075,32 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", - "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.3" + "@babel/helper-define-polyfill-provider": "^0.6.5" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.22", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.22.tgz", + "integrity": "sha512-/tk9kky/d8T8CTXIQYASLyhAxR5VwL3zct1oAoVTaOUHwrmsGnfbRwNdEq+vOl2BN8i3PcDdP0o4Q+jjKQoFbQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", "dev": true, "funding": [ { @@ -2123,10 +2118,11 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.1" + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" @@ -2143,9 +2139,9 @@ "license": "MIT" }, "node_modules/caniuse-lite": { - "version": "1.0.30001687", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz", - "integrity": "sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==", + "version": "1.0.30001752", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001752.tgz", + "integrity": "sha512-vKUk7beoukxE47P5gcVNKkDRzXdVofotshHwfR9vmpeFKxmI5PBpgOMC18LUJUA/DvJ70Y7RveasIBraqsyO/g==", "dev": true, "funding": [ { @@ -2217,13 +2213,13 @@ "license": "MIT" }, "node_modules/core-js-compat": { - "version": "3.39.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", - "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "version": "3.46.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.46.0.tgz", + "integrity": "sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.24.2" + "browserslist": "^4.26.3" }, "funding": { "type": "opencollective", @@ -2246,9 +2242,9 @@ } }, "node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "license": "MIT", "dependencies": { @@ -2264,16 +2260,16 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.72", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz", - "integrity": "sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw==", + "version": "1.5.244", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.244.tgz", + "integrity": "sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==", "dev": true, "license": "ISC" }, "node_modules/enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "dev": true, "license": "MIT", "dependencies": { @@ -2285,9 +2281,9 @@ } }, "node_modules/envinfo": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", - "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.19.0.tgz", + "integrity": "sha512-DoSM9VyG6O3vqBf+p3Gjgr/Q52HYBBtO3v+4koAxt1MnWr+zEnxE+nke/yXS4lt2P4SYCHQ4V3f1i88LQVOpAw==", "dev": true, "license": "MIT", "bin": { @@ -2298,9 +2294,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "dev": true, "license": "MIT" }, @@ -2396,10 +2392,20 @@ "license": "MIT" }, "node_modules/fast-uri": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", - "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], "license": "BSD-3-Clause" }, "node_modules/fastest-levenshtein": { @@ -2483,16 +2489,6 @@ "dev": true, "license": "BSD-2-Clause" }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -2633,9 +2629,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { @@ -2701,9 +2697,9 @@ "license": "MIT" }, "node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", "bin": { @@ -2751,13 +2747,17 @@ } }, "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", + "integrity": "sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==", "dev": true, "license": "MIT", "engines": { "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/locate-path": { @@ -2838,9 +2838,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", "dev": true, "license": "MIT" }, @@ -2957,24 +2957,24 @@ } }, "node_modules/react": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", - "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", + "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react-dom": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", - "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", + "version": "19.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", + "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", "license": "MIT", "dependencies": { - "scheduler": "^0.25.0" + "scheduler": "^0.27.0" }, "peerDependencies": { - "react": "^19.0.0" + "react": "^19.2.0" } }, "node_modules/rechoir": { @@ -2998,9 +2998,9 @@ "license": "MIT" }, "node_modules/regenerate-unicode-properties": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", - "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", "dev": true, "license": "MIT", "dependencies": { @@ -3010,36 +3010,19 @@ "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, "node_modules/regexpu-core": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", - "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.2.0", + "regenerate-unicode-properties": "^10.2.2", "regjsgen": "^0.8.0", - "regjsparser": "^0.12.0", + "regjsparser": "^0.13.0", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "unicode-match-property-value-ecmascript": "^2.2.1" }, "engines": { "node": ">=4" @@ -3053,13 +3036,13 @@ "license": "MIT" }, "node_modules/regjsparser": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", - "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", "dev": true, "license": "BSD-2-Clause", "dependencies": { - "jsesc": "~3.0.2" + "jsesc": "~3.1.0" }, "bin": { "regjsparser": "bin/parser" @@ -3076,19 +3059,22 @@ } }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -3138,15 +3124,15 @@ "license": "MIT" }, "node_modules/scheduler": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", - "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", "license": "MIT" }, "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, "license": "MIT", "dependencies": { @@ -3156,7 +3142,7 @@ "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", @@ -3270,24 +3256,28 @@ } }, "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", "dev": true, "license": "MIT", "engines": { "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/terser": { - "version": "5.37.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", - "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -3387,9 +3377,9 @@ } }, "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", "dev": true, "license": "MIT" }, @@ -3418,9 +3408,9 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", - "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", "dev": true, "license": "MIT", "engines": { @@ -3428,9 +3418,9 @@ } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", "dev": true, "license": "MIT", "engines": { @@ -3438,9 +3428,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "dev": true, "funding": [ { @@ -3459,7 +3449,7 @@ "license": "MIT", "dependencies": { "escalade": "^3.2.0", - "picocolors": "^1.1.0" + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -3479,9 +3469,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "dev": true, "license": "MIT", "dependencies": { @@ -3611,9 +3601,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", + "integrity": "sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==", "dev": true, "license": "MIT", "engines": { @@ -3704,9 +3694,9 @@ "license": "ISC" }, "node_modules/yocto-queue": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", - "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz", + "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==", "dev": true, "license": "MIT", "engines": {